LCM of Rational Numbers
J, 3 bytes, non-competing.
*./
Given a list of rational inputs, this folds LCM through it.
Jelly, 19 bytes
g/:@$€Z©Ḣæl/;®Ḣg/$¤
Try it online!
Python 2, 65 bytes (non-competing)
lambda x:reduce(lambda x,y:x*y/gcd(x,y),x)
from fractions import*
Try it online!