Example 1 — Sum 1 to 100
EasyProblem
Find .
Solution
-
The structure is an arithmetic series, not a problem that rewards adding term by term.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I about to execute a procedure without having decided why that procedure is the right one here?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Reason first: pair to get 50 pairs each summing to 101, instead of computing 99 additions.
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 — decide the recipe before you cook. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Reasoning about the structure replaced a 99-step computation with one multiplication.