Sunday, September 16, 2018

elementary number theory - Divisibility and congruence.



How to prove that:
32|ϕ(515)
and
514422mod31
Thanks in advance.



Answer



For the first:
51=317. Use this to compute
ϕ(515)=ϕ(35175)=23416174=2534174
Can you see now why 32|ϕ(515)?
The second one is false:
51442202228102894928192420418(mod31)
The algorithm used here is called square-and-multiply in case you want to know how to compute such modular powers efficiently; It should be obvious that 218(mod31).
Indeed if you want
51k2(mod31)
You must chose k such that k3(mod15), because the discrete logarithm and order are
log512(mod30)=3ord31(51)=15


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...