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.
Relevant wiki: Finding the last few digits of a power
Method 1 :
Let us try to find the last two digits of small powers of 6 first, and see whether we can spot a pattern or not.
6 1 6 2 6 3 6 4 6 5 6 6 6 7 6 8 = = = = = = = = 0 6 3 6 2 1 6 1 2 9 6 7 7 7 6 4 6 6 5 6 2 7 9 9 3 6 1 6 7 9 6 1 6
Did you notice that starting from 6 2 , an increment of a power of 4 (or more precisely, by multiplying the same number by 6 5 ) gives us the same last two digits? So the last two digits of 6 1 0 0 is equals to the last two digits of all the following numbers
6 9 5 , 6 9 0 , 6 8 5 , … , 6 1 0 , 6 5
Since we already know that 6 5 = 7 7 7 6 , and its last two digits is 76. Then the last two digits of 6 1 0 0 is also 7 6 .
Method 2 :
Let us solve this using a systematic approach via modular arithmetic.
This is equivalent to finding 6 1 0 0 m o d 1 0 0 .
Since g cd ( 6 , 1 0 0 ) = 1 , we can't apply euler's totient function , so let us break up 1 0 0 into product of coprime positive integers, 1 0 0 = 4 × 2 5 .
So we want to find 6 1 0 0 m o d 4 and 6 1 0 0 m o d 2 5 , and with these two remainders, we can find 6 1 0 0 m o d 1 0 0 .
It is obvious that 6 1 0 0 m o d 4 = 0 because 6 1 0 0 = 6 × 6 × ⋯ × 6 and the first two terms being multiplied is already divisible by 4.
Now let us evaluate 6 1 0 0 m o d 2 5 , notice that g cd ( 6 , 2 5 ) = 1 , so we can now apply Euler's totient function to get
6 1 0 0 m o d 2 5 = 6 1 0 0 ( m o d ϕ ( 2 5 ) ) m o d 2 5
Using the properties of Euler's totient function, we have ϕ ( 2 5 ) = ϕ ( 5 2 ) = 2 5 ( 1 − 5 1 ) = 2 0 , by continuing the working above, we have
6 1 0 0 m o d 2 5 = 6 1 0 0 m o d ϕ ( 2 5 ) m o d 2 5 = 6 1 0 0 m o d 2 0 m o d 2 5 = 6 0 m o d 2 5 = 1 m o d 2 5
This leaves us with finding the smallest positive integer x such that x ≡ 0 ( m o d 4 ) , x ≡ 1 ( m o d 2 5 ) . The second congruence gives us x = 1 , 2 6 , 5 1 , 7 6 , … , for all of these numbers, the smallest number that is also divisible by 4 is 76. Thus the smallest positive integer x satisfying these two congruences is 7 6 and so is our answer.