edited by
662 views
0 votes
0 votes

Using the forward Euler method to solve $y’'(t) = f(t), y’(0)=0$ with a step size of $h$, we obtain the following values of $y$ in the first four iterations:

  1. $0, hf (0), h(f(0) + f(h)) \text{ and }h(f(0) - f(h) + f(2h))$

  2. $0, 0, h^2f(0)\text{ and } 2h^2 f(0) + f(h)$

  3. $0, 0, h^2f(0) \text{ and } 3h^2f(0)$

  4. $0, 0, hf(0) + h^2f(0) \text{ and }hf (0) + h^2f(0) + hf(h)$

edited by

Please log in or register to answer this question.

Related questions

3 votes
3 votes
2 answers
1
Kathleen asked Sep 29, 2014
11,954 views
The Newton-Raphson method is used to find the root of the equation $X^2-2=0$. If the iterations are started from -1, the iterations willconverge to -1converge to $\sqrt{2...
0 votes
0 votes
3 answers
4
Kathleen asked Oct 4, 2014
11,578 views
Match the following items(i) Newton-Raphson(a) Integration(ii) Runge-Kutta(b) Root finding(iii) Gauss-Seidel(c) Ordinary Differential Equations(iv) Simpson's Rule(d) Solu...