Lowest common multiple & greatest common divisor
Find the greatest common divisor and common multiple of given numbers
Entering your input
- Separate numbers with a comma (e.g.: 1024, 768, 96).
- Numbers smaller than 2 or exceeding 10 digits are ignored.
Description
The lowest common multiple (lcm) and the greatest common divisor (gcd) of the numbers you enter will be generated. The lowest common multiple is the smallest possible number that is dividable by ALL numbers you supply (e.g.: lcm(24,36) = 72). The greatest common divisor on the other hand is the smallest possible number by which all numbers can be divided. (e.g.: gcd(24,36) = 12).Please refer to the Wikipedia article to least common multiple and greatest common divisor for more information.