Example 1 — Sum of first n odd numbers
EasyProblem
, , . Generalize the sum of the first odd numbers.
Solution
-
Each total is a perfect square: match — a specific pattern asking to widen to all .
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I taking a specific result and widening it to cover a whole class by removing restrictions or introducing variables?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Replace the count with a variable and conjecture the closed form for every .
The rule is chosen only after the structure matches, so the steps mean something.
-
Conjecture , then confirm by induction.
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 — trade a number for a variable. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Turning the count into a variable lifts three examples into a rule for all .