Note: Scripts contain an example IVP/integral to solve for but the scripts can be edited to solve other IVPs/integrals
Uses Euler's Method to approximate y(1) of a function
$ python ./euler.py
Uses Euler's Midpoint Method to approximate y(1) of a function
$ python ./midpointEuler.py
Uses Runge Kutta Method of order 4 to approximate y(1) of a function
$ python ./rungeKuttaMethod4.py
Uses the composite Simpson rule to approximate the solution to an interval (contains example in script)
$ python ./simpsons.py