Newton's Method Root Finder
xₙ₊₁ = xₙ − f(xₙ) / f'(xₙ). Iteratively find roots of polynomial.
Result
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
Convergence?+
Multiple roots?+
Failure modes?+
When to prefer bisection?+
Higher dimensions?+
Related calculators
More tools you might like
Hand-picked tools that pair well with this one — same audience, same intent.
ax² + bx + c = 0 → roots via discriminant. Real or complex.
Evaluate polynomial p(x) = aₙxⁿ + … + a₁x + a₀ at any x. Up to degree 6.
lim x→a of polynomial ratios (basic substitution + L'Hopital for 0/0).
Approximate sin/cos/eˣ/ln(1+x) via Taylor polynomial of degree n.
d/dx(aₙxⁿ + … + a₁x + a₀) = naₙxⁿ⁻¹ + … + a₁. Power rule.
∫ₐᵇ p(x) dx using power rule for antiderivatives.