Find the last two digits of ( 3 2 4 3 ) 1 0 in base 8. Enter your answer as a two-digit number.
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.
215475607473713760163677411770041767434032073214605243331671250157070666002444331545125411500242636614741673350026147474265634133 8
First off, I know this question is a test to tell who is not enjoying the holidays ;D
The solution is straightforward. Calculate the number, modulo 8 2 = 6 4 . You will probably need Euler's theorem for that. Then the result 2 7 , which is a base 1 0 number, can be converted to base 8 to get 3 3 .
I actually came up with this question a while ago in preparation for a test, but wasn't sure if this was worth posting here. :)
Log in to reply
it was definitely a good practice for me ;) cheers
Problem Loading...
Note Loading...
Set Loading...
In order to get the last two digits of 3 2 4 3 in base 8, we first take the number m o d 6 4 , since 8 2 = 6 4 , in base 10. Also note that 3 2 = 9 = 8 + 1 , so we can easily reduce this exponent by using the binomial theorem.
3 2 4 3 m o d 6 4 ≡ 3 ( 9 1 2 1 ) m o d 6 4 ≡ 3 ( 8 + 1 ) 1 2 1 m o d 6 4 ≡ 3 ( ( 1 1 2 1 ) ( 8 ) 1 ( 1 ) 1 2 0 + ( 0 1 2 1 ) ( 8 ) 0 ( 1 ) 1 2 1 ) m o d 6 4 ≡ 3 ( 1 2 1 ( 8 ) + 1 ) m o d 6 4 ≡ 3 ( 9 ) m o d 6 4 ≡ 2 7 m o d 6 4
We have now found that we have found the base 10 representation of the last two digits of the power in base 8, so we convert the number to base 8, which is 3 3 .