LCM( 3, 5, 1, 4, 2, 3 ) = 60
Step 1 : Write the given numbers in a horizontal line.
3 | 5 | 1 | 4 | 2 | 3 |
Step 2 : Divide the given numbers by smallest prime number. In this example we can divide by 2.
(if any number is not divisible by 2, write it down unchanged)
2 | 3 | 5 | 1 | 4 | 2 | 3 |
3 | 5 | 1 | 2 | 1 | 3 |
Step 3 : Continue dividing by prime numbers till we get 1 in all columns.
2 | 3 | 5 | 1 | 4 | 2 | 3 |
2 | 3 | 5 | 1 | 2 | 1 | 3 |
3 | 3 | 5 | 1 | 1 | 1 | 3 |
5 | 1 | 5 | 1 | 1 | 1 | 1 |
1 | 1 | 1 | 1 | 1 | 1 |
Step 4 : Multiply numbers in first column to get LCM.
LCM( 3, 5, 1, 4, 2, 3 ) = 2 · 2 · 3 · 5 = 60 .