Greatest Common Divisors

The greatest common divisor (GCD) of two integers and is defined to be the largest integer that divides both and with no remainder. For example, the GCD of 16 and 28 is 4. In chapter 2, when we investigate how to implement rational-number arithmetic, we will need to be able to compute GCDs in order to reduce rational numbers to lowest terms. (To reduce a rational number to lowest terms, we must divide both the numerator and the denominator by their GCD. For example, 16/28 reduces to 4/7.) One way to find the GCD of two integers is to factor them and search for common factors, but there is a famous algorithm that is much more efficient.

The idea of the algorithm is based on the observation that, if is the remainder when is divided by , then the common divisors of and are precisely the same as the common divisors of and . Thus, we can use the equation

to successively reduce the problem of computing a GCD to the problem of computing the GCD of smaller and smaller pairs of integers. For example,

reduces to , which is 2. It is possible to show that starting with any two positive integers and performing repeated reductions will always eventually produce a pair where the second number is 0. Then the GCD is the other number in the pair. This method for computing the GCD is known as Euclid's Algorithm.1

It is easy to express Euclid's Algorithm as a function:

(defun gcd (a b)
  (if (== b 0)
      a
      (gcd b (rem a b))))

This generates an iterative process, whose number of steps grows as the logarithm of the numbers involved.

The fact that the number of steps required by Euclid's Algorithm has logarithmic growth bears an interesting relation to the Fibonacci numbers:

Lamé's Theorem: If Euclid's Algorithm requires steps to compute the GCD of some pair, then the smaller number in the pair must be greater than or equal to the th Fibonacci number.2

We can use this theorem to get an order-of-growth estimate for Euclid's Algorithm. Let be the smaller of the two inputs to the function. If the process takes steps, then we must have . Therefore the number of steps grows as the logarithm (to the base ) of . Hence, the order of growth is .


1. Euclid's Algorithm is so called because it appears in Euclid's Elements (Book 7, ca. 300 B.C.). According to Knuth (1973), it can be considered the oldest known nontrivial algorithm. The ancient Egyptian method of multiplication (exercise 1.18) is surely older, but, as Knuth explains, Euclid's algorithm is the oldest known to have been presented as a general algorithm, rather than as a set of illustrative examples.
2. This theorem was proved in 1845 by Gabriel Lamé, a French mathematician and engineer known chiefly for his contributions to mathematical physics. To prove the theorem, we consider pairs , where , for which Euclid's Algorithm terminates in steps. The proof is based on the claim that, if are three successive pairs in the reduction process, then we must have . To verify the claim, consider that a reduction step is defined by applying the transformation , remainder of divided by . The second equation means that for some positive integer . And since must be at least 1 we have . But in the previous reduction step we have . Therefore, . This verifies the claim. Now we can prove the theorem by induction on k, the number of steps that the algorithm requires to terminate. The result is true for , since this merely requires that be at least as large as . Now, assume that the result is true for all integers less than or equal to and establish the result for . Let be successive pairs in the reduction process. By our induction hypotheses, we have and . Thus, applying the claim we just proved together with the definition of the Fibonacci numbers gives , which completes the proof of Lamé's Theorem.