Gcd VI
- Updated2025-07-30
- 2 minute(s) read
Computes the greatest common divisor of the input values.

Inputs/Outputs
x
—
x is an integer.
y
—
y is an integer.
gcd(x,y)
—
gcd(x,y) returns the greatest common divisor of x and y. |
gcd(x,y) is the largest divisor common to x and y.
To compute gcd(x,y), consider the prime factorizations of x and y:
x = Πi piai y = Πi pibiwhere pi are all the prime factors of x and y. If pi does not occur in a factorization, the corresponding exponent is 0. gcd(x,y) then is given by:
gcd(x,y) = Πi pimin(ai , bi)For example, the prime factorizations of 12 and 30 are given by:
12 = 2² × 31 × 50 30 = 21 × 31 × 51so
gcd(12, 30) = 21 × 31 × 50 = 6
x
—
gcd(x,y)
—