Example 1 — Classify two sets
EasyProblem
Is the set of even numbers from to finite or infinite? What about all even numbers?
Solution
-
We ask whether each set has a reachable last element.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Could you, in principle, reach the last element — or does it never end?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
List the first: ends at ; the second never stops.
The rule is chosen only after the structure matches, so the steps mean something.
-
First has elements (finite); second has no last element (infinite).
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 — does it ever end, or not. If it does not, revisit the recognition step before changing the arithmetic.
Answer
First is finite, second is infinite
Takeaway: A reachable last element means finite; no end means infinite.