vote up 7 vote down star

How do you calculate the least common multiple of multiple numbers?

So far I've only been able to calculate it between two numbers. But have no idea how to expand it to calculate 3 or more numbers.

So far this is how I did it

LCM = num1 * num2 /  gcd ( num1 , num2 )

With gcd is the function to calculate the greatest common divisor for the numbers. Using euclidean algorithm

But I can't figure out how to calculate it for 3 or more numbers.

flag

47% accept rate
Shouldn't that be "3 or more numbers"? – Chris Charabaruk Sep 29 '08 at 4:45
oops.. thanks.. edited the post – paan Sep 29 '08 at 4:51
1  
please don't tag this as homework. I'm trying to find a way to fit multiple pieces of metal sheets onto a plate and need to find a way to fit different length metal on the same plate. LCM and GCD is the best way to do this. I'ma programmer not a math guy. THat's why I asked. – paan Sep 29 '08 at 8:45

2 Answers

vote up 16 vote down check

You can compute the LCM of more than two numbers by iteratively computing the LCM of two numbers, i.e.

lcm(a,b,c) = lcm(a,lcm(b,c))
link|flag
thanks. That done it for me – paan Sep 29 '08 at 4:53
Ooooh textbook recursion :) – Peter Wone Sep 30 '08 at 13:24
vote up 2 vote down

In Python (modified primes.py):

def gcd(a, b):
    """Return greatest common divisor using Euclid's Algorithm."""
    while b:      
        a, b = b, a % b
    return a

def lcm(a, b):
    """Return lowest common multiple."""
    return a * b // gcd(a, b)

def lcmm(*args):
    """Return lcm of args."""   
    return reduce(lcm, args)

Usage:

>>> lcmm(100, 23, 98)
112700
>>> lcmm(*range(1, 20))
232792560

reduce() works something like that:

def reduce(callable, iterable, ini=None):
    iterable = iter(iterable)

    ret = iterable.next() if ini is None else ini

    for item in iterable:
        ret = callable(ret, item)

    return ret
link|flag
I'm not familiar with python, what does reduce() do? – paan Sep 29 '08 at 4:49
Given a function f and a list l = [a,b,c,d], reduce(f,l) returns f(f(f(a,b),c),d). It's the functional implementation of "lcm can be computed by iteratively computing the lcm of the current value and the next element of the list." – A. Rex Sep 29 '08 at 4:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.