Factors • Topic 2 of 3

Sum of Factors

The sum of all factors of N = p^a × q^b × r^c is a product, not a sum: σ(N) = [(p^(a+1) − 1)/(p − 1)] × [(q^(b+1) − 1)/(q − 1)] × [(r^(c+1) − 1)/(r − 1)]. Each bracket is just the sum of a geometric series of one prime’s powers (1 + p + p^2 + ... + p^a), and multiplying the brackets distributes into every possible factor exactly once. The cleanest CAT method is to write each bracket as that small GP sum and multiply: for 12 = 2^2 × 3, σ = (1 + 2 + 4)(1 + 3) = 7 × 4 = 28. The same product structure gives the SUM of odd factors (drop the 2-bracket), the sum of even factors (total minus odd), or the sum of reciprocals of factors, which equals σ(N)/N. This formula is also how aliquot-sum and perfect-number questions are framed.

✅ Solved examples

1. Find the sum of all factors of 12.
12 = 2^2 × 3. σ = (1 + 2 + 4)(1 + 3) = 7 × 4 = 28.
2. Find the sum of all factors of 200.
200 = 2^3 × 5^2. σ = (1 + 2 + 4 + 8)(1 + 5 + 25) = 15 × 31 = 465.
3. Find the sum of the ODD factors of 360.
360 = 2^3 × 3^2 × 5. Drop the 2-bracket. Sum = (1 + 3 + 9)(1 + 5) = 13 × 6 = 78.
4. Find the sum of the EVEN factors of 360.
σ(360) = (1+2+4+8)(1+3+9)(1+5) = 15 × 13 × 6 = 1170. Odd sum = 78. Even = 1170 − 78 = 1092.

✏️ Practice — try these, take hints as needed

1. Sum of all factors of 28?
28 = 2^2 × 7.
(1 + 2 + 4)(1 + 7).
7 × 8.
56 (a perfect number: σ = 2N)
2. Sum of all factors of 100?
100 = 2^2 × 5^2.
(1 + 2 + 4)(1 + 5 + 25).
7 × 31.
217
3. Sum of the odd factors of 720?
720 = 2^4 × 3^2 × 5.
Use only 3 and 5 brackets.
(1 + 3 + 9)(1 + 5).
78
4. Sum of all factors of 96?
96 = 2^5 × 3.
(1 + 2 + 4 + 8 + 16 + 32)(1 + 3).
63 × 4.
252
5. Sum of reciprocals of all factors of 12?
= σ(N)/N.
σ(12) = 28.
28/12.
7/3

📝 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…