| Input | A number. |
| Output | The absolute value of the number. |
| Input | A number. |
| Output | The negative value of the number. |
| Input | A number. |
| Output | The number incremented by one. |
| Input | A number. |
| Output | The number decremented by one. |
| Input | Two numbers. |
| Output | The sum of the numbers. |
| Input | Two numbers. |
| Output | The sum of the numbers. |
| Input | Two numbers. |
| Output | The difference of the numbers. |
| Input | Two numbers. |
| Output | The product of the numbers. |
| Input | Two numbers. |
| Output | The division of the numbers. |
| Input | Two numbers. |
| Output | The remainder of the division of the numbers. |
| Input | Two numbers. |
| Output | The first number raised to the power of the second number. |
| Input | A number. |
| Output | The square root of the number. |
| Input | Two numbers. |
| Output | The smallest of the numbers. |
| Input | Two numbers. |
| Output | The largest of the numbers. |
| Input | A number. |
| Output | The number rounded to the nearest integer. |
| Input | A number. |
| Output | The largest integer less than or equal to the number. |
| Input | A number. |
| Output | The smallest integer greater than or equal to the number. |
| Input | A number (in radians). |
| Output | The sine of the number. |
| Input | A number (in radians). |
| Output | The cosine of the number. |
| Input | A number (in radians). |
| Output | The tangent of the number. |
| Input | A number. |
| Output | The natural logarithm of the number. |
| Input | A number. |
| Output | True if the number is negative. False otherwise. |
| Input | A number. |
| Output | True if the number is positive. False otherwise. |
| Input | A number. |
| Output | True if the number is zero. False otherwise. |
| Input | A number. |
| Output | True if the number is even. False otherwise. |
| Input | A number. |
| Output | True if the number is odd. False otherwise. |
| Input | An angle in degrees. |
| Output | The angle converted to radians. |
| Input | An angle in radians. |
| Output | The angle converted to degrees. |
| Output | Positive infinity. |
| Input | A number. |
| Output | The fractional part of the number. |
| Inputs | Three numbers. |
| Output | The first number clamped to be in the range of the second and third number. |
| Input | A number. |
| Output | 1 if the number is positive. -1 if the number is negative. 0 if the number is zero. |
| Inputs | Two numbers. |
| Output | A random integer between the two numbers (inclusive). |
| Output | A random decimal number between 0 and 1. |
| Inputs | Two numbers. |
| Output | 1 if the first number is bigger than the second. -1 if it is the smaller. 0 if they are equal. |