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)=4⋅58=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((n−9)mod1562500)+9mod109n≥1562509
No comments:
Post a Comment