Thursday, 28 March 2013

exponentiation and modular arithmetic



How would I be able to simplify



2xmod109




Since there are only 109 possible values mod 109, somewhere the pattern must repeat. I could have a computer program trudge through it, but I'm dealing with storing potentially 10 billion values and I'm guessing there's an easier way. I need to be able to calculate this for values of x as low as 3 and values too high to be effectively stored. I can't use Euler's Theorem since gcd(2,10)1.


Answer



The largest power of 2 that divides 109 is 29=512. From there on we have
29+nmod109=29(2nmod10929)


The sequence 2nmod59 does satisfy the conditions for Euler's Theorem to apply; we find that it has period φ(59)=458=1562500. (Though actually it is not trivial that the period is not some divisor of this -- see Carmichael's theorem).



So we get
2nmod109={2nmod109n<15625092((n9)mod1562500)+9mod109n1562509


No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find limh0sin(ha)h without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...