give numbers to find LCM
Answers
Answered by
1
Answer:
here are some numbers :
easy mode :- (6,8,4)
moderate :- ( 10,25,95)
difficult :- (225,489,3249,47893)
How to do LCM (with example)
lcm(a, b) = a × b / gcd(a, b). To use this formula we can compute a gcd with the calculator method we saw in the assignment Greatest Common Divisors and then do the multiplication and division. For example, once we see that gcd(40, 45) = 5, we get lcm(40, 45) = 40 × 45 / 5 = 360.
Similar questions