Math Reference
Next ❯Boolean Reference
- turned_in_notMethods
Methods Used abs() To get the absolute value of x acos() To get the arccosine of x, in radians acosh() To get the hyperbolic arccosine of x asin() To get the arcsine of x, in radians asinh() To get the hyperbolic arcsine of x atan() To get the arctangent of x as a numeric value between -PI/2 and PI/2 radians atan2() To get the arctangent of the quotient of its arguments atanh() To get the hyperbolic arctangent of x cbrt() To get the cube root of x ceil() To get the nearest maximum rounded integer to x cos() To get the cosine of x (x is in radians) cosh() To get the hyperbolic cosine of x exp() To get the value of Ex floor() To get the nearest minimum rounded integer to x hypot() To get the Hypot of x log() To get the natural logarithm (base E) of x log2() To get the natural logarithm (base 2) of x log10() To get the natural logarithm (base 10) of x min() To get the number with the lowest value max() To get the number with the highest value pow() To get the value of x to the power of y random() To get a random number between 0 and 1 round() To get the rounds x to the nearest integer sin() To get the sine of x (x is in radians) sinh() To get the hyperbolic sine of x sqrt() To get the square root of x tan() To get the tangent of an angle tanh() To get the hyperbolic tangent of x trunc() To get the integer part of x
- turned_in_notProperties
Properties Used E To get the Euler's number (approx. 2.718) LN2 To get the natural logarithm of 2 (approx. 0.693) LN10 To get the natural logarithm of 10 (approx. 2.302) LOG2E To get the base-2 logarithm of E (approx. 1.442) LOG10E To get the base-10 logarithm of E (approx. 0.434) PI To get the PI (approx. 3.141) SQRT1_2 To get the square root of 1/2 (approx. 0.707) SQRT2 To get the square root of 2 (approx. 1.414)
❮ Prev Number Reference
Next ❯Boolean Reference