Question:medium

The Newton-Raphson method is used to find the root of \[ f(x)=x^2-x-1=0 \] If the initial guess is \(x_0=1\), then the estimate after two iterations is

Show Hint

Newton-Raphson converges quickly: \[ \boxed{x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}} \] Always recompute derivative at each step.
Updated On: Jul 9, 2026
  • \(2\)
  • \(1.80\)
  • \(1.67\)
  • \(1.82\)
Show Solution

The Correct Option is D

Solution and Explanation

Was this answer helpful?
0