| ceiling(value) | Get the ceiling of a number (round up) |
| euler(function,start,stop,step,c) | Approximate a definite integral using Euler's Method |
| floor(value) | Get the floor of a number (round down) |
| mean(value,value...) | Get the mean of two or more numbers |
| median(value,value...) | Get the median of two or more numbers |
| monteCarlo(function,left limit,right limit,maximum,points) | Approximate a definite integral using the Monte Carlo method |
| nDeriv(function,x) | Get a numerical approximation of the derivative of function at x |
| nIntegrate(function,left limit,right limit) | Get a numerical approximation of the definite integral of function |
| rand(lower limit,upper limit) | Obtain a random integer from lower limit to upper limit |
| riemannLeft(function,left limit,right limit,rectangles) | Approximate a definite integral using left Riemann sums |
| riemannMiddle(function,left limit,right limit,rectangles) | Approximate a definite integral using middle Riemann sums |
| riemannRight(function,left limit,right limit,rectangles) | Approximate a definite integral using right Riemann sums |
| simpson(function,left limit,right limit,intervals) | Approximate a definite integral using Simpson's rule |
| sum(expression,variable,start,end) | Use sigma-style notation to evaluate the sum of a finite series |
| trapezoid(function,left limit,right limit,intervals) | Approximate a definite integral using the trapezoid rule |