This is the original question.
Use Euler's method with h=0.2 to estimate y when x =1 if
$y' = (y^2-1) /2 $
and y(0) = 0
A. 7.690
B. 12.730
C. 13.504
D. 90.676
My answer follows.
n= 5, h= 0.2
a= x_0= 0, b=1, y0= 0
I'm using the formula
$y_{(n+1)} = y_n + h * y'$
and generated the following table.
Note this table shows the answer as $-0.47141$ because $y_{n+1}$ is on the previous line of the table below.
However, this doesn't match any of the given answer choices.
This is an employment test covering Advanced Placement Calculus BC, so this is all the context I have.
Where is the mistake?
Are there other variations called "Euler's method" which generate different answers?
| x | h | y | y^2 | y' | next y |
|---|---|---|---|---|---|
| 0 | 0.2 | 0.00000 | 0.00000 | -0.50000 | -0.10000 |
| 0.2 | 0.2 | -0.10000 | 0.01000 | -0.49500 | -0.19900 |
| 0.4 | 0.2 | -0.19900 | 0.03960 | -0.48020 | -0.29504 |
| 0.6 | 0.2 | -0.29504 | 0.08705 | -0.45648 | -0.38634 |
| 0.8 | 0.2 | -0.38634 | 0.14925 | -0.42537 | * -0.47141 * |
| 1 | 0.2 | -0.47141 | 0.22223 | -0.38889 | -0.54919 |