Given $\gcd (a,b,c)=12$, find $\gcd (a,b ,c,16)$

482 Views Asked by At

Given $\gcd (a,b,c)=12$, find $\gcd (a,b ,c,16)$ I need the rule or algorithm to solve similar questions. Is that $16 \bmod 12 = 4$ will be the new gcd of $(a,b ,c,16)$.

1

There are 1 best solutions below

0
On BEST ANSWER

Yes, more precisely, since gcd is associative we have

$$\begin {align} \gcd(a,b,c,\,16) &= \gcd(\gcd(a,b,c),\,16)\\ &= \gcd(12,16)\\ &= \gcd(12,\,16\bmod 12))\ \ \rm by\ Euclid\\ &= \gcd(12,4) = 4\end{align}\qquad$$