Least common multiple/Student Level

From Citizendium
Jump to navigation Jump to search
This article is developing and not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
Student Level [?]
 
Elementary commentary for beginners relating to the topic of Least common multiple.

In arithmetic, the least common multiple (LCM or lcm) or smallest common multiple of several integers is the smallest positive integer that is a multiple of each of them. In algebra, one may also speak of the least common multiple of several polynomials or of other, yet more abstract, objects.

For example, the smallest common multiple of 9 and 12 is 36. Since

36 = 12 × 3, and
36 = 9 × 4,

36 is indeed a multiple of both 9 and 12. Moreover it is the smallest multiple that 9 and 12 have in common. One sometimes writes "lcm(12, 9) = 36".

One use of the smallest common multiple is as the smallest common denominator when adding, subtracting, or comparing fractions:

A simple theoretical question and a primitive algorithm

A simple theoretical question is whether two integers must have any multiples in common. Imagine that we begin lists of the multiples of two integers, e.g. 63 and 77:

One could wonder whether the two lists might continue forever without any number appearing in both lists. Before addressing that, let us note in the interest of simplicity that we need not perform a multiplication at each step in extending the list; we need only add:

Could the lists continue forever without any number appearing in both? The answer is that the 77th number in the first list must be equal to the 63rd number in the second list, since both are equal to 63 × 77 = 4851. But that need not be the first number appearing in both lists. It is a common multiple of 63 and 77, but as we shall see, it is not the smallest common multiple. Continuing the list only slightly further we get this:

Thus the smallest common multiple of 63 and 77 is 693.

More sophisticated algorithms

But this brute-force approach to computing the smallest common multiple is not efficient.

Prime factorizations

One more efficient method uses prime factorizations. Consider the factorizations of 63 and 77 into prime numbers:

63 = 3 × 3 × 7,
77 = 7 × 11.

In any common multiple of 63 and 77, each prime factor must occur at least as many times as it does in either 63 or 77. Thus we need at least two 3s, at least one 7, and at least one 11. If we have only that many of each factor, then the common multiple that we get is the smallest possible:

3 × 3 × 7 × 11 = 693.

Now consider the problem of finding the smallest common multiple of 6600, 3276, and 7938. We begin by completely factoring each of these numbers:

6600 = 2 × 2 × 2 × 3 × 5 × 5 × 11,
3276 = 2 × 2 × 3 × 3 × 7 × 13,
7938 = 2 × 3 × 3 × 3 × 3 × 7 × 7.

We need:

  • three 2s (since that many occur in the factorization of 6600);
  • four 3s (since that many occur in the factorization of 7938);
  • two 5s (since that many occur in the factorization of 6600);
  • two 7s (since that many occur in the factorization of 7938);
  • one 11 (since that many occur in the factorization of 6600);
  • one 13 (since that many occur in the factorization of 3276).

We get

23 × 34 × 52 × 72 × 11 × 13 = 113 513 400.

That is the smallest common multiple of 6600, 3276, and 7938.

A method avoiding prime factorizations

When the prime factors of a number are large, prime factorization may take a long time. One can find the smallest common multiple of two numbers by using Euclid's algorithm for finding their greatest common divisor (gcd), and then cancelling and multiplying, as follows. Suppose it is desired to find the smallest common multiple of 63 and 77. Euclid's algorithm tells us that the greatest common divisor of 63 and 77 is 7. Then the least common multiple lcm(63, 77) is

Note: Always cancel before multiplying. One can cancel the gcd (7) in the denominator with either of the two factors, 63 or 77, in the numerator, since 7 is a divisor of both factors.