Alternate proof for GCD × LCM = product

5k Views Asked by At

Is there any alternate proof for proving that

The product of L.C.M (Least Common Multiple) and G.C.D (Greatest Common Divisor) of any two positive integers = the product of those two integers

?

As of now, there exists a proof which involves use of Number Theory based facts.

I am interested to know if there exists any alternate proof (perhaps in different branch of Mathematics ?!).

You can assume that you want to prove this fact to a person who is aware of basics of mathematics but not NUMBER THEORY

2

There are 2 best solutions below

4
On BEST ANSWER

Let us express both numbers in their prime factorisation. Note that by the fundamental theorem of arithmetic, any number can be only represented in one prime factorisation:

$$X = 2^a * 3^b * 5^c * 7^d \cdots (1)$$

$$Y = 2^p * 3^q * 5^r * 7^s \cdots (2)$$

The highest common factor of $X, Y$ is $2^{min(a,p)} * 3^{min(b,q)} * 5^{min(c,r)} \cdots$, which multiplies the smallest powers of $2$, $3$, $5$ and so on.

The lowest common multiple is $2^{max(a,p)} * 3^{max(b,q)} * 5^{max(c,r)} \cdots$, which multiplies the largest powers of $2$, $3$, $5$ and so on.

Since one number cannot have a power which is both the smallest and largest, then $HCF(X,Y) * LCM(X,Y) = 2^a2^p * 3^b3^q * 5^c5^r \cdots$ in some order. This is equal to $(1)$ multiplied by $(2)$, which is equal to $X$ multiplied by $Y$.

1
On

Given two numbers, $a,b$, let $d:=\gcd(a,b)$ and then $f:=a/d$ and $g:=b/d$, giving $a=df$ and $b=dg$.

Now we know that the least common multiple, $c$, of $a$ and $b$ has to be divisible by $df$ and by $dg$. We also know that $f$ and $g$ have no common factors (otherwise $d$ would be bigger by that factor). So $c=dfg$ is the smallest number that can fulfill all these requirements.

Then $ab = df\cdot dg = d\cdot dfg = \gcd\cdot {\rm lcm}$