Mathematical Functions

Trigonometric functions
Math.sin(x) sine of x
Math.cos(x) cosine of x
Math.tan(x) tangent of x
Inverse Trigonometric functions
Math.asin(x) arc sine of x
Math.acos(x) arc cosine of x
Math.atan(x) arctangent of x
Math.atan2(y,x) arctangent of y/x
Other Functions
Math.sqrt(x) square root of x
Math.exp(x) exponent value of x
Math.log(x) natural log of x
Math.ceil(x) smallest integer >= x
Math.floor(x) largest integer <= x
Math.abs(x) absolute value of x