Example 1 — Classify two variables
EasyProblem
Is the number of cars in a lot discrete or continuous? Is the temperature outside discrete or continuous?
Solution
-
Ask for each whether a value between two readings is possible.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Could the quantity take a value strictly between two adjacent readings? Yes is continuous, no is discrete.
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Cars: you cannot have cars (separate values). Temperature: it passes through every value like .
The rule is chosen only after the structure matches, so the steps mean something.
-
Cars are discrete; temperature is continuous.
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 — separate steps or a smooth flow. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Cars discrete, temperature continuous
Takeaway: Countable separate values are discrete; any-value-in-a-range is continuous.