Question
State and explain the divisibility rules for 3, 4, 6, 8, 9, and 11. Illustrate each with an example.
Solution — Step by Step
Rule: A number is divisible by 3 if the sum of its digits is divisible by 3.
Example: 567 → . Since 18 ÷ 3 = 6 (exact), 567 is divisible by 3.
Example (fail): 572 → . 14 is not divisible by 3, so 572 is not.
Why: Every power of 10 leaves remainder 1 when divided by 3 (). So a number .
Rule: A number is divisible by 4 if its last two digits form a number divisible by 4.
Example: 1732 → last two digits are 32. Since 32 ÷ 4 = 8, yes, 1732 is divisible by 4.
Example (fail): 1734 → last two digits 34. 34 ÷ 4 = 8.5 — not exact. 1734 is not divisible by 4.
Why: 100 is divisible by 4 (). So for any number, only the last two digits determine divisibility by 4.
Rule: A number is divisible by 6 if it is divisible by both 2 and 3 simultaneously.
- Must be even (divisible by 2): last digit is 0, 2, 4, 6, or 8
- Sum of digits must be divisible by 3
Example: 732 → last digit 2 (even ✓); (divisible by 3 ✓). So 732 is divisible by 6.
Why: and gcd(2,3) = 1. When two coprime numbers both divide , so does their product.
Rule: A number is divisible by 8 if its last three digits form a number divisible by 8.
Example: 5,824 → last three digits 824. . Yes, 5824 is divisible by 8.
Example (fail): 5,826 → last three digits 826. . Not divisible.
Why: , so any multiple of 1000 is divisible by 8. Only the last three digits determine divisibility.
Rule: A number is divisible by 9 if the sum of its digits is divisible by 9.
Example: 738 → . ✓. So 738 is divisible by 9.
Example (fail): 735 → . . Not divisible.
Note: Every number divisible by 9 is also divisible by 3 (but not vice versa).
Rule: A number is divisible by 11 if the difference between the sum of digits at odd positions and the sum of digits at even positions (counting from the right) is 0 or divisible by 11.
Example: 1,43,264 Digits from right: 4(pos1), 6(pos2), 2(pos3), 3(pos4), 4(pos5), 1(pos6)
Sum of odd-position digits: Sum of even-position digits:
Difference: . Divisible by 11. ✓
Simpler example: 121 → . Divisible by 11 ✓ (since ).
Why: . So , which alternates +1 and -1 — giving the alternating sum rule.
Why This Works
All divisibility rules are based on the properties of powers of 10 modulo the divisor. Understanding the “why” lets you reconstruct the rule even if you forget it:
- and → digit sum rules
- → alternating digit sum rule
- , → last-two/three-digit rules
Common Mistake
Students apply the rule for 9 (digit sum) to check divisibility by 3. Digit-sum-divisible-by-9 implies divisible by 3, but not vice versa. To check divisibility by 3, the digit sum only needs to be divisible by 3 (not necessarily by 9). Example: 12 — digit sum 3, divisible by 3 ✓ but digit sum not divisible by 9, so NOT divisible by 9.
For competitive exams and quick mental checks: if you see a large number, check divisibility by 6 by scanning two things simultaneously — is the last digit even? And is the digit sum a multiple of 3? Both questions take under 2 seconds and give you the answer for both 2 and 3 (and hence 6).