The floor operator, denoted \(\left \lfloor{x}\right \rfloor\), tells us the greatest integer \(\leq x\).
The ceiling operator, denoted \(\left \lceil{x}\right \rceil\), tells us the smallest integer \(\geq x\).
(Basically, they’re just fancy ways of saying “round down” and “round up”)
Example
- \(\left
\lfloor{7.5}\right \rfloor = 7\)
- \(\left \lceil{7.5}\right \rceil = 8\)