EulerMethod (f,x0,y0,x1,n)
Use classical Euler's method to numerically solve y'=f(x,y) for
initial x0, y0 going to
x1 with n increments,
returns y at x1.
See Mathworld for more information.
FindRootBisection (f,a,b,TOL,N)
Find root of a function using the bisection method
FindRootFalsePosition (f,a,b,TOL,N)
Find root of a function using the method of false position
FindRootMullersMethod (f,x1,x2,x3,TOL,N)
Find root of a function using the Muller's method
FindRootSecant (f,a,b,TOL,N)
Find root of a function using the secant method
RungeKutta (f,x0,y0,x1,n)
Use classical non-adaptive Runge-Kutta method to numerically solve
y'=f(x,y) for initial x0, y0
going to x1 with n
increments, returns y at x1.
See Mathworld for more information.