I am having problems solving this problem with greatest common divisors: What is the greatest common divisor of $11n+4$ and $7n +2$?
I tried Euclidean algorithm, and I tried to deduce the answer and I tried to incorporate
$$\gcd(a,b)\cdot\mathrm{lcm}(a,b)=|ab|$$
Let use that
$$\gcd(a,b)=\gcd(a,a-b)$$
that is
$$\gcd(11n+4,7n+2)=\gcd(4n+2,7n+2)=\gcd(4n+2,3n)=\gcd(n+2,3n)=\gcd(n+2,2n-2)=\gcd(n+2,n-4)=\gcd(6,n-4)$$
then $\gcd_{MAX}=6$.