math.pi * x * x	math.pi * (x * x)	math.pi * math.pow(x, 2)	math.pi * math.pow(x, 2.0)	math.pi * (x ** 2)
math.sqrt(x / 3)	math.sqrt(x / 3.0)
math.tan(math.radians(x))	math.tan(x * math.pi / 180)	math.tan(x * (math.pi / 180))	math.tan(x * math.pi / 180.0)	math.tan(x * (math.pi / 180.0))
10 * math.log10(x)	10.0 * math.log10(x)	10 * math.log(x) / math.log(10)	10.0 * math.log(x) / math.log(10.0)
math.max(x, y, 2)	math.max([x, y, 2])	math.max(x, y, 2.0)	math.max([x, y, 2.0])	max(x, y, 2)	max([x, y, 2])	max(x, y, 2.0)	max([x, y, 2.0])
