Example 1 — Evaluate a sigma sum
EasyProblem
Compute .
Solution
-
The counter runs from 2 to 5, and each term is found by substituting into .
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is this an instruction to add up terms generated by substituting an index over a range?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Substitute to list the terms, then add.
The rule is chosen only after the structure matches, so the steps mean something.
-
, , , , so .
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 — a counting machine for sums. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Substitute the index into the term rule for each value in range, then add.