To be divisible by 2 the last digit must be even, ie one of {0, 2, 4, 6, 8};
For example 1234567: The last digit is 7, which is not one of these so it is not divisible by 2.
To be divisible by 3, sum the digits of the number and if this sum is divisible by 3, then the original number is divisible by 3.
As the test can be repeated on the sum, repeat the summing until a single digit remains; only if this number is one of {3, 6, 9} is the original number divisible by 3.
For example 1234567:
1234567 → 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28
28 → 2 + 8 = 10
10 → 1 + 0 = 1
1 is not one of {3, 6,9} so 1234567 is not divisible by 3.
To be divisible by 4, add twice the tens digit to the ones digit; if this sum is divisible by 4, then so is the original number.
As the test can be repeated on the sum, repeat the summing until a single digit remains; only if this number is one of {4, 8} is the original number divisible by 4.
For example 4562364:
→ 2×6 + 4 = 16
→ 2×1 + 6 = 8
8 is one of {4, 8} so 4562364 is divisible by 4.
To be divisible by 5, the last digit must be one of {0, 5}.
For example: 48250
The last digit is 0 which is not one of {0, 5} so it is divisible by 5.
To be divisible by 6, the number must be divisible by both 2 and 3; apply the tests for both of these.
for example: 346734
Last digit is 4, which is even (one of {0, 2, 4, 6, 8}) so 346734 is divisible by 2
346734 → 3 + 4 + 6 + 7 + 3 + 4 = 27
27 → 2 + 7 = 9
9 is one of {3, 6, 9}, so 346734 is divisible by 3
346734 is divisible by both 2 & 3 → 346734 is divisible by 6
There is no real check for 7 which is not much slower than just dividing by 7 to see if there is no remainder. One check:
Write the digits in blocks of 3 starting from the right hand end (like you would for reading the number):
in each block of 3 add twice the first digit to three times the second digit to the third digit.
Alternately subtract and add the blocks starting from the right hand end of the number.
If the result is divisible by 7, then so is the original number.
For example: 15,838,874
15,838,874 → 2×0 + 3×1 + 5, 2×8 + 3×3 + 8, 2×8 + 3×7 + 4
→ 8, 33, 41
→ 41 - 33 + 8 = 16
16 is not divisible by 7, so 15,838,874 is not divisible by 7.
To be divisible by 8, add four times the hundreds digit to twice the tens digit to the ones digit; if this sum is divisible by 8, then so is the original number. As the test can be repeated on the sum, repeat the summing until a single digit remains; only is this number is 8 is the original number divisible by 8.
For example: 34689312572
→4×5 + 2×7 + 2 = 36
36 → 4×0 + 2×3 + 6 = 12
12 → 4×0 + 2×1 + 2 = 4
4 is not 8 so 34689312572 is not divisible by 8.
To be divisible by 9, sum the digits of the number and if this sum is divisible by 9, then the original number is divisible by 9.
As the test can be repeated on the sum, repeat the summing until a single digit remains (this single digit is called the digital root of the number); only if this number is 9 is the original number divisible by 9.
For example 85423479674
85423479674 → 8 + 5 + 4 + 2 + 3 + 4 + 7 + 9 + 6 + 7 + 4 = 59
59 → 5 + 9 = 14
14 → 1 + 4 = 5
5 is not 9 so 85423479674 is not divisible by 9.
To be divisible by 10, the last digit must be 0
For example: 346759056; the last digit is 6 which is not 0, so it is not divisible by 10.
To be divisible by 11, alternately subtract and add the digits of the number from the right hand end; only if this sum is divisible by 11 (or is 0) is the original number divisible by 11.
For example: 4690263597
4690263597 → 7 - 9 + 5 - 3 + 6 - 2 + 0 - 9 + 6 - 4 = -3
-3 is not divisible by 11, so 4690263597 is not divisible by 11.
To be divisible by 12, the the number must be divisible by both 3 and 4; apply the tests for both of these.
for example: 3467343564
3467343564 → 3 + 4 + 6 + 7 + 3 + 4 + 3 + 5 + 6 + 4 = 45
45 → 4 + 5 = 9
9 is one of {3, 6, 9} so 3467343564 is divisible by 3
64 → 2×6 + 4 = 16
16→ 2×1 + 6 = 8
8 is one of {4, 8} so 3467343564is divisible by 4
→ 3467343564is divisible by both 3 and 4, so 3467343564 is divisible by 12
12
You have to use the rules of 4 and 9 Using the rules of 2 and 18 won't work because the smallest common multiple of 2 and 18 is 18 not 36. 3 and 12 won't work either because the smallest common multiple of 3 and 12 is 12 not 36. However 4 and 9 does work because their biggest common divisor is 1 so multiplying them works. The biggest common divisor of 2 and 18 is 2 and the biggest common divisor of 3 and 12 is 3
Any even number is divisible by 2.
If the rules for 2 and 3 work, the number is divisibale by 5.
26
12
You have to use the rules of 4 and 9 Using the rules of 2 and 18 won't work because the smallest common multiple of 2 and 18 is 18 not 36. 3 and 12 won't work either because the smallest common multiple of 3 and 12 is 12 not 36. However 4 and 9 does work because their biggest common divisor is 1 so multiplying them works. The biggest common divisor of 2 and 18 is 2 and the biggest common divisor of 3 and 12 is 3
1: Every number is a multiple of 1 2: The number ends in 0, 2, 4, 6 or 8 3: The sum of the digits is a multiple of 3 4: The last 2 digits are a multiple of 4 The 10s digit is even and the last digit is 0, 4 or 8 The 10s digit is odd and the last digit is 2 or 6 5: The number ends in 0 or 5 6: The number is a multiple of 2 and 3 at the same time 7: The difference between twice the last digit and the rest of the number is a multiple of 7 8: The last 3 digits are a multiple of 8 The 100s digit is even and the last 2 digits are a multiple of 8 The 100s digit is odd and the last 2 digits are 4 times an odd number 9: The sum of the digits is a multiple of 9 10: The number ends in 0 11: The difference between the last digit and the rest of the number is a multiple of 11 12: The number is a multiple of 3 and 4 at the same time 13: The sum of 4 times the last digit and the rest of the number is a multiple of 13 14: The number is a multiple of 2 and 7 at the same time 15: The number is a multiple of 3 and 5 at the same time 16: The last 4 digits are a multiple of 16 The 1,000s digit is even and the last 3 digits are a multiple of 16 The 1,000s digit is odd and the last 3 digits are 8 times an odd number 17: The difference between 5 times the last digit and the rest of the number is a multiple of 17 18: The number is a multiple of 2 and 9 at the same time 19: The sum of twice the last digit and the rest of the number is a multiple of 19 20: The number ends in 00, 20, 40, 60 or 80 21: The difference between twice the last digit and the rest of the number is a multiple of 21 22: The number is a multiple of 2 and 11 at the same time 23: The sum of 7 times the last digit and the rest of the number is a multiple of 23 24: The number is a multiple of 3 and 8 at the same time 25: The number ends in 00, 25, 50 or 75 26: The number is a multiple of 2 and 13 at the same time 27: The difference between 8 times the last digit and the rest of the number is a multiple of 27 28: The number is a multiple of 4 and 7 at the same time 29: The sum of thrice the last digit and the rest of the number is a multiple of 29 30: The number is a multiple of 3 and 10 at the same time 31: The difference between thrice the last digit and the rest of the number is a multiple of 31 32: The last 5 digits are a multiple of 32 The 10,000s digit is even and the last 4 digits are a multiple of 32 The 10,000s digit is odd and the last 4 digits are 16 times an odd number 33: The sum of 10 times the last digit and the rest of the number is a multiple of 33 34: The number is a multiple of 2 and 17 at the same time 35: The number is a multiple of 5 and 7 at the same time 36: The number is a multiple of 4 and 9 at the same time 37: The difference between 11 times the last digit and the rest of the number is a multiple of 37 38: The number is a multiple of 2 and 19 at the same time 39: The sum of 4 times the last digit and the rest of the number is a multiple of 39 40: The last 3 digits are a multiple of 40 The 100s digit is even and the last 2 digits are 00, 40 or 80 The 100s digit is odd and the last 2 digits are 20 or 60 41: The difference between 4 times the last digit and the rest of the number is a multiple of 41 42: The number is a multiple of 2 and 21 at the same time 43: The sum of 13 times the last digit and the rest of the number is a multiple of 43 44: The number is a multiple of 4 and 11 at the same time 45: The number is a multiple of 5 and 9 at the same time 46: The number is a multiple of 2 and 23 at the same time 47: The difference between 14 times the last digit and the rest of the number is a multiple of 47 48: The number is a multiple of 3 and 16 at the same time 49: The sum of 5 times the last digit and the rest of the number is a multiple of 49 50: The number ends in 00 or 50
3 and 9. And they divide into 123456789 whether or not you use divisibility rules!
Any even number is divisible by 2.
If the rules for 2 and 3 work, the number is divisibale by 5.
26
Suppose you were trying to find the prime factorization of 123. You know that half of the divisors will be less than the square root. Since the square root is between 11 and 12, you only need to test 2, 3, 5, 7 and 11 as prime factors. If you know the rules of divisibility, you already know that 2 and 5 aren't factors and 3 is. It saves time.
Those for 1, 2, 4, 5 and 8.
1000 times 1000 is divisible by 2, 4, 5, 8 and 10.
Factors are divisors. If you know the divisibility rules, you know that 80 is divisible by 1, 2, 4, 5 and 8. If you divide 80 by those numbers, you find the other half of the factor pairs.
A number is a multiple of 42 if it's a multiple of 2 and 21 at the same time 126 is a multiple of 42 because it ends in 6, which means it's a multiple of 2, and 12 - 6 x 2 = 0, which means it's a multiple of 21