New Reply

A big number modulo a prime

 
Share Thread Thread Tools
Dec12-12, 09:06 AM   #1
 

A big number modulo a prime


Im looking through old exams for a course in Cryptography and have beaten my head against the wall for a long time on one of the questions:

p = 683 is a prime, p-1 = 2*11*31. What is x = 4^11112 mod p?

When i did chinese remainder theorem on primes 2,11,31 i got that x = 16 mod 682, but so far i have not found a way to use this in determining x mod 683..

Also, when computing discrete logs I have found that one goes from mod p to mod (p-1) alot, why is that?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Dec12-12, 10:01 AM   #2
mfb
 
Mentor
Can you use a computer to calculate it?
The common general approach to calculate a^b mod c will give you the answer in milliseconds.
Dec12-12, 10:14 AM   #3
 
It is supposedly solvable by hand, but I'm wondering if it was meant to calculate mod p-1 instead of p. Atleast thats what I'll conclude if no one finds another answer.

Also, it seems that the answer is 16 mod 683 as well. Perhaps there is some once-in-a-lifetime connection between 682 and 683 for this task?
Dec12-12, 10:19 AM   #4
mfb
 
Mentor

A big number modulo a prime


4^11 = 2^22 = 1 mod 683

I would expect that there is some way to get this from p-1=2*11*31.
The rest is easy, as 11112 = 11*1010 + 2.

4^6 = -2 mod 683 is quite interesting, too.
It is possible to calculate that by hand, but then you don't need the hint.
Dec12-12, 11:15 AM   #5
 
4 is quadratic residue, so 4^(p-1)/2 = 1 mod p, but then i get 4^11*31 = 1 mod p, and i need to get rid of 31.. Otherwise i get stuck with 4^200 mod p. I'll try to figure something out, thanks for the help!
Dec12-12, 11:22 AM   #6
 
Blog Entries: 2
Quote by GatorPower View Post
Im looking through old exams for a course in Cryptography and have beaten my head against the wall for a long time on one of the questions:

p = 683 is a prime, p-1 = 2*11*31. What is x = 4^11112 mod p?

When i did chinese remainder theorem on primes 2,11,31 i got that x = 16 mod 682, but so far i have not found a way to use this in determining x mod 683..

Also, when computing discrete logs I have found that one goes from mod p to mod (p-1) alot, why is that?
The solution is to use Fermat's little theorm. To use that you need 11112 mod 682 not x mod 682.
Dec12-12, 11:52 AM   #7
 
Fermat gives 4^11112 = 1*4^200 mod p, so that gets me a little further, but not quite there.
Dec12-12, 12:19 PM   #8
 
Blog Entries: 2
Quote by GatorPower View Post
Fermat gives 4^11112 = 1*4^200 mod p, so that gets me a little further, but not quite there.
Knowing that 4^200 =(((4^5)^2)^2)^5 should help
Dec12-12, 12:29 PM   #9
 
That does help, its just that i want to find a better way of doing it! Usually these things turn out to be some number squared or something, so I feel like im doing something wrong if i compute too much :p
Dec12-12, 12:32 PM   #10
 
p-1=2*11*31 is also phi(p), and the order of any number (for example, 2) mod p is going to be a divisor of phi(p). So there are not many combinations to try in order to find a divisor d of phi(p) such that 2^d =1 mod p.
Dec12-12, 02:08 PM   #11
mfb
 
Mentor
Quote by Dodo View Post
p-1=2*11*31 is also phi(p), and the order of any number (for example, 2) mod p is going to be a divisor of phi(p). So there are not many combinations to try in order to find a divisor d of phi(p) such that 2^d =1 mod p.
I think this is the trick. You still have to calculate 4^2 mod p (trivial) and 4^6 mod p (you can stop calculating 4^11 here if you see 4^6 = -2 mod p and therefore 4^11 = 1 mod p), but you know that you don't have to calculate anything beyond 4^11.
Dec13-12, 05:19 AM   #12
 
Indeed, that does help. Thank you everyone for helping out!
Dec15-12, 02:55 PM   #13
 
The way I did it was
4^682=1 mod 683
(4^219)(4^463)=1mod 683
Then 4^11=1 mod 683
You can surely simplify 4^219 by using that

The rest should be clear.
New Reply
Thread Tools


Similar Threads for: A big number modulo a prime
Thread Forum Replies
Modulo and prime numbers Linear & Abstract Algebra 6
Calculation of Large Exponents Modulo a Prime Calculus & Beyond Homework 2
Order of 3 modulo a Mersenne prime Linear & Abstract Algebra 4
modulo a prime Calculus & Beyond Homework 1
binomial coefficient modulo a prime Linear & Abstract Algebra 1