Example 1 — Bead colors
EasyProblem
A string reads red, blue, red, blue, red, blue. What color is the next bead?
Solution
-
A fixed chunk repeats, so this is a repeating pattern.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does a fixed chunk repeat unchanged so I can predict by the cycle?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Name the core unit: red-blue (AB), repeated three times.
The rule is chosen only after the structure matches, so the steps mean something.
-
After blue, the cycle restarts with red.
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 — find the repeating core, then continue it. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Red
Takeaway: Find the repeating core, then continue the cycle to predict.