May 28, 2017

GCD and Euclidean Algorithm

This is a custom description for SEO and Open Graph purposes, rather than the default generated excerpt. Simply add a description field to the frontmatter.

Suppose we have two integers aa and bb. We say that the number dd is the greatest common divisor of aa and bb if and only if, dad \mid a and dbd \mid b and if cac \mid a and cbc \mid b, then cdc \leq d. Condition 11 says that dd is a common divisor of aa and bb, and condition 22 says that it is the greatest such divisor.

Note that if aa and bb are not both zero, then the set of common divisors of aa and bb is a set of integers that is bounded above by the largest of aa, bb, a-a, and b-b. Hence, from the well ordering principle for the integers, the set has a largest element, so the greatest common divisor of aa and bb exists and is unique. Note that gcd(0,0)gcd(0,0) is not defined, and when gcd(a,b)gcd(a,b) is defined, then it is positive. In fact, gcd(a,b)1gcd(a, b) \geq 1 because 1a1 \mid a and 1b1 \mid b for all aa and bb.

Properties of GCD

  • gcd(a,0)=agcd(a, 0) = |a|
  • gcd(a,b)=gcd(b,a)gcd(a, b) = gcd(b, a)
  • gcd(a,gcd(b,c))=gcd(gcd(a,b),c)gcd(a, gcd(b, c)) = gcd(gcd(a, b), c)
  • gcd(a+mb,b)=gcd(a,b)gcd(a + mb, b) = gcd(a, b)
  • gcd(ca,cb)=cgcd(a,b)gcd(ca, cb) = c * gcd(a, b)
  • gcd(a,b)=gcd(ab,b)gcd(a, b) = gcd(a - b, b)
  • gcd(a,b)=gcd(b,amodb)gcd(a, b) = gcd(b, a \mod b)
  • If mam \mid a and mbm \mid b then gcd(a/m,b/m)=gcd(a,b)/mgcd(a/m, b/m) = gcd(a, b)/m
  • If gcd(a,b)=dgcd(a, b) = d, then gcd(a/d,b/d)=1gcd(a/d, b/d) = 1
  • Every common divisor of aa and bb is also a divisor of gcd(a,b)gcd(a, b)
  • If gcd(a,b)=dgcd(a, b) = d, then there exists integers x,yx, y such that ax+by=dax + by = d

Mathematical Proofs

If a and b are not both 0, and let d=gcd(a,b)d = gcd(a, b). Then dd is the smallest positive integer that can be expressed as a linear combination of aa and bb, d=sa+tbd = sa+tb.

The set of all linear combinations of aa and bb contains a smallest integer mm such that, m=sa+tbm = sa+tb. On the right hand side of the equation we see that dsad \mid sa abd dtbd \mid tb. Hence, in the left hand side, dmd \mid m. The smallest integer that dd can divide is dd. So, m=dm = d. So, dd is the smallest positive integer that can be expressed as a linear combination of aa and bb. It is known as Bézout's identity.

If cc is any common divisor of aa and bb, then cc divides gcd(a,b)gcd(a, b).

Let d=gcd(a,b)d = gcd(a, b). Now we can express dd as a linear combination, d=sa+tbd = sa + tb. Since, the right hand side is divisible by cc (cac \mid a and cbc \mid b), in the left hand side cc must divide dd.

gcd(ca,cb)gcd(ca, cb) is the same as c×gcd(a,b)c\times gcd(a, b)

Let d=gcd(a,b)d = gcd(a, b). So we can say, dad \mid a and dbd \mid b, which implies dcad \mid ca and dcbd \mid cb. Hence dccadc \mid ca and dccbdc \mid cb. As dd is the greatest common divisor of a,ba, b, we can say that dcdc is the greatest common divisor of ca,cbca, cb. So, gcd(ca,cb)=dc=c×gcd(a,b)gcd(ca, cb) = dc = c \times gcd(a, b)

If mam \mid a and mbm \mid b then gcd(a/m,b/m)=gcd(a,b)/mgcd(a/m, b/m) = gcd(a, b)/m

