| abs(x) | the absolute value of x (always positive) |
| acos(x) | the angle (in radians) whose cosine is x |
| asin(x) | the angle (in radians) whose sine is x |
| atan(x) | the angle (in radians) whose tangent is x |
| ceil(x) | round up to the next integer (if not already an integer) |
| cos(x) | the cosine of angle x (x in radians) |
| exp(x) | E to the power of x; same as pow(E,x) |
| Fib(i) | Fibonacci(i) |
| floor(x) | x, if x is an integer, otherwise the next integer less than x |
| log(x) | the natural log of x (log to the base E) |
| log10(x) | the common log of x (log to base 10) |
| Luc(i) | Lucas(i) |
| pow(x,p) | xp |
| Rab(i) | Rabbit(i) |
| randint(LO,HI) | a random integer between LO and HI (inclusive) |
| random() | a random number between 0.0 and 1.0 |
| round(x) | the nearest integer to x |
| sin(x) | the sine of angle x (x in radians) |
| sqrt(x) | the square root of x |
| tan(x) | the tangent of angle x (x in radians) |