1,103 views
0 votes
0 votes

Consider the function f(x) = x2 - 2x - 1. Suppose an execution of the Newton-Raphson method to find a zero of f(x) starts with an approximation x0 = 2 of x. What is the value of x2, the approximation of x that algorithm produces after two iterations, rounded to three decimal places?

  1. 2.417
  2. 2.419
  3. 2.423
  4. 2.425

1 Answer

Best answer
2 votes
2 votes

In newton method, if current guess is xcur, then new guess xnew is

xnew = xcur - f(xcur)/f'(xcur)

Now Initially, xcur = 2, so after 1st iteration,

xnew = 2 - (-1)/2 = 2.5

Now xcur becomes 2.5, so after 2nd iteration,

xnew = 2.5 - (0.25)/3 = 2.417

selected by
Answer:

Related questions

1 votes
1 votes
1 answer
1
Kathleen asked Sep 11, 2014
5,224 views
The Newton-Raphson iteration $x_{n+1} = \frac{1}{2}\left(x_n+\frac{R}{x_n}\right)$ can be used to compute thesquare of R reciprocal of R square root of R l...
1 votes
1 votes
0 answers
2
Kathleen asked Sep 21, 2014
1,018 views
Consider the series $x_{n+1} = \frac{x_n}{2}+\frac{9}{8x_n},x_0 = 0.5$ obtained from the Newton-Raphson method. The series converges to1.5$\sqrt{2}$1.61.4
4 votes
4 votes
2 answers
3
0 votes
0 votes
3 answers
4
Kathleen asked Oct 8, 2014
2,550 views
The iteration formula to find the square root of a positive real number $b$ using the Newton Raphson method is$x_{k+1} = 3(x_k+b)/2x_k$$x_{k+1} = (x_{k}^2+b)/2x_k$$x_{k+1...