Example 1 — Convert recursive to explicit
EasyProblem
A sequence is given recursively by , . Find an explicit formula and use it to get .
Solution
-
Each term adds a constant 3 to the previous term, so this is arithmetic with first term 5 and common difference 3.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does the rule compute a term from the term(s) before it (recursive), or straight from the position (explicit)?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Use the arithmetic explicit form with , .
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 — step-by-step directions vs gps coordinates. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: The explicit form reaches a distant term in one step; the recursive form would need all 19 prior terms.