LCM( 50, 40 ) = 200
The formula for finding LCM is
$$ \text{LCM} (a, b) = \frac{ a \cdot b }{ \text{GCD}(a,b)} $$In this example we have: a = 50, b = 40 and GCD(50, 40) = 10.
$$ \text{LCM} (50, 40) = \frac{ 50 \cdot 40 }{ \text{GCD}(50,40)} = \frac{ 2000 }{ 10 } = 200 $$