Suppose we have two integers a and b. We say that the number d is the greatest common divisor of a and b if and only if, d∣a and d∣b and if c∣a and c∣b, then c≤d. Condition 1 says that d is a common divisor of a and b, and condition 2 says that it is the greatest such divisor.
Note that if a and b are not both zero, then the set of common divisors of a and b is a set of integers that is bounded above by the largest of a, b, −a, and −b. Hence, from the well ordering principle for the integers, the set has a largest element, so the greatest common divisor of a and b exists and is unique. Note that gcd(0,0) is not defined, and when gcd(a,b) is defined, then it is positive. In fact, gcd(a,b)≥1 because 1∣a and 1∣b for all a and b.
Properties of GCD
- gcd(a,0)=∣a∣
- gcd(a,b)=gcd(b,a)
- gcd(a,gcd(b,c))=gcd(gcd(a,b),c)
- gcd(a+mb,b)=gcd(a,b)
- gcd(ca,cb)=c∗gcd(a,b)
- gcd(a,b)=gcd(a−b,b)
- gcd(a,b)=gcd(b,amodb)
- If m∣a and m∣b then gcd(a/m,b/m)=gcd(a,b)/m
- If gcd(a,b)=d, then gcd(a/d,b/d)=1
- Every common divisor of a and b is also a divisor of gcd(a,b)
- If gcd(a,b)=d, then there exists integers x,y such that ax+by=d
Mathematical Proofs
If a and b are not both 0, and let d=gcd(a,b). Then d is the smallest positive integer that can be expressed as a linear combination of a and b, d=sa+tb.
The set of all linear combinations of a and b contains a smallest integer m such that, m=sa+tb. On the right hand side of the equation we see that d∣sa abd d∣tb. Hence, in the left hand side, d∣m. The smallest integer that d can divide is d. So, m=d. So, d is the smallest positive integer that can be expressed as a linear combination of a and b. It is known as Bézout's identity.
If c is any common divisor of a and b, then c divides gcd(a,b).
Let d=gcd(a,b). Now we can express d as a linear combination, d=sa+tb. Since, the right hand side is divisible by c (c∣a and c∣b), in the left hand side c must divide d.
gcd(ca,cb) is the same as c×gcd(a,b)
Let d=gcd(a,b). So we can say, d∣a and d∣b, which implies d∣ca and d∣cb. Hence dc∣ca and dc∣cb. As d is the greatest common divisor of a,b, we can say that dc is the greatest common divisor of ca,cb. So, gcd(ca,cb)=dc=c×gcd(a,b)
If m∣a and m∣b then gcd(a/m,b/m)=gcd(a,b)/m
Let d=gcd(a,b), since m∣a and m∣b, so m is common divisor of a and b and m≤d. We have to prove that gcd(a/m,b/m)=d/m. From d=sa+tb, it follows that m∣d. We know that gcd(ca,cb) is the same as c×gcd(a,b). Hence, gcd(a/m,b/m)=m1×gcd(a,b)
If d=gcd(a,b) then gcd(a/d,b/d)=1
Let us assume that, gcd(a/d,b/d)=1. We know that gcd(ca,cb) is the same as c×gcd(a,b). Hence, gcd(a,b)=d∗gcd(a/d,b/d). In order to satisfy the equation gcd(a/d,b/d) must be equal to 1.
gcd(a,b) is equal gcd(b,amodb)
Let d=gcd(a,b). We know that since d∣a and d∣b, it follows from b=qa+r that d∣r. Thus d is a common divisor of a and r. Now we need to make sure that d is the greatest of all common divisors of a and r. Let c be a common divisor of a and r. From b=qa+r, if c∣a and c∣r, then also c∣b. Now c≤d, because d is the largest of all common divisors. So we can conclude that gcd(a,b) = gcd(b,amodb)=gcd(b,r) where r=amodb.
Prime Factorization to Compute GCD
If we have two integers a,b and we can find gcd(a,b) from the prime factorization of a,b. Suppose a=2a1×3a2×5a3... and b=2b1×3b2×5b3..., then we can write a×b=2a1+b1×3a2+b2×5a3+b3.... Now, if we take the min(ai,bi) for each pi we get the common portion for that pi. In this way, we can keep multiplying the common portions to get gcd(a,b). Thus mathematically if ab=p1a1+b1×p2a2+b2×p3a3+b3×⋯×pnan+bn then, gcd(a,b)=∏pimin(ai,bi)
Euclidean Algorithm to Compute GCD
One of the ways to compute the GCD of two integers is to list down the divisors of a and b and pick the largest one. But this naive method takes a lot of time. Another way is the Euclidean Algorithm. This is much more efficient and the time complexity of this algorithm is roughly O(log2n). This algorithm is based on the fact that when a=bq+r, then we can say that gcd(a,b)=gcd(b,r). We know from the division algorithm, a=bq+r, where r is the remainder when a is divided by b. So, r=amodb.
The division algorithm is nothing but a proof that the long divisions that we used to do in schools was right. Let’s take a look at the proof, Let d=gcd(a,b). From the division algorithm we know that a=bq+r. We know, d∣a and d∣b, which implies that d∣r. Again let c is any common divisor of b and r, then we know c∣b and c∣r which implies c∣a. Both parts of the definition of GCD are satisfied and hence Thus gcd(a,b)=gcd(b,r) where r=amodb. Let's now implement the algorithm. As we have seen, gcd(a,b)=gcd(b,amodb) which is a recurrence relation and this relation can be used to calculate GCD of two integers recursively. When we reach b=0, we can say that gcd(a,0)=a.
int gcd( int a, int b ) {
if ( b == 0 ) return a;
return gcd( b, a % b );
}
We can also implement the euclidean algorithm without recursive calls, which may reduce the recursion overhead. Thus making it a bit faster than the recursive one.
int gcd( int a, int b ) {
while( b != 0 ) {
int new_a = b;
b = a % b;
a = new_a;
}
return a;
}
Related problems
UVa 11417 - GCD
SPOJ GCD - Greatest Common Divisor
CF 664A - Complicated GCD
References
Wikipedia - Greatest Common Divisor
Khan Academy - Euclidean Algorithm