Example 1 — Cities and roads
EasyProblem
To study which towns connect by road, how should you represent the towns and roads?
Solution
-
We care only about connections, not the towns' shapes or road curves.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I deliberately dropping physical detail to focus on one essential geometric property, with no number to compute?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Abstract each town to a point and each road to a line between points.
The rule is chosen only after the structure matches, so the steps mean something.
-
The map becomes points joined by line segments — a graph showing only connections.
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 — throw away the noise, keep the geometry. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Towns as points, roads as lines
Takeaway: Abstraction keeps the essential property (connection) and discards distracting detail (shape, distance).