2

Question:

Prove with the help of the Gauss lemma that if $a$ and $b$ are two integers then the product $ab$ is equal to the multiplication of $GCD(a;b)$ by $LCM(a;b)$.

My attempt:

1-
$GCD(a;b) = d \Rightarrow a=dx, b=dy$ with $GCD(x;y)=1$ and $x,y,d \in \mathbb{N}$
So we can writte $ab=dxdy=d^2xy$.

2-
Reminder: Gauss lemma: If $a,b,c$ are three integers such that $a$ and $b$ are coprime and $a$ divides $bc$ then $a$ divises $c$.
Now we writte $LCM(a;b)=lxy$ with $GCD(x;y)=1$ and $x,y,l \in \mathbb{N}$. As $x$ and $y$ are coprime i would like to use the Gauss lemma, but I can't continue since $x$ doesn't divide necessarly $ly$ and this in order to prove that $d=l$ and so finish the prove In short I am stuck any help will be appreciated.

Thank you.

Bill Dubuque
  • 272,048
OffHakhol
  • 708
  • @lulu thank you I am going to read but i am looking for a specific prove using Gauss Lemma – OffHakhol Dec 27 '23 at 13:41
  • @lulu thank you for the link but as I ve seen there is no use of the Gauss lemma in the different proove. The exercice asked me explicitely to use the Gauss lemma. – OffHakhol Dec 27 '23 at 13:47
  • You've searched all the duplicates on the site? There are dozens. here is one that was closed as a duplicate, which links to other duplicates. Of course anything that uses Unique Factorization uses the Gauss Lemma. – lulu Dec 27 '23 at 13:49
  • @lulu No. Or at least i didn't find one. I prefer to rethink entirely the question and I think that I have found a solution. Thk for your help. – OffHakhol Dec 27 '23 at 14:35
  • 1
    Let $d=(a,b).$ Then ${\rm lcm}(a,b) = \color{#0a0}{ab/d},$ follows as below (we implicitly use $m/b\in\Bbb Z\Rightarrow b\mid m)$

    $$\begin{align} a,b\mid m&\iff\ \ \ \ \ \ a\mid (m/b):!b\ &\iff\ , \color{#c00}{a/d}\mid (m/b):!\color{#c00}{b/d}\ &\iff \ ,a/d\mid\ m/b,\ \ {\rm by}\ \ \color{#c00}{(a/d,b/d)=1},\ \text{& Lemma}\ &\iff \color{#0a0}{ba/d}\mid\ m \qquad\end{align}$$

    – Bill Dubuque Dec 27 '23 at 19:39
  • The above and many other proofs are in the linked dupes (and their links). – Bill Dubuque Dec 27 '23 at 19:40

2 Answers2

2

I will exclude the trivial cases $a=0$ or $b=0$. If $a$ and $b$ are coprime, then the least common multiple coincides with $a \cdot b$. As for the general case, you can conclude by noticing that $\frac{a}{\text{GCD}(a,b)}$ and $\frac{b}{\text{GCD}(a,b)}$ are coprime. Thus,

$$ \frac{a}{\text{GCD}(a,b)} \cdot \frac{b}{\text{GCD}(a,b)} = \text{LCM}\left(\frac{a}{\text{GCD}(a,b)}, \frac{b}{\text{GCD}(a,b)}\right) $$

By multiplying both sides by $\text{GCD}(a,b)^2$, you obtain

$$ a \cdot b = \text{GCD}(a,b)^2 \cdot \text{LCM}\left(\frac{a}{\text{GCD}(a,b)}, \frac{b}{\text{GCD}(a,b)}\right) = \text{GCD}(a,b) \cdot \text{LCM}(a,b). $$

In the last step, I used the property

$$ \text{GCD}(a,b) \cdot \text{LCM}\left(\frac{a}{\text{GCD}(a,b)}, \frac{b}{\text{GCD}(a,b)}\right) = \text{LCM}(a,b), $$

which intuitively seems true. Although I haven't rigorously proven it, I visualized the prime factorization of the two integers and it appeared to hold. When you divide both $a$ and $b$ by their GCD, you eliminate the common powers of primes with the least exponent. The least common multiple between $\frac{a}{\text{GCD}(a,b)}$ and $\frac{b}{\text{GCD}(a,b)}$ has the same factorization as $\text{LCM}(a,b)$ except for those common powers of primes with the least exponent that were subtracted earlier. By multiplying by $\text{GCD}(a,b)$, you reintroduce those missing powers, resulting in the recovery of $\text{LCM}(a,b)$. Does this explanation make sense? I assumed you were open to any form of assistance based on your statement.

  • Thank you for your time but I don't see where you are using the gauss lemma? – OffHakhol Dec 27 '23 at 13:45
  • 1
    @OffHakhol fair point! I forgot to apply it while I was writing the answer! – Matteo Aldovardi Dec 27 '23 at 13:50
  • It's ok in all the cases it may help futur student! ;-) – OffHakhol Dec 27 '23 at 13:53
  • @OffHakhol, perhaps the lemma was necessary solely for establishing that $d \cdot x \cdot y$ is the least common multiple between $a$ and $b$. In essence, consider $a / (d \cdot x) \cdot y$ and $b / x \cdot (d \cdot y)$. The Gauss Lemma might be employed to confirm the crucial assertion that if there exists another $c$ such that $a/c$ and $b/c$, then it follows that $d \cdot x \cdot y / c$ as well. – Matteo Aldovardi Dec 27 '23 at 14:01
  • I prefer to rethink entirely the question and I think that I have found a solution. it will be great if I can know what you think about it (is it correct? ). Thk for your help. – OffHakhol Dec 27 '23 at 14:35
  • Please strive not to post more (dupe) answers to dupes of FAQs. This is enforced site policy, see here. – Bill Dubuque Dec 27 '23 at 19:47
  • @BillDubuque thk for your comment but as I ve allready said this question (using the Gauss lemma) was not yet asked. – OffHakhol Dec 28 '23 at 11:33
1

I have tryed to re think this question from the beginning and this is what I get. I hope that it is correct.

1-
$GCD(a;b)=d \Rightarrow a=dx, b=dy$ with $x,y,d \in \mathbb{N}$ and $GCD(x;y)=1$
More over we can writte$\frac{ab}{d}=ay=bx$ so it cames that the integer $ay=bx$ is a commom multiple of $a$ and $b$ by definition.

2-
Now let note $m=LCM(a;b) \Rightarrow \exists k,l \in \mathbb{N} $ s.t. $ m = ak = bl \Rightarrow \frac{m}{d}=\frac{xdk}{d}=\frac{ydl}{d}=xk=yl \in \mathbb{N}$

3-
Reminder: Gauss lemma: If $a,b,c$ are three integers such that $a$ and $b$ are coprime and $a$ divides $bc$ then $a$ divises $c$.
We take $x,y$ two coprime integers and $l$. As we wrotte above $xk=yl \Rightarrow \frac{yl}{x}=k \in \mathbb{N}$ so $x$ divides $yl=\frac{m}{d}$. Hence by the Gauss lemma we get that $x$ divides $l$. Equivalently we get by the same justification that $y$ divides $k$.
So we can writte: $m=bl=dyl=dyxl'$ with $l=xl'$ and on the other side $m=ak=dxk=dxyk'$ with $k=xk'$

4-
From "-3" we got that $dyxl'= m = dxyk'\Rightarrow l'=k'$. But $m$ is by def the smallest commom multiplier so $l'=1=k'$ and we get that $LCM(a;b)=dxy$.
Rem: Indeed $dxy$ is all ready by def a commom multiplier of $a$ and $b$ because $dxy$ is all ready a multiple of $a$ and $b$ as it is divisible by them!

5-
So: $GCD(a;b)LCM(a;b)=ddxy=d^2xy$ while $ab=dxdy=d^2xy$
Q.E.D.

OffHakhol
  • 708