Computes the integral of an equation using the trapezoidal method. Requires the upper and lower bounds, equation, and number of steps.
Computes the integral of a table of y values using the trapezoidal method. Requires the upper and lower bounds, table, and constant step size.
Computes the integral of an equation using Simpson's rule. Requires the upper and lower bounds, equation, and number of steps.
Computes the integral of a table of y values using Simpson's method. Requires the upper bound and lower bounds, table, and constant step size.
Creates a table of tables, showing Euler's method. Requires the step size, the number of steps, an initial point, and the equation for dy/dx.
Creates a table of tables showing Newton's Method. Requires the function, the derivative of the function, and the initial x-value. Maximum number of iterations and epsilon is hard coded.