Euler's Method
- Find slope of solution at initial condition
using ODE - Make small line segment with slope
- Take endpoint of line segment
and use to find ODE again
TL;DR take a small line p_0 to p_1 with slope at p_0, make a new line p_1 to p_2 starting at p_1 with slope at p_1, etc...
Problems
- Gets more inaccurate the further we are away from the starting point