5001 being divisible by 3 doesnt feel right
Shortcuts to determine if an integer is divisible by:
This is a given.
If the last digit is divisible by 2 (a.k.a. even), then so is the whole number.
If the sum of the digits is divisible by 3, then so is the whole number. The recursivity of this means that if the sum has multiple digits, you can add them up again until you get a single digit and see if it's 3, 6, or 9.
Like the rule for 2, but check if the last two digits are divisible by 4.
If it ends in 5 or 0.
If the rules for both 2 and 3 apply.
No shortcut. Alas.
Like the rules for 2 and 4, but check if the last three digits are divisible by 8. (Yes, this pattern keeps going for 16, 32, etc.)
Like the rule for 3, but the sum of the digits (or the sum of the sum of the digits, etc.) must be 9.
If it ends in 0.
Seven is a godless number
I looked it up because I was curious (and I also like the number that has been forsaken by god).
7 does have a rule!!
First you double the last digit, then subtract from the rest of the number. If you get 0 or a multiple of 7 then the larger number is divisible by 7.
Example:
1. 42
2x2=4 and 4-4=0 so 42 is divisible by 7
2. 457289
9x2=18. 45728-18=45710. (we skip 0) 1x2=2. 457-2=455. 5x2=10. 45-10=35. 35 is a multiple of 7 so 457289 is too.
















