up vote 20 down vote favorite
4
share [g+] share [fb]

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.

link|improve this question

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
10  
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
Fitting small sheets into a larger sheet -- 2D bin packing ? – High Performance Mark Jan 28 '10 at 10:17
feedback

5 Answers

up vote 26 down vote accepted

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|improve this answer
thanks. That done it for me – paan Sep 29 '08 at 4:53
1  
Ooooh textbook recursion :) – Peter Wone Sep 30 '08 at 13:24
feedback

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:

>>> f = lambda a,b: "f(%s,%s)" % (a,b)
>>> print reduce(f, "abcd")
f(f(f(a,b),c),d)
link|improve this answer
I'm not familiar with python, what does reduce() do? – paan Sep 29 '08 at 4:49
3  
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
+1 for showing a solution that can adapt to more than three parameters – OnesimusUnbound Aug 4 '11 at 14:26
feedback

Here's an ECMA-style implementation:

function gcd(a, b){
    // Euclidean algorithm
    var t;
    while (b != 0){
        t = b;
        b = a % b;
        a = t;
    }
    return a;
}

function lcm(a, b){
    return (a * b / gcd(a, b));
}

function lcmm(args){
    // Recursively iterate through pairs of arguments
    // i.e. lcm(args[0], lcm(args[1], lcm(args[2], args[3])))

    if(args.length == 2){
        return lcm(args[0], args[1]);
    } else {
        var arg0 = args[0];
        args.shift();
        return lcm(arg0, lcmm(args));
    }
}
link|improve this answer
It feels bad that I don't understand what you mean by "ECMA-style" =/ – freitass Jan 10 at 12:48
feedback

I just figured this out in Haskell:

lcm' :: Integral a => a -> a -> a
lcm' a b = a`div`(gcd a b) * b
lcm :: Integral a => [a] -> a
lcm (n:ns) = foldr lcm' n ns

I even took the time to write my own gcd function, only to find it in Prelude! Lots of learning for me today :D

link|improve this answer
feedback

you can do it another way - Let there be n numbers.Take a pair of consecutive numbers and save its lcm in another array. Doing this at first iteration program does n/2 iterations.Then next pick up pair starting from 0 like (0,1) , (2,3) and so on.Compute their LCM and store in another array. Do this until you are left with one array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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