Example 1 — Factor a number to primes
EasyProblem
Write the prime factorization of .
Solution
-
We need 36 broken into primes only, so build a factor tree.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Is every factor in my answer a prime number that can't be broken down any further?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Split into any pair and keep splitting composites: , then each .
The rule is chosen only after the structure matches, so the steps mean something.
-
All branches end in primes: , grouped as .
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 — every number's unique prime recipe. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: A prime factorization is done only when every factor is prime.