Example 1 — Distance between two points
EasyProblem
Find the distance between and .
Solution
-
We need the straight-line gap, so use the Pythagorean-based distance formula.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I finding the shortest straight-line length between two specific points?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Take the differences, square, add, and root: .
The rule is chosen only after the structure matches, so the steps mean something.
-
.
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 — the straight-line gap between two points. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Distance is the straight-line gap, computed as .