Find GCD (320, 112) and LCM[320, 112].
Solve the equation 320x + 112y = a in the following situations:
(i) a = 32
(ii) a = 10.
Using Euclids Algorithm to find the GCD I have the following:
320 = 112*2 + 96 112 = 96*1 + 16 96 = 16*6 + 0
GCD(320, 112) = 16
(edit) Okay, after working a bit I remembered how to find LCM with prime factors
320 = 2^6 * 5 112 = 2^4 * 7
So, LCM[320, 112] = (2^6)(5)(7) = 2240
Moving on, I need to know how to apply this information to solve the equations.