Floor and Ceiling



The floor of \(x\) is written \( \lfloor x \rfloor \) and takes real value \(x\) and returns the greatest integer \(\leq x \). For example \( \lfloor 5.4 \rfloor \) = 5, \( \lfloor -3.2 \rfloor \) = -4, \( \lfloor 5 \rfloor \) = 5. The ceiling of \(x \) is written \( \lceil x \rceil \) and takes integer \(\geq x \). For example, \( \lceil 5.4 \rceil \) = 6, \( \lceil -3.2 \rceil \) = -3, \( \lceil 5 \rceil \) =5.

Self-Testing Quizzes


1. Which of the following is untrue? \(x\) is a real number and \(n\) is an integer.

2. Which of the following is untrue? \(x\) is a real number and \(n\) is an integer.

3. If \(X = \lfloor X \rfloor = \lceil X \rceil \) then

4. \(\lfloor 2.4 \rfloor + \lceil 2.9 \rceil \) is equal to ______

Your grade is: __