The Bézout Coefficients equation returns two coefficients a and b that satisfy the equation ax + by = gcd(a, b).
INSTRUCTIONS: Enter the following
Bézout Coefficients (C1, C2): The equation returns the Bézout Coefficients for the numbers a and b
121 = 3 x 36 + 13
36 = 2 x 13 + 10
13 = 1 x 10 + 3
10 = 3 x 3 + 1
3 = 3 x 1 + 0
1 = 10 - 3(3) ––> 1 = 10 - 3[(13-1(10)] ––> 1 = 10 - 3(13) + 3(10) ––> 1 = -3(13 + 4(10)
1 = -3(13) + 4(10) ––> 1 = 4(10) - 3[36 - 2(13)] ––> 1 = -3(13) + 4(36) - 8(13) ––> 1 = 4(36) - 11(13)
1 = 4(36) - 11(13) ––> 1 = 4(36) - 11[121 - 3(36)] ––> 1 = 4(36) - 11(121) + 33(36) ––> 1 = -11(121) + 37(36)
C1 = 37
C2 = -11