Example 1 — Temperature range
EasyProblem
Tomorrow's temperature will be at least F and at most F. Write the bounds and the interval.
Solution
-
Both a minimum and maximum are given, so it's a two-sided bound.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is the value pinned by both a smallest and a largest allowed amount?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Place the value between the two limits: , inclusive on both ends.
The rule is chosen only after the structure matches, so the steps mean something.
-
Convert to interval notation: .
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 — squeezed between a floor and a ceiling. If it does not, revisit the recognition step before changing the arithmetic.
Answer
, or
Takeaway: Bounds pin a quantity between a lower and an upper limit at once.