A mathematical function that adds the given value to the input.
A mathematical function that returns the average value of the elements in the input Array.
A mathematical function that divides the input value by a given value.
Returns the highest value found in the input Array.
A mathematical function that returns the median value of elements in the input Array.
Returns the lowest value found in the input Array.
A mathematical function that multiplies the input value by a given value.
A mathematical function that returns the value of the input value raised to the power of a given value.
A mathematical function that approximates a numeric value based on rounding rules and a digit position. The function rounds up by adding one to the digit to be rounded and then replacing all digits to its right with zeroes.
Number of Digits - A positive integer specifying the position of the digit to be rounded starting on the left.
The function uses the digit to the right of the parameter digit to round up or down. If the digit to the right has a value of 0 to 4, the function rounds down. If the digit to the right has a value of 5 to 9, then the function rounds up. If there is no digit to the right, then the function rounds down.
A mathematical function that computes a positive number that when multiplied by itself produces the input value. The input value must be a positive real number.
A mathematical function that subtracts the given value from the input.
Returns the sum of all values in the input Array.
Returns a string representation of a floating point number fixed to the number of digits specified
A mathematical function that returns the distance from zero for any real number. An absolute value is always a positive or zero value.