GCD calculator
To find the GCD of 48 and 60, divide and keep the remainder: 60 mod 48 is 12, then 48 mod 12 is 0, so the answer is 12. It appears in Euclid Elements around 300 BC and remains the method every computer uses today, because its running time grows only with the number of digits rather than the size of the numbers.
The greatest common divisor is the largest number dividing all of them exactly. For 48, 60 and 72 it is 12. The lowest common multiple is the smallest number they all divide into — 720 in that case.
How to find the GCD
For two numbers, GCD times LCM always equals their product — 12 × 240 = 48 × 60. That identity makes one easy once you have the other, and it is why the Euclidean algorithm alone is enough to get both. It does not extend directly to three or more numbers, where the LCM has to be built up pairwise, which is what this tool does.
Questions
Twelve. Both divide by 12 exactly, and nothing larger does.