Tagged Questions
20
votes
5answers
12k views
Least common multiple for 3 or more numbers
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.
...
4
votes
4answers
2k views
How to find GCF, LCM on a set of numbers
What would be the easiest way to calculate Greatest Common Factor, Least Common Multiple on a set of numbers. What math functions can be used to find this information
3
votes
8answers
5k views
Finding the LCM of a range of numbers
I read an interesting DailyWTF post today, "Out of All The Possible Answers..." and it interested me enough to dig up the original forum post where it was submitted. This got me thinking how I would ...
1
vote
2answers
61 views
How to get GCD and LCM of a range of numbers efficiently?
I currently use this code to find gcd and lcm
def gcd(a, b):
while b != 0:
a, b = b, a%b
return a
def lcm(a, b):
result = a*b/gcd(a,b)
return result
But what if I want to ...
-1
votes
2answers
166 views
How to find Least Common Multiple (LCM) for two numbers
I have used Euclid's method to find the L.C.M for two numbers.
l.c.m=a*b/(gcd(a,b))
How can I do this without using this algorithm?
I have an idea of first getting all factors of these two numbers ...