Last 4 digits of a^1000 Prediction?

  • Thread starter Thread starter icedsake
  • Start date Start date
icedsake
Messages
7
Reaction score
0

Homework Statement



for 2<= a <=10
what is the last 4 digits of a^1000?
What is the criterion for the prediction of the last 4 digits from a?
 
Physics news on Phys.org
i am not sure
but it looks like a tailor series with calculating and error
 
use modulus when you divide a^1000 with 10000 ?
 
would there be a formula?
 
you don't know how modulus work?
 
Try using modulus and Euler's Theorem (if you're dealing with the prime a). Or you could try finding the order of a mod 10000 and using modulo arithmetic from there. That should reduce the problem to a much simpler one - at least, you won't have to multiply a out 1000 times.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top