Binary GCD algorithm
In-game article clicks load inline without leaving the challenge.

The binary GCD algorithm, also known as Stein's algorithm or the binary Euclidean algorithm, is an algorithm that computes the greatest common divisor (GCD) of two nonnegative integers. Stein's algorithm uses simpler arithmetic operations than the conventional Euclidean algorithm; it replaces division with arithmetic shifts, comparisons, and subtraction.
Although the algorithm in its contemporary form was first published by the physicist and programmer Josef Stein in 1967, it was known by the 2nd century BCE, in ancient China.
Algorithm
The algorithm finds the GCD of two nonnegative numbers u {\displaystyle u} and v {\displaystyle v} by repeatedly applying these identities:
- gcd ( u , 0 ) = u {\displaystyle \gcd(u,0)=u}: everything divides zero, and u {\displaystyle u} is the largest number that divides u {\displaystyle u}.
- gcd ( 2 u , 2 v ) = 2 ⋅ gcd ( u , v ) {\displaystyle \gcd(2u,2v)=2\cdot \gcd(u,v)}: 2 {\displaystyle 2} is a common divisor.
- gcd ( u , 2 v ) = gcd ( u , v ) {\displaystyle \gcd(u,2v)=\gcd(u,v)} if u {\displaystyle u} is odd: 2 {\displaystyle 2} is then not a common divisor.
- gcd ( u , v ) = gcd ( u , v − u ) {\displaystyle \gcd(u,v)=\gcd(u,v-u)} if u , v {\displaystyle u,v} odd and u ≤ v {\displaystyle u\leq v}.
As GCD is commutative (gcd ( u , v ) = gcd ( v , u ) {\displaystyle \gcd(u,v)=\gcd(v,u)}), those identities still apply if the operands are swapped: gcd ( 0 , v ) = v {\displaystyle \gcd(0,v)=v}, gcd ( 2 u , v ) = gcd ( u , v ) {\displaystyle \gcd(2u,v)=\gcd(u,v)} if v {\displaystyle v} is odd, etc.
Implementation
While the above description of the algorithm is mathematically correct, the binary GCD algorithm performs more loop iterations that the Euclidean one, so it only offers a performance advantage if those iterations are substantially faster. Performant software implementations typically differ from it in a few notable ways:
- eschewing repeated trial division by 2 {\displaystyle 2} in favour of the count trailing zeros primitive and a single bit shift, which is functionally equivalent to repeatedly applying identity 3, but much faster;
- expressing the algorithm iteratively rather than recursively: the resulting implementation can be laid out to avoid repeated work, invoking identity 2 at the start and maintaining as invariant that both numbers are odd upon entering the loop, which only needs to implement identities 3 and 4; and
- making the loop's body branch-free except for its exit condition
v == 0: unpredictable branches can have a large, negative impact on performance.
The following is an implementation of the algorithm in C. After the shift at the top of the main loop, the variables u and v hold the values (u-1)/2 and (v-1)/2. This elimination of the least-significant bit leaves room for the signed difference u-v to be computed on the next line without overflow.
The following is an implementation of the algorithm in Rust exemplifying those differences, adapted from . The conditional exchange of u {\displaystyle u} and v {\displaystyle v} (ensuring u ≤ v {\displaystyle u\leq v}) compiles down to conditional moves;:
Note: The implementation above accepts unsigned (non-negative) integers; given that gcd ( u , v ) = gcd ( ± u , ± v ) {\displaystyle \gcd(u,v)=\gcd(\pm {}u,\pm {}v)}, the signed case can be handled as follows:
Complexity
Asymptotically, the algorithm requires O ( n ) {\displaystyle O(n)} steps, where n {\displaystyle n} is the number of bits in the larger of the two numbers, as every two steps reduce at least one of the operands by at least a factor of 2 {\displaystyle 2}. Each step involves only a few arithmetic operations (O ( 1 ) {\displaystyle O(1)} with a small constant); when working with word-sized numbers, each arithmetic operation translates to a single machine operation, so the number of machine operations is on the order of n {\displaystyle n}, i.e. log 2 ( max ( u , v ) ) {\displaystyle \log _{2}(\max(u,v))}.
For arbitrarily large numbers, the asymptotic complexity of this algorithm is O ( n 2 ) {\displaystyle O(n^{2})}, as each arithmetic operation (subtract and shift) involves a linear number of machine operations (one per word in the numbers' binary representation). If the numbers can be represented in the machine's memory, i.e. each number's size can be represented by a single machine word, this bound is reduced to: O ( n 2 log 2 n ) {\displaystyle O\left({\frac {n^{2}}{\log _{2}n}}\right)}
This is the same as for the Euclidean algorithm, though a more precise analysis by Akhavi and Vallée proved that binary GCD uses about 60% fewer bit operations.
Extensions
The binary GCD algorithm can be extended in several ways, either to output additional information, deal with arbitrarily large integers more efficiently, or to compute GCDs in domains other than the integers.
The extended binary GCD algorithm, analogous to the extended Euclidean algorithm, fits in the first kind of extension, as it provides the Bézout coefficients in addition to the GCD: integers a {\displaystyle a} and b {\displaystyle b} such that a ⋅ u + b ⋅ v = gcd ( u , v ) {\displaystyle a\cdot {}u+b\cdot {}v=\gcd(u,v)}.
In the case of large integers, the best asymptotic complexity is O ( M ( n ) log n ) {\displaystyle O(M(n)\log n)}, with M ( n ) {\displaystyle M(n)} the cost of n {\displaystyle n}-bit multiplication; this is near-linear and vastly smaller than the binary GCD algorithm's O ( n 2 ) {\displaystyle O(n^{2})}, though concrete implementations only outperform older algorithms for numbers larger than about 64 kilobits (i.e. greater than 8×1019265). This is achieved by extending the binary GCD algorithm using ideas from the Schönhage–Strassen algorithm for fast integer multiplication.
The binary GCD algorithm has also been extended to domains other than natural numbers, such as Gaussian integers, Eisenstein integers, quadratic rings, and integer rings of number fields.
Historical description
An algorithm for computing the GCD of two numbers was known in ancient China, under the Han dynasty, as a method to reduce fractions:
If possible halve it; otherwise, take the denominator and the numerator, subtract the lesser from the greater, and do that alternately to make them the same. Reduce by the same number.
— Fangtian – Land surveying, The Nine Chapters on the Mathematical Art
The phrase "if possible halve it" is ambiguous,
- if this applies when either of the numbers become even, the algorithm is the binary GCD algorithm;
- if this only applies when both numbers are even, the algorithm is similar to the Euclidean algorithm.
See also
Further reading
- Knuth, Donald (1998). "§4.5 Rational arithmetic". Seminumerical Algorithms. The Art of Computer Programming. Vol. 2 (3rd ed.). Addison-Wesley. pp. 330–417. ISBN 978-0-201-89684-8.
Covers the extended binary GCD, and a probabilistic analysis of the algorithm.
- Cohen, Henri (1993). "Chapter 1 : Fundamental Number-Theoretic Algorithms". . Graduate Texts in Mathematics. Vol. 138. Springer-Verlag. pp. 12–24. ISBN 0-387-55640-0.
Covers a variety of topics, including the extended binary GCD algorithm which outputs Bézout coefficients, efficient handling of multi-precision integers using a variant of Lehmer's GCD algorithm, and the relationship between GCD and continued fraction expansions of real numbers.
- Vallée, Brigitte (September–October 1998). . Algorithmica. 22 (4): 660–685. doi:. S2CID . Archived from (PS) on 13 May 2011.
An analysis of the algorithm in the average case, through the lens of functional analysis: the algorithms' main parameters are cast as a dynamical system, and their average value is related to the invariant measure of the system's transfer operator.
External links
- at cut-the-knot
- (1976), a paper by Richard P. Brent, including a variant using left shifts