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.
Why did you take modulo 6? Very nice solution though,
Log in to reply
the cycle repeats itself every 6 numbers, so I just needed to know the remainder on division of 6. For example, we know the 7th number is 2 because 7 ≡ 1 ( m o d 6 )
Because there are 6 possible options.
Repeatedly summing the digits of a number in this manner is equivalent to taking the number modulo 9. Thus, the answer is: 2 1 0 0 ≡ ( 2 1 0 ) 1 0 ≡ 1 0 2 4 1 0 ≡ 7 1 0 ≡ ( 7 2 ) 5 ≡ 4 9 5 ≡ 4 5 ≡ 1 0 2 4 ≡ 7 ( m o d 9 )
Why modulo 9?
Log in to reply
Every number is equivalent to the sum of its digits (modulo 9). Thus, eventually, the operation of repeatedly summing the digits of the number will give the number modulo 9.
Solved with a little Python:
1 2 3 4 5 6 7 8 9 |
|
Problem Loading...
Note Loading...
Set Loading...
If we substitute exponents of 2 in ascending order it becomes clear that the pattern/cycle is (2,4,8,7,5,10). Now 1 0 0 ≡ 4 ( m o d 6 ) , so we take the 4th term in the cycle. Hence, the answer is 7.