What integer would need to be subtracted from the above number for it to be divisible by ?
Clarification:
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.
In base 7, the test for dividing evenly by 8 is to add up every other digit and subtract the total from the remaining digits, and if the result is divisible by 8, then the original number is. In this case, every other digit adds up to 1 + 2 + 3 + 4 + 5 + 6 + 5 + 4 + 3 + 2 + 1 = 3 6 , and the sum of the other numbers is zero (since they are all zero). 3 6 ( m o d 8 ) = 4 . So, if we subtract 4 , the number will be divisible by 8 1 0 .