Hello I am wondering if any one can help me I am trying to figure out how to
Calculate 67−1 (mod 119) and use this to calculate 43/67 (mod 119).
I have an exam coming up an this will be one style of question can anyone please walk me through how it is done? I know I need to use the extended Euclidean GCD algorithm but don't know how
119 = 67 + 52
67 = 52 + 15
52 = (3 × 15) + 7
15 = (2 × 7) + 1
52 = 119 − 67
15 = 67 − 52 = 67 − 119 + 67 = (2 × 67) − 119
7 = 52 − (3 × 15) = 119 − 67 − (6 × 67) + (3 × 119) = (4 × 119) − (7 × 67)
1 = 15 − (2 × 7) = (2 × 67) − 119 − (8 × 119) + (14 × 67) = (16 × 67) − (9 × 119)
I cant figure out how to get passed this pont
Answer
I think you meant 67−1mod119. If we denote the inverse of 67mod119 by a, then by definition we wish to find a such that 67⋅a≡1mod119, or, find an integer solution (a,n) to 67a+119x=1. We will first find the GCD of 67 and 119 by Euclid's algorithm.
119=67⋅1+5267=52⋅1+1552=15⋅3+715=7⋅2+17=1⋅7+0
Now we can retrace our steps to find the solution to 67a+119x=1. We write 1=15−7⋅2 (from the fourth line). By substituting 7=52−15⋅3 (from the third line), we obtain 1=15−(52−15⋅3)⋅2=15⋅7−52⋅2. Substituting again, this time 15=67−52⋅1 (from the second line), we get 1=(67−52⋅1)⋅7−52⋅2=67⋅7−52⋅9. Substituting the last time, 52=199−67⋅1 (from the first line), we finally get 1=67⋅7−(119−67⋅1)⋅9=67⋅16−119⋅9. We find the solution (a,x) is (16,−9), and so a=16, making 67−1≡16mod119. To now get 43/67mod119, we just need to multiply by 43; we see 43/67≡43⋅16≡688≡93mod119.
Hope this helped!
No comments:
Post a Comment