Euler's Method
A numerical technique for approximating solutions to differential equations by stepping along the slope field in small increments.
Euler's Method is a numerical technique for approximating the solution to a differential equation. Given an initial value problem with , we step forward in small increments of size :
At each step, we use the current slope to predict where the curve goes next. It is the simplest numerical ODE solver and the foundation for understanding more advanced methods.
Key terms:
- β the step size (smaller gives more accuracy)
- β the slope at the current point
- β the current approximation point
Approximate given , , using step size .
The exact answer is , so the error is about .
Use Euler's Method with to approximate given , .
Solution
Step 1: , . Slope .
Step 2: , . Slope .
So . The exact answer is , giving . Error β large because is large.