Example 1 — Bake-sale planning
EasyProblem
Cupcakes cost $2 and cookies $1; you may buy at most items and spend no more than $30. Can you buy cupcakes and cookies?
Solution
-
Two restrictions limit the allowed combinations: a count cap and a money cap.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is this a rule that disqualifies otherwise-valid answers, leaving only the ones that satisfy it?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Translate to constraints and , then test the candidate.
The rule is chosen only after the structure matches, so the steps mean something.
-
Items: ✓; cost: , and is false.
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 — the rules that fence in the answers. If it does not, revisit the recognition step before changing the arithmetic.
Answer
No — it violates the budget constraint
Takeaway: A solution counts only if it satisfies every constraint at once.