Prime Factorization
To prime-factorize a number, divide repeatedly by the smallest prime that fits, then move up. For 360: 360 = 2·180 = 2·2·90 = 2·2·2·45 = 2·2·2·3·15 = 2·2·2·3·3·5, so 360 = 2³·3²·5. Writing the result in exponent form is the whole point — it is the "DNA" of the number, and every later question (counting factors, testing squares, finding GCD/LCM) reads off these exponents. A factor tree gives the same answer regardless of the order you split, because the factorization is unique. Keep the primes in increasing order so the exponents are easy to scan. On the GRE the numbers are chosen to factor cleanly, so this is fast by hand — reaching for the basic calculator here usually wastes time.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Primes & factorization
| Prime | exactly two factors: 1 and itself |
|---|---|
| Smallest / only even prime | 2 |
| Fundamental Theorem | unique prime factorization for n > 1 |
| Primality check up to | √n (test primes ≤ √n) |
Counting from exponents
| n = p^a · q^b · r^c | number of factors = (a+1)(b+1)(c+1) |
|---|---|
| Perfect square | every prime exponent is even |
| Perfect cube | every prime exponent is a multiple of 3 |
| Odd number of factors ⇔ | n is a perfect square |