Advanced Divisibility
CAT pushes divisibility two steps further. First, COMPOSITE divisors: to test a divisor n, split it into coprime factors and test each. For 12 use 3 and 4 (HCF 1), for 15 use 3 and 5, for 72 use 8 and 9. The trap is choosing factors that share a common factor — 12 = 6 × 2 fails, because passing the 2-test and the 6-test does not force divisibility by 12 (24 vs 12). Always pick factors whose HCF is 1, and their product covers the full divisor. Second, the REVERSE problem: a number has an unknown digit and you must find the value(s) that make it divisible by a given number. Set up the rule as an equation in the missing digit, then solve over 0–9. For divisibility by 9, the digit sum must reach the next multiple of 9; for 11, the alternating sum must hit 0 or ±11; for 8, only the last three digits matter, so the unknown often sits inside that block. When two digits are unknown, two rules (say 8 and 9, for 72) pin them down.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Standard rules (single divisors)
| Divisible by 2 / 5 / 10 | Last digit is 0,2,4,6,8 / is 0 or 5 / is 0 |
|---|---|
| Divisible by 3 / 9 | Digit sum is divisible by 3 / by 9 |
| Divisible by 4 / 8 | Last 2 digits ÷ 4 / Last 3 digits ÷ 8 |
| Divisible by 11 | (Sum of odd-place digits − sum of even-place digits) is 0 or a multiple of 11 |
| Divisible by 6 | Divisible by 2 AND by 3 together |
Composite divisors via coprime factors
| Divisible by 12 | Divisible by 3 AND 4 (3, 4 coprime) |
|---|---|
| Divisible by 15 | Divisible by 3 AND 5 |
| Divisible by 18 | Divisible by 2 AND 9 |
| Divisible by 72 | Divisible by 8 AND 9 (NOT 6 × 12 — share a factor) |
| General rule | For n = a × b with HCF(a,b)=1, n | N ⇔ a | N and b | N |