Tier 1 · Number Theorymedium
The Factor Counter
Every number has a fingerprint — it's called its prime factorization.
The Tell
Questions about 'number of factors,' 'GCF,' 'LCM,' 'is X a factor of Y,' or anything involving factorials.
The Trap
Trying to list factors one by one. Wastes time. Also: forgetting that for 'number of factors,' you need (a+1)(b+1)(c+1) — not just a·b·c.
The Approach
- Prime factorize the number completely. Example: 60 = 2² · 3 · 5.
- For 'number of factors': if N = p^a · q^b · r^c, then number of factors = (a+1)(b+1)(c+1). For 60: (2+1)(1+1)(1+1) = 12.
- For 'is X a factor of Y': check that every prime in X's factorization appears in Y's with at least equal power.
- For GCF (greatest common factor): take the MINIMUM power of each shared prime.
- For LCM (least common multiple): take the MAXIMUM power of each prime across both numbers.
- For factorials: count prime powers using Legendre's formula — the power of prime p in n! is floor(n/p) + floor(n/p²) + …
Why It Matters
Factorization is the universal solvent for divisibility questions. Master this one pattern and roughly 15% of hard Quant becomes mechanical.
Want a tutor in the loop?
Open the chat with a pre-loaded prompt so the coach drills you on this exact pattern.
Ask the AI Tutor