Let d=gcd(a,b)d = gcd(a, b), since mam \mid a and mbm \mid b, so mm is common divisor of aa and bb and mdm \leq d. We have to prove that gcd(a/m,b/m)=d/mgcd(a / m, b / m) = d / m. From d=sa+tbd = sa + tb, it follows that mdm \mid d. We know that gcd(ca,cb)gcd(ca, cb) is the same as c×gcd(a,b)c\times gcd(a, b). Hence, gcd(a/m,b/m)=1m×gcd(a,b)gcd(a/m, b/m) = \frac{1}{m} \times gcd(a, b)

If d=gcd(a,b)d = gcd(a, b) then gcd(a/d,b/d)=1gcd(a / d, b / d) = 1

Let us assume that, gcd(a/d,b/d)=1gcd(a / d, b / d) = 1. We know that gcd(ca,cb)gcd(ca, cb) is the same as c×gcd(a,b)c\times gcd(a, b). Hence, gcd(a,b)=dgcd(a/d,b/d)gcd(a, b) = d * gcd( a / d, b / d ). In order to satisfy the equation gcd(a/d,b/d)gcd(a / d, b / d) must be equal to 11.

gcd(a,b)gcd(a, b) is equal gcd(b,amodb)gcd(b, a \mod b)

Let d=gcd(a,b)d = gcd(a, b). We know that since dad \mid a and dbd \mid b, it follows from b=qa+rb = qa + r that drd \mid r. Thus dd is a common divisor of aa and rr. Now we need to make sure that dd is the greatest of all common divisors of aa and rr. Let cc be a common divisor of aa and rr. From b=qa+rb = qa + r, if cac \mid a and crc \mid r, then also cbc \mid b. Now cdc \leq d, because dd is the largest of all common divisors. So we can conclude that gcd(a,b)gcd(a, b) = gcd(b,amodb)=gcd(b,r)gcd(b, a \mod b) = gcd(b, r) where r=amodbr = a \mod b.

Prime Factorization to Compute GCD

If we have two integers a,ba, b and we can find gcd(a,b)gcd(a, b) from the prime factorization of a,ba, b. Suppose a=2a1×3a2×5a3...a = 2^{a_1} \times 3^{a_2} \times 5^{a_3}... and b=2b1×3b2×5b3...b = 2^{b_1} \times 3^{b_2} \times 5^{b_3}..., then we can write a×b=2a1+b1×3a2+b2×5a3+b3...a \times b = 2^{a_1 + b_1} \times3^{a_2+b_2} \times5^{a_3 + b_3}.... Now, if we take the min(ai,bi)min(a_i, b_i) for each pip_i we get the common portion for that pip_i. In this way, we can keep multiplying the common portions to get gcd(a,b)gcd(a, b). Thus mathematically if ab=p1a1+b1×p2a2+b2×p3a3+b3××pnan+bnab = p_1^{a_1 + b_1} \times p_2^{a_2 + b_2} \times p_3^{a_3 + b_3} \times \dots \times p_n^{a_n + b_n} then, gcd(a,b)=pimin(ai,bi)gcd(a, b) = \prod p_i^{min(a_i , b_i)}

Euclidean Algorithm to Compute GCD

One of the ways to compute the GCD of two integers is to list down the divisors of aa and bb 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)O(log_2n). This algorithm is based on the fact that when a=bq+ra = bq + r, then we can say that gcd(a,b)=gcd(b,r)gcd(a, b) = gcd(b, r). We know from the division algorithm, a=bq+ra = bq + r, where rr is the remainder when aa is divided by bb. So, r=amodbr = a \mod b.

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)d = gcd(a, b). From the division algorithm we know that a=bq+ra = bq + r. We know, dad \mid a and dbd \mid b, which implies that drd \mid r. Again let cc is any common divisor of bb and rr, then we know cbc \mid b and crc \mid r which implies cac \mid a. Both parts of the definition of GCD are satisfied and hence Thus gcd(a,b)=gcd(b,r)gcd(a, b) = gcd(b, r) where r=amodbr = a \mod b. Let's now implement the algorithm. As we have seen, gcd(a,b)=gcd(b,amodb)gcd(a, b) = gcd(b, a \mod b) which is a recurrence relation and this relation can be used to calculate GCD of two integers recursively. When we reach b=0b = 0, we can say that gcd(a,0)=agcd(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