Dapatkan kelipatan persekutuan terkecil dari suatu bilangan
=LCM(number1, [number2], ...)
| Parameter | Deskripsi |
|---|---|
number1 |
The first number. |
number2 |
[optional] The second number. |
The least common multiple of 3 and 4 is 12, since 12 is the smallest multiple of both 3 and 4:
=LCM(3,4) // returns 12
The least common multiple of 3, 4, and 5 is 60, since 60 is the smallest multiple of all three numbers:
=LCM(3,4,5) // returns 60
In the example worksheet shown above, we are using two slightly different formulas to calculate the lowest common multiple. The first formula provides
=LCM(B5,C5) // 2 cell references
In rows 11 to 15, there are three values in columns B, C, and D. The formula in F11:F15 (copied down) is:
=LCM(B11:D11) // range with 3 values