Example 1 — Ant on a box
EasyProblem
An ant on a corner of a box must reach the opposite top corner along the surface. What is the shortest route?
Solution
-
The path is restricted to the box's faces, so a straight diagonal through the box is not allowed.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I finding the least-distance route in a space where a straight line may not be allowed or shortest?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Unfold two adjacent faces into one flat rectangle, then draw the straight line.
The rule is chosen only after the structure matches, so the steps mean something.
-
Unfolded rectangle is by , so the straight distance is .
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 — shortest depends on the surface. If it does not, revisit the recognition step before changing the arithmetic.
Answer
units
Takeaway: Unfold the surface, then the shortest path is the straight line across the flattened net.