Question:medium

The iterative formula for finding the approximate root of $f(x) = 0$ using Newton-Raphson method is:

Show Hint

The Newton-Raphson method features a quadratic rate of convergence ($\text{order of convergence } p = 2$), meaning that the number of correct decimal places roughly doubles with each successive iteration step, provided the initial guess is close enough to a simple root.
Updated On: Jun 25, 2026
  • \(x_n = x_{n-1} - \frac{f(x_{n-1})}{f'(x_{n-1})}\)
  • \(x_n = x_{n+1} + h f(x_n, y_n)\)
  • \(x_n = \frac{x_{n-1} + x_{n-2}}{f(x_{n-1})}\)
  • \(x_n = \frac{x_{n-1}f(x_{n-2}) - x_{n-2}f(x_{n-1})}{f(x_{n-1}) - f(x_{n-2})}\)
Show Solution

The Correct Option is A

Solution and Explanation

Was this answer helpful?
0