y=⌊x⌋ Graph of the Floor Function y=⌊x⌋
y=⌊x⌋ returns the greatest integer not exceeding x (also called the Gauss bracket).
- ⌊2.7⌋=2
- ⌊3⌋=3
- ⌊−1.2⌋=−2
The graph is a staircase that jumps up by 1 at each integer, including the left end of each step but not the right. It is discontinuous at every integer.