Every rule introduced on this page has the same shape — read off a small slice of the number's digits, do a short calculation, check divisibility of the result. The table below collects all nine rules side by side, paired with a worked example and the modular identity that makes the rule work. It's designed as the page you'd bookmark and return to: one row per divisor, all the information for applying and understanding each rule in a single line.
| Divisor |
Test |
Worked example |
Modular reason |
| 2 |
last digit is 0, 2, 4, 6, or 8 |
1746 → ends in 6 (even) ✓ |
10 ≡ 0 (mod 2) |
| 3 |
digit sum is divisible by 3 |
729 → 7+2+9=18 → 18 ÷ 3 = 6 ✓ |
10 ≡ 1 (mod 3) |
| 4 |
last two digits form a number divisible by 4 |
3516 → 16, and 16 ÷ 4 = 4 ✓ |
10² ≡ 0 (mod 4) |
| 5 |
last digit is 0 or 5 |
4835 → ends in 5 ✓ |
10 ≡ 0 (mod 5) |
| 6 |
passes the test for 2 AND the test for 3 |
1254 → 4 (even) ✓ and 1+2+5+4=12, 12 ÷ 3 = 4 ✓ |
6 = 2 · 3 with gcd(2, 3) = 1 |
| 8 |
last three digits form a number divisible by 8 |
53104 → 104, and 104 ÷ 8 = 13 ✓ |
10³ ≡ 0 (mod 8) |
| 9 |
digit sum is divisible by 9 |
8127 → 8+1+2+7=18, and 18 ÷ 9 = 2 ✓ |
10 ≡ 1 (mod 9) |
| 10 |
last digit is 0 |
5230 → ends in 0 ✓ |
10 ≡ 0 (mod 10) |
| 11 |
alternating sum of digits (right → left) is divisible by 11 |
9273 → 3 − 7 + 2 − 9 = −11, and 11 ∣ (−11) ✓ |
10 ≡ −1 (mod 11) |