Example 1 — Test for prime
EasyProblem
Is prime?
Solution
-
We check whether any number besides and divides it.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does this number bigger than have exactly two factors — and itself — and no others?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Test divisors up to : .
The rule is chosen only after the structure matches, so the steps mean something.
-
is odd, not divisible by () or .
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 — only two factors: one and itself. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Yes, is prime
Takeaway: If no number up to divides it, is prime.