Enter two numbers to find their greatest common factor using Euclid's algorithm.
The Euclidean algorithm is an efficient method for computing the greatest common factor (GCF) of two numbers. It's based on the principle that the greatest common factor of two numbers is also the greatest common factor of the smaller number and the remainder of the larger number divided by the smaller number.
The Euclidean algorithm can be expressed as:
\[ GCF(a,b) = GCF(b, a \bmod b) \]Where:
Let's find the GCF of 48 and 18 using the Euclidean algorithm:
The last non-zero remainder is 6, so the GCF of 48 and 18 is 6.
This diagram illustrates the steps of the Euclidean algorithm for finding the GCF of 48 and 18.