Example 1 — Coin-flip puzzle
EasyProblem
Cups sit with facing up; each move flips exactly two cups. Can you ever reach cup up out of ?
Solution
-
Flipping two cups changes the up-count by , , or , so its parity (evenness) is the invariant.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is there a quantity that stays exactly the same every time the given transformation is applied?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Track parity: starting at ups (even), every move keeps the count even.
The rule is chosen only after the structure matches, so the steps mean something.
-
is odd, and the up-count can never be odd from an even start.
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 — what stays put when things move. If it does not, revisit the recognition step before changing the arithmetic.
Answer
No — parity invariance forbids it
Takeaway: Spot the quantity preserved by every move and let it decide the outcome.