Definition. If m and n are integers, not
both 0, the greatest common divisor
of
m and n is the largest integer which divides m and n.
is
undefined. I'll often get lazy and abbreviate "greatest common
divisor" to "gcd".
Example. ( Greatest common divisors for small integers) The largest integer which divides 4 and 6 is 2:
The largest integer which divides -6 and 15 is 3:
The largest integer which divides 42 and 0 is 42:
Finally, the largest integer which divides 24 and 25 is 1:
Here are some easy properties of the greatest common divisor.
Proposition. Let
, and
suppose a and b aren't both 0.
(a)
exists, and
.
(b)
.
(c) If
, then
.
(d)
.
Proof. (a)
and
, so the set of positive common divisors of a and b
is nonempty.
Let d be a positive common divisor of a and b. At least one of a, b
is nonzero; suppose without loss of generality\footnote*{The phrase
"without loss of generality" means that if you made a
different choice --- in this case, if
--- the proof would go in
essentially the same way.} that
. If
, then
, so
Thus, the set of positive common divisors of a and b is a nonempty
set which is bounded above (by
), so it must have a largest
element. It is clear that the largest element is
;
since
is a positive integer,
.
(b) The largest integer which divides both a and b is the same as the largest integer which divides both b and a.
(c) Suppose
.
, since
;
, since
. Thus,
is a common divisor of a and 0.
On the other hand, suppose d is a common divisor of a and 0. Since d
divides a and a divides
(since
), it follows that
. If d is positive, an earlier result implies that
; if d is negative, then obviously
. In either case,
.
Thus,
is the greatest common divisor of a and 0.
(d) If one of the numbers --- say b --- is equal to 0, then
Assume both a and b are nonzero.
If
, then
implies
. Likewise,
implies
. Therefore, a common divisor of a
and b is a common divisor of
and
.
If
, then
implies
. Likewise,
implies
. Therefore, a common divisor of
and
is a common divisor of a and b.
I've proved that the set of common divisors of a and b is the {\it
same} as the set of common divisors of
and
.
Since the two sets are the same, they must have the same largest
element --- that is,
.
I'll use the Division Algorithm to derive a method for computing the greatest common divisor of two numbers. The idea is to perform the Division Algorithm repeatedly until you get a remainder of 0. First, I need a lemma; the proof is similar to the proof of the last part of the preceding proposition.
Lemma. If a and b are integers, not both 0, and k is an integer, then
Proof. If d divides a and b, then d divides
, so d divides
. Thus, d is a common divisor of
and b.
If d divides
and b, then d divides
, so
d divides
. Thus, d is a common divisor of a and b.
I've proved that the set of common divisors of a and b is the {\it
same} as the set of common divisors of
and b. Since the
two sets are the same, they must have the same largest element ---
that is,
.
Theorem. ( The Euclidean
Algorithm) Let
, and suppose
. Define
,
, ... and
,
,
... by recursively applying the Division Algorithm:
Then:
(a) The process will terminate with
for some n.
(b) At the point when the process terminates,
.
Proof. There is no question that I can apply
the Division Algorithm as described above, as long as
.
First, I'll show that the process terminates with
for some n.
Note that
is a decreasing sequence of
nonnegative integers. The well-ordering principle implies that this
sequence cannot be infinite. Since the only way the process can stop
is if a remainder is 0, I must have
for some n.
Suppose
is the first remainder that is 0. I want to show
.
At any stage, I'm starting with
and
and producing
and
using the Division Algorithm:
Since
, the previous lemma implies that
This means that
In other words, each step leaves the greatest common divisor of the
pair of a's unchanged. Thus,
.
Example. ( Using the
Euclidean algorithm to find a greatest common divisor) To find
, write:
To save writing --- and to anticipate the setup I'll use for the Extended Euclidean Algorithm later --- I'll arrange the computation in a table:
The greatest common divisor is the last nonzero remainder (a). Hence,
.
Terminology. If a and b are things, a linear combination of a and b is something of the
form
, where s and t are numbers. (The kind of
"number" depends on the context.)
The next result is a key fact about greatest common divisors.
Theorem. ( Extended
Euclidean Algorithm)
is a linear combination of a and
b:
for some integers s and t.
Warning: s and t are not unique.
Proof. The proof will actually give an algorithm which constructs a linear combination. It is called a backward recurrence, and is due to S. P. Glasby [2]. It will look a little complicated, but you'll see that it's really easy to use in practice.
is only defined if at least one of a, b is nonzero.
If
,
and
. This
proves the result if one of the numbers is 0, so I may as well assume
both are nonzero. Moreover, since
, I can
assume both numbers are positive.
Suppose
. Apply the Euclidean Algorithm to
and
, and suppose that
is the last
nonzero remainder:
I'm going to define a sequence of numbers
,
, ...
,
. They will be constructed
recursively, starting with
,
and working downward to
.
(This is why this is called a backward recurrence.)
Define
and
. Then define
Now I claim that
I will prove this by downward induction, starting with
and working downward to
.
For
, I have
The result holds for
.
Next, suppose
. Suppose the result holds for
, i.e.
I want to prove the result for k. Substitute
in the preceding equation and simplify:
This proves the result for k, so the result holds for
, by downward induction.
In particular, for
, the result says
Since
, I've expressed
as a linear
combination of
and
.
Remark. There are many algorithms (like the one in the proof) which produce a linear combination. This one is pretty good for small computations which you're doing by hand.
One drawback of this algorithm is that you need to know all of the
quotients (the q's) in order to work backwards to get the linear
combination. This isn't bad for small numbers, but if you're using
large numbers on a computer, you'll need to store all the
intermediate results. There are algorithms which are better if you're
doing large computations on a computer (see [1], page 300).
It's difficult to overemphasize the importance of this result! It has many applications --- from proving results about greatest common divisors, to solving Diophantine equations. I'll give some examples which illustrate the result, then discuss how you use the algorithm in the theorem.
Example. ( A linear
combination for a greatest common divisor) Let
. a and b are relatively prime
if
. For example, 12 and 25 are relatively prime.
The previous result implies that if a and b are relatively prime,
then it's possible to find numbers s and t such that
. For example,
. Note that
, so a and
b are not unique.
Example. ( Finding a linear
combination by algebra) It's possible --- but tedious --- to use
the computations in the Euclidean algorithm to find linear
combinations. Here's the computation for
:
The third equation says
.
By the second equation,
, so
The first equation says
, so
I've expressed the greatest common divisor 3 as a linear combination of the original numbers 51 and 36.
I don't recommend this approach, since the proof of the Extended
Euclidean Algorithm gives a method which is much easier.
Example. ( Finding a linear combination using the backward recursion) In this example, I'll show how you can use the algorithm in the proof to obtain a linear combination. I'll arrange the computations in the form of a table; the table is simply an extension of the table I used for the Euclidean algorithm.
Here's how you start:
(You can save a step by putting the larger number first.)
The a and q columns are filled in using the Euclidean algorith, i.e. by successive division: Divide the next-to-the-last a by the last a. The quotient goes into the q-column, and the remainder goes into the a-column.
When the division comes out evenly, you stop adding rows to the table. In this case, 85 divided by 17 is 5, and the remainder is 0.
The last entry in the a-column is the greatest common divisor. Thus,
.
Having filled in the a and q columns, you now fill in the y-column from bottom to top. You always start in the same way: The last y is always 0 and the next-to-the-last y is always 1:
Then, working from bottom to top, fill in the y's using the rule
This comes from the recursion formula
in the Extended Euclidean Algorithm Theorem.
It's probably easier to show than it is to explain:
To get the linear combination, form the products of the top two a's and y's diagonally and subtract one from the other:
Thus,
How do you know the order for the subtraction? The proof gives a formula, but the easiest thing is to pick one of the two ways, then fix it if it isn't right. If you subtract "the wrong way", you'll get a negative number. For example,
Since I know the greatest common divisor should be 17 --- it's the last number in the a-column --- I just multiply this equation by -1:
This way, you don't need to memorize the exact formula.
Example. ( Finding a linear
combination using the backward recursion) Compute
and express it as a linear combination of 246 and
194.
Thus,
Example. ( The converse of
the linear combination result) The converse of the linear
combination result is not always true. That is, if
for some numbers s and t, it's not necessarily true
that
.
For example,
. But
, since I know from an earlier example that
.
There's an important situation in which the linear combination result does work backwards: namely, when the greatest common divisor is 1. The next result makes this precise, and also shows how you can use the linear combination rule to prove results about greatest common divisors.
Proposition. Let
. Then
if and only if
Proof. The greatest common divisor of a and
b can be written as a linear combination of a and b. Therefore, if
, then
for some
.
Conversely, suppose that
for some
.
divides a and
divides b, so
divides
. But
is a positive integer, and the only
positive integer that divides 1 is 1. Therefore,
.
Example. ( Using a linear
combination to prove relative primality) Prove that if k is any
integer, then the fraction
is in lowest
terms.
For example, if
, the fraction is
, which
is in lowest terms.
A fraction is in lowest terms if the numerator and denominator are
relatively prime. So I want to show that
and
are relatively prime.
I'll use the previous result, noting that
(I found the coefficients by playing with numbers, trying to make the k-terms cancel to start. You can do this more systematically using the Extended Euclidean Algorithm, which I'll discuss next.)
Since a linear combination of
and
equals 1, the last
proposition shows that
and
are relatively
prime.
The linear combination rule is often useful in proofs involving greatest common divisors. If you're proving a result about a greatest common divisor, consider expressing the greatest common divisor as a linear combination of the two numbers.
Example. ( The greatest
common divisor is divisible by any common divisor) Let a and b
be integers, not both 0. If
and
, then
.
is a linear combination of a and b, so
Now
and
, so
.
was defined to be the greatest common
divisor of a and b, in the sense that it was the largest
common divisor of a and b. The last lemma shows that you can take
greatest in a different sense --- namely, that
must be divisible by any other common divisor of a and
b.
Example. ( Using the linear
combination result to prove a greatest common divisor property)
Prove that if
and
, then
.
Since
,
Multiplying by k, I get
and
, so
.
On the other hand,
and
, so
.
Since k and
are positive integers,
.
[1] Alfred Aho, John Hopcroft, and Jeffrey Ullman, The Design and Analysis of Computer Algorithms. Reading, Massachusetts: Addison-Wesley Publishing Company, 1974.
[2] S. P. Glasby, Extended Euclid's algorithm via backward recurrence relations, Mathematics Magazine, 72(3)(1999), 228--230.
Send comments about this page to: bikenaga@marauder.millersville.edu.
Last updated: September 7, 2008
Millersville University Home Page
Copyright 2007 by Bruce Ikenaga