Example 1 — Postage by ounces
EasyProblem
Mail costs \$1 for up to 1 oz, \$2 for over 1 up to 2 oz, \$3 for over 2 up to 3 oz. What does a 2.4 oz letter cost?
Solution
-
Cost is constant within each ounce band and jumps at the cutoffs — a ceiling-style step function.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is the output constant within each interval and changing only by sudden jumps at boundaries?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Find the band: oz falls in 'over 2 up to 3 oz', equivalently .
The rule is chosen only after the structure matches, so the steps mean something.
-
That band costs \$3.
Keep units, shape, or answer form tied to the story so the work does not become symbol pushing.
-
Check the answer against the original question.
It should fit the mental model — flat, then jump. If it does not, revisit the recognition step before changing the arithmetic.
Answer
\$3
Takeaway: Within a band the cost is flat; only crossing a cutoff changes it.