Example: 30 and 42
Factor them.
2 x 3 x 5 = 30
2 x 3 x 7 = 42
Select the common factors.
2 x 3 = 6, the GCF
Select the highest amount of each factor.
2 x 3 x 5 x 7 = 210, the LCM
Check it.
30 x 42 = 1260
210 x 6 = 1260
It checks.
Chat with our AI personalities
write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html
The number that can be divided into both 35 and 56 is the greatest common divisor (GCD) of the two numbers. To find the GCD, you can use the Euclidean algorithm, which involves dividing the larger number by the smaller number and then using the remainder as the new divisor. Repeating this process will eventually lead to a common divisor. In this case, the GCD of 35 and 56 is 7.
17,303
Euclid's algorithm is a popular algorithm to compute the GCD of two numbers. Algorithm: Gcd(a,b) = Gcd(b, a mod b), where a>=b and Gcd(a,0) = a Say we want to find the GCD of 72 and 105. 105 mod 72 = 33, so GCD(72,105) = GCD(33,72) 72 mod 33 = 6, so GCD(33,72) = GCD(6,33) 33 mod 6 = 3 so GCD(6,33) = GCD(3,6) 6 mod 3 = 0 so GCD(3,6) = GCD(0,3) = 3. So the GCD of 72 and 105 is 3.
GCD: 75