SOLUTION: What are greatest integer function and smallest integer function?

Algebra ->  Linear-equations -> SOLUTION: What are greatest integer function and smallest integer function?      Log On


   



Question 1062253: What are greatest integer function and smallest integer function?
Answer by math_helper(2461) About Me  (Show Source):
You can put this solution on YOUR website!
Do you mean the floor() operator and ceiling() operator?
Examples:
floor(3.9) = 3 (greatest integer less than or equal to the argument)
ceiling(3.9) = 4 (smallest integer greater than or equal to the argument)
floor(10.99) = 10
ceiling(10.99) = 11
Note: these are not rounding functions.