2

Say $a$ and $b$ are integers. $\gcd(a,b)$ is then $d$. Now if $a$ equals $dm$ for some integer $m$ and b equals $dn$ for some integer n, how come the gcd of this m and n is always 1?

Asaf Karagila
  • 393,674
Paze
  • 1,956

2 Answers2

10

Suppose that $\ell$ divides both $m$ and $n$. Then we can write $m=\ell\cdot\tilde{m}$ and $n=\ell\cdot\tilde{n}$, and therefore $a=d\ell\tilde{m}$ and $b=d\ell\tilde{n}$. But then $d\ell$ divides both $a$ and $b$; but if $\ell>1$, then $d\ell>d$, contradicting the assumption that $d$ was the greatest common divisor. So, it must be the case that $\ell=1$.

Nick Peterson
  • 32,430
4

$d\mid a,b,\,\ c\mid \overbrace{a/d}^{\large m},\,\overbrace{b/d}^{\large n} \ \overset{\large \times\,d}\Rightarrow\, cd\mid a,b\,\Rightarrow\!\!\!\!\!\!\!\!\!\overbrace{cd\,\le\, \gcd(a,b),}^{\large \rm gcd\ =\ {\bf max}\ common\ divisor}\!\!\!\!\!\!\!\!\!$ so $\,d=\gcd(a,b)\, \Rightarrow\, c = 1.\ \ $ QED

Remark $ $ This is a special case of the GCD Distributive Law $\ (ac,bc) = (a,b)c.\,$ Applied here we deduce $\ d = (md,nd) = (m,n)d\iff (m,n) = 1.$

Bill Dubuque
  • 272,048