Factors • Topic 1 of 3

Number of Factors

Every factor of N = p^a × q^b × r^c is built by choosing a power of each prime independently: 0 to a copies of p, 0 to b copies of q, 0 to c copies of r. That gives (a+1) choices for p, (b+1) for q, (c+1) for r, so the total number of factors is d(N) = (a+1)(b+1)(c+1). The "+1" matters — it accounts for choosing zero copies (which keeps 1 and the prime out). CAT extends this with conditioned counts. For ONLY odd factors, drop the power of 2 entirely and multiply the remaining (exponent+1) terms. For ONLY even factors, every such factor must contain at least one 2, so subtract the odd-factor count from the total. For factors divisible by a given m (where m | N), divide N by m and count the factors of the quotient. The reflex: never list, always factorise then multiply.

✅ Solved examples

1. How many factors does 360 have?
360 = 2^3 × 3^2 × 5^1. d = (3+1)(2+1)(1+1) = 4 × 3 × 2 = 24 factors.
2. How many odd factors does 360 have?
Ignore the power of 2. Odd part = 3^2 × 5^1 ⇒ (2+1)(1+1) = 6 odd factors.
3. How many even factors does 360 have?
Even = total − odd = 24 − 6 = 18 even factors.
4. How many factors of 720 are divisible by 6?
720 = 2^4 × 3^2 × 5. Divide by 6: 720/6 = 120 = 2^3 × 3 × 5 ⇒ (3+1)(1+1)(1+1) = 16 factors are divisible by 6.

✏️ Practice — try these, take hints as needed

1. How many factors does 84 have?
Factorise first.
84 = 2^2 × 3 × 7.
(2+1)(1+1)(1+1).
12
2. How many odd factors does 1200 have?
1200 = 2^4 × 3 × 5^2.
Drop the 2^4.
(1+1)(2+1).
6
3. How many even factors does 96 have?
96 = 2^5 × 3.
Total = 6 × 2 = 12; odd = (1+1) = 2.
Even = total − odd.
10
4. A number has exactly 3 factors. What can be said about it?
3 = (a+1) only when a = 2.
Single prime squared.
Square of a prime.
It is the square of a prime (e.g. 49 = 7^2)
5. How many factors of 540 are divisible by 15?
540 = 2^2 × 3^3 × 5.
Divide by 15 = 3 × 5.
540/15 = 36 = 2^2 × 3^2.
9

📝 Topic test — 8 questions

Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.

Loading questions…