Number Theory, Greatest Common Divisor (GCD) and Least Common Multiple (LCM), Euclidean Algorithm

The Euclidean Algorithm is an efficient method for computing the greatest common divisor (GCD) of two integers. It's based on the principle that `\text{GCD}(a, b) = \text{GCD}(b, a \pmod{b})`. Questions involve applying the algorithm and understanding its use, including the extended version for linear Diophantine equations.