This problem is to solve 7979≡x(mod100). I'm aware this may be solved by binomial expansion or other methods. But when we apply Euler's theorem we obtain 7980≡1(mod100), which seems to be very close to our goal. I just need to divide 79 from both sides.
Now I can do this using a stupid method: by subtracting 100 from LHS to obtain -99, -199, -299,... until "X99" is divisible by 79. I then find that 79×(−81)=−6399. So we obtain 7980≡−6399(mod100) and divides 79 on both sides as 79 is coprime of 100. This gives me 7979≡−81≡19(mod100).
My question is if there is a more systematic/standard way of carrying out a division on both sides, perhaps something related to "inverse" etc. A group theory/ring theory approach is welcome as well.
Answer
Generally this form of the extended Euclidean algorithm is easiest, but here below is quicker.
mod100: (80−1)(80+1)≡−1, because 802≡0
therefore: 79−1≡−81≡19 Generally if an≡0 this iinverts 1−a [unit + nilptotent] by using a terminating geometric series: 11−a≡1−an||1−a≡1+a+⋯+an−1
Or using a fractional form of the Extended Euclidean Algorithm, and 79≡−21:
mod 100: 0100⌢≡1−21⌢≡5−5⌢≡191 or, in equational form
[[1]]:100x≡ 0[[2]]:−21x≡ 1[[1]]+5[[2]]=:[[3]]:−5x≡ 5−[[2]]+4[[3]]=:[[4]]:x≡19
Or mod100: −1−79≡9921≡337R|≡1337≡19 by R= inverse Reciprocity.
Or by CRT: mod25: x≡179≡14≡−244≡−6. mod4: x≡179≡1−1≡−1, so −1||≡x≡6+25j≡2+j⟺j≡1 ⟺x=−6+25(1+4n)=19|+100n
Beware Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. In particular it is valid to cancel 3 in 99/21 above. See here for further discussion.
No comments:
Post a Comment