Newton-Raphson Calculator

Find roots of equations using the Newton-Raphson iterative method.

Function f(x)

Parameters

Newton-Raphson Formula

x_(n+1) = x_n - f(x_n) / f'(x_n)

Root

1.4142135624

Converged in 4 iterations

f(root)
4.5106e-12
Iterations
4

Iteration History

nx_nf(x_n)Error
12.000000002.000e+05.000e-1
21.500000002.500e-18.333e-2
31.416666676.944e-32.451e-3
41.414215696.007e-62.124e-6

About Newton-Raphson

  • Quadratic convergence near simple roots
  • Requires derivative of function
  • May diverge if initial guess is poor
  • Fails when derivative is zero