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
| Divisor | Rule | Check for 7,524 |
|---|---|---|
| 2 | Last digit is even | 4 is even → Yes |
| 3 | Digit sum divisible by 3 | , → Yes |
| 4 | Last two digits divisible by 4 | → Yes |
| 5 | Last digit is 0 or 5 | Last digit is 4 → No |
| 6 | Divisible by both 2 and 3 | Yes to both → Yes |
| 8 | Last three digits divisible by 8 | → No |
| 9 | Digit sum divisible by 9 | → Yes |
| 10 | Last digit is 0 | Last digit is 4 → No |
| 11 | Alternating sum divisible by 11 | , and is divisible by 11 → Yes |
For 7: double the last digit and subtract from the rest. Repeat until small enough.
: double , subtract from :
: double , subtract from :
→ Not divisible by 7.
Why This Works
Each rule exploits number theory. For instance, divisibility by 3 works because , so , 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 : starting from the right: . Since is divisible by , so is .
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 , check the last digits. So for 2 (which is ), check the last 1 digit; for 4 (), last 2 digits; for 8 (), last 3 digits. Mixing up 4 and 8 is the most common error in CBSE Class 6 tests.