Using Euler's Method:
The approximation at each x value is made with the previous (x,y) values.
yn = mn-1 ( xn - xn-1 )
+ yn-1
| x | m | tan line equation | y |
| 0 | . | . | 1 |
| .1 | 1 | y = 1(.1) + 1 | 1.1 |
| .2 | 1.2 | y = 1.2(.1) + 1.1 | 1.22 |
| .3 | 1.52 | y = 1.42(.1) + 1.22 | 1.362 |
| .4 | 1.662 | y = 1.662(.1) + 1.362 | 1.5282 |
Now, a graph of the solution can be drawn, using the x
and
y values produced in the table.