Lehmer's GCD algorithm

From Wikipedia, the free encyclopedia

Lehmer's GCD algorithm is a rather fast GCD algorithm, an improvement on the simpler but slower Euclidean algorithm.

[edit] Algorithm

Lehmer noted that that most of the quotients from each step of the division part of the standard algorithm are small. (For example, Knuth observed that the quotients 1, 2, and 3 comprise 67.7% of all quotients.[1])

Say we want to obtain the GCD of the two integers a and b. Let \textstyle a \ge b.

  • If b contains only one digit (in the chosen base, say β = 1000 or β = 232), use some other method, such as the Euclidean algorithm, to obtain the result.
  • If a and b differ in the length of digits, perform a division so that a and b are equal in length, with length equal to m.
  • Iterate until one of a or b is zero:
    • Decrease m by one. Let x be the leading (most significant) digit in a, x = a div βm and y the leading digit in b, y = b div βm.
    • Initialize a 2 by 3 matrix \textstyle \begin{bmatrix} A & B & x\\ C & D & y \end{bmatrix} to an extended identity matrix \textstyle \begin{bmatrix} 1 & 0 & x \\ 0 & 1 & y\end{bmatrix}, and perform the euclidean algorithm simultaneously on the pairs (x + A,y + C) and (x + B,y + D), until the quotients differ. That is, iterate:
      • Compute the quotients w1 of the long divisions of (x + A) by (y + C) and w2 of (x + B) by (y + D) respectively. Also let w be the (not computed) quotient from the current long division in the chain of long divisions of the euclidean algorithm.
      • If w1w2, then break out of the inner iteration. Else set w to w1 (or w2).
      • Set our current matrix \textstyle \begin{bmatrix} A & B & x \\ C & D & y \end{bmatrix} to \textstyle \begin{bmatrix} 0 & 1 \\ 1 & -w \end{bmatrix} \cdot \begin{bmatrix} A & B & x \\ C & D & y \end{bmatrix} = \begin{bmatrix} C & D &y \\ A - wC & B - wD & x-wy \end{bmatrix}
      • If B = 0, we have reached a deadlock; perform a normal step of the euclidean algorithm with a and b, and recompute the matrix.
    • Set a to aA + bB and b to Ca + Db (again simultaneously). This applies the steps of the euclidean algorithm that were performed on the leading digits in compressed form to the long integers a and b. Restart the outer iteration.

[edit] References

This number theory-related article is a stub. You can help Wikipedia by expanding it.