Divisibility rules for 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 — quick checks

easy CBSE 3 min read

Question

Check if 7,524 is divisible by 2, 3, 4, 6, 8, 9, and 11 without performing actual division. State the rule used each time.

(CBSE Class 6 — number system)


Solution — Step by Step

DivisorRuleCheck for 7,524
2Last digit is even4 is even → Yes
3Digit sum divisible by 37+5+2+4=187+5+2+4 = 18, 18÷3=618 \div 3 = 6Yes
4Last two digits divisible by 424÷4=624 \div 4 = 6Yes
5Last digit is 0 or 5Last digit is 4 → No
6Divisible by both 2 and 3Yes to both → Yes
8Last three digits divisible by 8524÷8=65.5524 \div 8 = 65.5No
9Digit sum divisible by 918÷9=218 \div 9 = 2Yes
10Last digit is 0Last digit is 4 → No
11Alternating sum divisible by 1175+24=07-5+2-4 = 0, and 00 is divisible by 11 → Yes

For 7: double the last digit and subtract from the rest. Repeat until small enough.

75247524: double 4=84 = 8, subtract from 752752: 7528=744752 - 8 = 744

744744: double 4=84 = 8, subtract from 7474: 748=6674 - 8 = 66

66÷7=9.4366 \div 7 = 9.43\ldotsNot divisible by 7.


Why This Works

Each rule exploits number theory. For instance, divisibility by 3 works because 101(mod3)10 \equiv 1 \pmod{3}, so 10n1(mod3)10^n \equiv 1 \pmod{3}, meaning the digit sum has the same remainder as the number when divided by 3.

graph TD
    A["Is n divisible by d?"] --> B{"Which d?"}
    B -->|"2, 5, 10"| C["Check LAST DIGIT only"]
    B -->|"4"| D["Check last TWO digits"]
    B -->|"8"| E["Check last THREE digits"]
    B -->|"3, 9"| F["Check DIGIT SUM"]
    B -->|"6"| G["Check both 2 AND 3"]
    B -->|"11"| H["Check ALTERNATING SUM<br/>(odd position - even position)"]
    B -->|"7"| I["Double last digit,<br/>subtract from rest, repeat"]

Alternative Method — Factor Tree Approach

For composite divisors, check the prime factors: 6 = 2 times 3 (check both), 12 = 4 times 3 (check both), 15 = 3 times 5 (check both). This approach works for any composite number.

The alternating sum rule for 11 is easy to mess up with larger numbers. Always start from the rightmost digit: subtract the second-to-last, add the third-to-last, and so on. For 75247524: starting from the right: 42+57=04 - 2 + 5 - 7 = 0. Since 00 is divisible by 1111, so is 75247524.


Common Mistake

Students confuse the rules for 4 and 8. For 4, check the last two digits. For 8, check the last three digits. The pattern: for 2n2^n, check the last nn digits. So for 2 (which is 212^1), check the last 1 digit; for 4 (222^2), last 2 digits; for 8 (232^3), last 3 digits. Mixing up 4 and 8 is the most common error in CBSE Class 6 tests.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next