How to tell if a number is divisible by 11
A number is divisible by 11 when you cut it into pairs of digits from the right, add the pairs, and get a multiple of 11.
How to check it
- Starting from the right-hand end, split the number into blocks of two digits. An odd leading digit is left alone at the front.
- Add the blocks together.
- If the total is more than two digits, split and add again.
- If the final total is 0, 11, 22, 33 … 99, the number divides by 11.
Worked examples
Is 4620 divisible by 11?
46 | 20 → 46 + 20 = 66
66 is 11 × 6, so yes. 4620 = 11 × 420.
Is 1155 divisible by 11?
11 | 55 → 11 + 55 = 66
Yes. 1155 = 11 × 105.
Is 45 816 divisible by 11?
4 | 58 | 16 → 4 + 58 + 16 = 78
77 and 88 are multiples of 11; 78 is not. So no.
The version taught at school: plus and minus
Write alternating signs along the digits and add them up: for 4620 that is +4 −6 +2 −0 = 0. Landing on 0 or any multiple of 11 means the number divides by 11.
The sign does not matter: −11 counts exactly as 11 does.
Both rules always agree, so use whichever you find quicker.
Why pairing works
Every hundred is 99 + 1, and 99 is nine 11s. So each two-digit block above the last contributes its own value plus a pile of 11s that can be ignored.
The pairs have to be cut from the right. 45 815 is 4 | 58 | 15, never 45 | 81 | 5. Cutting from the left gives the wrong answer.
Where mistakes happen
- Pairing from the left. The blocks must start at the units end.
- Rejecting a negative total in the plus-and-minus version. −11 means yes.
- Forgetting that 0 counts as a multiple of 11. A total of 0 is a pass.
Questions people ask
Is 11 harder than the other rules?
It turns up later at school, but the pair version only asks you to add two-digit numbers.
Does the pair rule work for long numbers?
Yes. Six or seven digits may need one extra round of splitting and adding, and the answer never changes.