Loading...
Login

Finding Factors of a Number – Step-by-Step Methods

Finding all the factors of a number is a skill that becomes second nature with practice. There are two reliable methods: the division method and the square root shortcut.

Finding factors efficiently matters more than it might seem. The square root shortcut below is the classical “trial division” method — genuinely the oldest algorithm known for testing whether a number is prime, used by mathematicians for well over two thousand years and still the first line of attack computers use today before switching to more advanced techniques for very large numbers. Cutting the search from “every number up to N” down to “every number up to √N” is a huge saving: for a six-digit number like 123,456, it is the difference between testing over 123,000 possible divisors and testing only about 351.

Method 1 – Systematic Division

Divide the number by every whole number from 1 upward. Stop when you reach the number itself. Record every result that leaves remainder 0.

Find all factors of 28

28 ÷ 1 = 28 ✓  28 ÷ 2 = 14 ✓  28 ÷ 3 = 9.33 ✗  28 ÷ 4 = 7 ✓  28 ÷ 5 = 5.6 ✗  28 ÷ 6 = 4.67 ✗  28 ÷ 7 = 4 ✓  28 ÷ 28 = 1 ✓

Factors: 1, 2, 4, 7, 14, 28

Watch the same idea run on 36: every whole number from 1 to 36 gets tested for divisibility, one batch at a time, colouring in green wherever it divides evenly.

Divides evenly — a factor
Leaves a remainder — not a factor
Final factor list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Test every whole number from 1 to 36
Click Step 1 or Auto Play to begin!
Factors of 36: 1, 2, 3, 4, 6, 9, 12, 18, 36
Nine numbers divided in evenly out of the 36 tested — those are all the factors.

Method 2 – Square Root Shortcut

You only need to test divisors up to the square root of the number. If a number divides in, both it and its partner are factors.

Find all factors of 36

√36 = 6. Test 1 to 6 only.

36 ÷ 1 = 36 ✓ (pair: 1, 36)  36 ÷ 2 = 18 ✓ (pair: 2, 18)  36 ÷ 3 = 12 ✓ (pair: 3, 12)  36 ÷ 4 = 9 ✓ (pair: 4, 9)  36 ÷ 5 = 7.2 ✗  36 ÷ 6 = 6 ✓ (pair: 6, 6 — same number)

Factors: 1, 2, 3, 4, 6, 9, 12, 18, 36

Method 3 – Factor Rainbow

Write the number at the top. Draw arcs connecting factor pairs. The rainbow fills inward until all pairs are found.

Factors of 12: 1—12, 2—6, 3—4

Divisibility Rules – Quick Reference

DivisorRuleExample
2Last digit is even48 ✓
3Sum of digits divisible by 3123: 1+2+3=6 ✓
4Last two digits divisible by 4316: 16÷4=4 ✓
5Last digit 0 or 575 ✓
6Divisible by both 2 and 348 ✓
9Sum of digits divisible by 9729: 7+2+9=18 ✓
10Last digit is 0130 ✓

Key Takeaways

  • Test divisors from 1 up to the square root — pairs fill in the rest.
  • Use divisibility rules to test quickly without long division.
  • Always list factors in ascending order.
  • A perfect square has an odd number of factors (the square root has no pair).

Practice: Find Factors

Factor-Finding Question

Related Topics

HomeAboutResourcesDashboard