Newton's Method Root Finder
xₙ₊₁ = xₙ − f(xₙ) / f'(xₙ). Iteratively find roots of polynomial.
Result
Root estimate
1.32471817
f(root) ≈ 0.00000092; 3 iterations.
- f(x)1x³ + 0x² + -1x + -1
- Initial x₀1.5
- Final x1.32471817
- f(final x)0.00000092
- Iterations3
- ConvergedYes
- Iter 0: x=1.500000, f(x)=0.875000
- Iter 1: x=1.347826, f(x)=0.100682
- Iter 2: x=1.325200, f(x)=0.002058
- Iter 3: x=1.324718, f(x)=0.000001
Step-by-step
- Newton iteration: xₙ₊₁ = xₙ − f(xₙ) / f'(xₙ).
- Converged in 3 iterations to x = 1.324718.
How to use this calculator
- Enter polynomial coefficients + initial guess.
About this calculator
Newton's method for finding roots: xₙ₊₁ = xₙ − f(xₙ)/f'(xₙ). Quadratic convergence near a root (each iteration roughly doubles correct digits). Requires good initial guess + non-zero derivative. Can fail: jumping between roots, oscillating, dividing by zero (at critical points). Used everywhere in numerical analysis, optimization (find zero of gradient), implicit equation solving. Source: Wolfram MathWorld - Newton's Method.
Frequently asked
Quadratic near a simple root: error squares each step. Slow / fails near multiple roots or far from any root.
Related calculators
Polynomial Derivative
d/dx(aₙxⁿ + … + a₁x + a₀) = naₙxⁿ⁻¹ + … + a₁. Power rule.
Definite Integral (Polynomial)
∫ₐᵇ p(x) dx using power rule for antiderivatives.
Taylor Series Approximation
Approximate sin/cos/eˣ/ln(1+x) via Taylor polynomial of degree n.
Limit Evaluator (Polynomial Ratio)
lim x→a of polynomial ratios (basic substitution + L'Hopital for 0/0).
Quadratic Equation Solver
ax² + bx + c = 0 → roots via discriminant. Real or complex.
Polynomial Evaluator
Evaluate polynomial p(x) = aₙxⁿ + … + a₁x + a₀ at any x. Up to degree 6.