Is 123456789999999 divisible by nine? Solve without calculator
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
A number is divisible by 9 if and only if the sum of its digits are divisible by 9. Consider 2 different parts of the number, 12345678 and 9999999.
1+2+3+4+5+6+7+8 = 8(9)/2, which is divisible by 9. 9+9+9+9+9+9+9 = (9)(7), which is divisible by 9.
Clearly, the sum of these 2 parts is divisible by 9, so the sum of all the digits is divisible by 9.
Thus, 123456789999999 is divisible by 9.