Example 1 — From 2D to 3D distance
EasyProblem
You know the plane distance is . Guess the distance between two points in 3D space.
Solution
-
The 3D problem maps onto the 2D one with an extra coordinate added.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I concluding something about a new case because it maps onto a known case with the same structure?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
By analogy, extend the same sum-of-squares-under-a-root pattern to include .
The rule is chosen only after the structure matches, so the steps mean something.
-
Conjecture , then verify with the Pythagorean theorem.
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 — this is like that, so try that's trick here. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Analogy gave the right guess, which then had to be confirmed.