Respuesta :
Answer:
integers ∪ [0, ∞)
Step-by-step explanation:
The floor function gives the largest integer not greater than the input value. For non-negative numbers, that is the integer portion of the number, as Jim says.
However, for negative numbers, the floor is one less than the integer portion of any number that has a non-zero fractional part.
floor(1.2) = 1
floor(0.2) = 0
floor(-0.2) = -1
floor(-1.2) = -2
For any integer, negative or otherwise, the floor function gives that integer value.
Jim is correct on the domain of all integers and positive non-integers.
Answer: Jim’s statement is correct for all numbers greater than or equal to 0, and negative integers. It does not work for negative non-integer numbers. For example, the floor of –3.5 is –4, where –4 is not equal to –3, the number before the decimal point.
Step-by-step explanation: Copy- Paste