Question
Check whether 7,524 is divisible by 2, 3, 4, 6, 8, 9, and 11. Show the divisibility test for each.
Solution — Step by Step
Divisible by 2? Last digit is 4 (even). Yes.
Divisible by 5? Last digit is 4 (not 0 or 5). No.
Divisible by 10? Last digit is 4 (not 0). No.
Digit sum:
Divisible by 3? Sum = 18, which is divisible by 3. Yes.
Divisible by 9? Sum = 18, which is divisible by 9. Yes.
Divisible by 6? Must be divisible by both 2 and 3. It is. Yes.
Divisible by 4? Check last two digits: 24. Since , Yes.
Divisible by 8? Check last three digits: 524. Since , No.
Divisible by 11? Alternating sum: . Since 0 is divisible by 11, Yes.
Why This Works
graph TD
A["Divisibility Check"] --> B["By 2: last digit even?"]
A --> C["By 3: digit sum ÷ 3?"]
A --> D["By 4: last 2 digits ÷ 4?"]
A --> E["By 5: last digit 0 or 5?"]
A --> F["By 6: divisible by both 2 AND 3?"]
A --> G["By 8: last 3 digits ÷ 8?"]
A --> H["By 9: digit sum ÷ 9?"]
A --> I["By 10: last digit 0?"]
A --> J["By 11: alternating sum ÷ 11?"]
A --> K["By 7: double last digit, subtract from rest"]
The digit sum test for 3 and 9 works because , so for all . This means any number equals its digit sum modulo 3. Similarly, , so alternates between and modulo 11 — giving us the alternating sum test.
The last-two-digits test for 4 works because is divisible by 4, so only the tens and units digits matter. Similarly, is divisible by 8, so only the last three digits matter.
Alternative Method
Divisibility by 7 (the trickiest one): Take the last digit, double it, and subtract from the remaining number. Repeat until you get a small number. If that small number is divisible by 7, the original is too.
Example: Is 371 divisible by 7? Last digit = 1, double it = 2. Remaining = 37. . Since , yes, 371 is divisible by 7.
This rule is rarely tested in CBSE exams, but knowing it makes you faster in competitive scenarios.
Common Mistake
Confusing the divisibility rule for 4 with the rule for 8. For 4, check the last TWO digits. For 8, check the last THREE digits. Students sometimes check only the last two digits for 8, or the last three for 4. A reliable way to remember: is the first power of 10 divisible by 4 (so check 2 digits), and is the first power divisible by 8 (so check 3 digits).