Limits and Continuity of Cost Function for Mailing Letters: Domain and Graph

  • Thread starter Thread starter iRaid
  • Start date Start date
  • Tags Tags
    Continuity Limits
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 3K views
iRaid
Messages
558
Reaction score
8

Homework Statement


Postal charges are $.25 for the first ounce and $.20 for each additional ounce or fraction thereof. Let c be the cost function for mailing a letter weighing w ounces.
a) Is c a continuous function? What is the domain?
b) What is c(1.9)? c(2.01)? c(2.89)?
c) Graph the function c.

Homework Equations


The Attempt at a Solution


For a I got:
No. The domain is all real numbers > 0.
B is where I get stuck, I understand the question it's just I can't get what the integer function would be..
C I could do once I have b..
 
Physics news on Phys.org


I guess I can answer b, but then how would I graph the function for part c :|

edit: I see what you are getting it, I think I can make a graph too, thanks lol :p
 


Well I got the answers, but for my own knowledge can you tell me what this function would actually be?
 


Yep ment greatest integer function, I'm pretty sure it's applied here since it says: $.20 for each additional ounce or fraction thereof
 


Greatest Integer function, a.k.a. floor function
floor(x) = the greatest integer that's less than or equal to x .

Doesn't work: floor(1.9) = 1

floor(x) + 1 is close, floor(1.9) + 1 = 2 ---- but floor(1) + 1 = 2, not 1 .
Try -floor(-x):
-floor(-(1.9)) = - (-2) = 2 , OK

-floor(-(1)) = - (-1) = 1 , OK