How do I show that there are integers $x, y$ with $[a, b]$ = $ax + by$

47 Views Asked by At

I've seen the answer for gcd$(a,b)$ but never for the lcm$(a,b)$?

2

There are 2 best solutions below

6
On BEST ANSWER

For lcm$(a,b)$, it's a multiple of $a$, so we can take $x=\frac{lcm(a,b)}{a}, y=0$. The gcd case, as you can see, is more interesting.

1
On

Well this actually follows from the answer for the gcd. Here's a big hint, suppose x' and y' are such that gcd(a,b) = ax'+by'. Now, we know the gcd divides both a and b and that lcm is divisible by both a and b. So try working from there toward a solution.