Step Function Intuition Math Example 3

Follow the full solution, then compare it with the other examples linked below.

Example 3

easy
Evaluate: (a) โŒŠ7.9โŒ‹\lfloor 7.9 \rfloor, (b) โŒˆ4.1โŒ‰\lceil 4.1 \rceil, (c) โŒŠโˆ’0.5โŒ‹\lfloor -0.5 \rfloor, (d) โŒˆโˆ’3.2โŒ‰\lceil -3.2 \rceil.

Solution

  1. 1
    (a) โŒŠ7.9โŒ‹=7\lfloor 7.9 \rfloor = 7; (b) โŒˆ4.1โŒ‰=5\lceil 4.1 \rceil = 5.
  2. 2
    (c) โŒŠโˆ’0.5โŒ‹=โˆ’1\lfloor -0.5 \rfloor = -1 (floor rounds toward โˆ’โˆž-\infty); (d) โŒˆโˆ’3.2โŒ‰=โˆ’3\lceil -3.2 \rceil = -3 (ceiling rounds toward +โˆž+\infty).

Answer

(a) 77, (b) 55, (c) โˆ’1-1, (d) โˆ’3-3
Floor always rounds down (toward โˆ’โˆž-\infty) and ceiling always rounds up (toward +โˆž+\infty). For negative numbers, these differ from rounding toward zero: โŒŠโˆ’0.5โŒ‹=โˆ’1\lfloor-0.5\rfloor=-1, not 00.

About Step Function Intuition

A step function is piecewise constant โ€” it takes a fixed value on each of several intervals, jumping abruptly at the interval boundaries.

Learn more about Step Function Intuition โ†’

More Step Function Intuition Examples