Numerical Root Calculator
Find a real root of a polynomial with Newton, bisection, or secant. One capability, three methods. Not the nth-root page. Runs locally.
Trust summary Engine tested · Specification checked · 9/9 tests · Production surface contract 1/1 · v1.0.0
- Input interpretation
- Enter values to calculate.
- Result
- —
- Model
- A real polynomial root by Newton, bisection, or secant.
- Scope
- Real polynomials
- Verification
- Engine tested · 9/9 tests · Production surface contract 1/1 · Specification checked · v1.0.0
- Named expert review
- Optional · Not performed
- Specification basis
- ISO 80000-2:2019 Quantities and units — Mathematics
- Evidence
- 2 golden · 2 boundary · 5 property · Production surface contract 1/1 · Artifact integrity PASS
- Production
- Embedded snapshot: unpublished · Build schema 1.0.0 ready · Semantic contract ✓ · Attestation report not published on origin · Live production status PASS (0 stale; 164 CURRENT) @ 2026-09-16T06:44:24.909Z
- Semantic contract
- PASS
Formulas
Core equations used by this calculator.
How to use
Enter coefficients constant-first
x² − 2 is −2,0,1. Newton needs x0; bisection needs a and b with opposite signs.
Read the approximate root
Residual and iteration count are in the result.
Example calculations
Common configurations with formula and result.
√2
x² − 2 = 0, Newton from 1.5
Linear
x − 4 = 0
Numerical Root calculator specification
Version 1.0.0 · Engine tested
- Engine tested 9/9 tests · Production surface contract 1/1
- Named expert review Not performed
- Calculation version 1.0.0
- Definition
- A real root of f(x) = c₀ + c₁x + … + cₙxⁿ is a number r with f(r) = 0. Newton, bisection, and secant are methods of this capability — not three product pages.
- What it calculates
- A real polynomial root by Newton, bisection, or secant.
- Inputs
- method
- coeffs
- x0?
- x1?
- a?
- b?
- Outputs
- root
- residual
- iterations
- Formula
f(x) = Σ cₖ xᵏ- Assumptions
- Real polynomials
- Not CAS / not complex roots listed
- Units
- dimensionless
- Boundary conditions
- no sign change → INVALID_INPUT
- unknown method → INVALID_MODE
- no convergence → NO_CONVERGENCE
- Example
- newton coeffs=-2,0,1 x0=1.5 → √2
- Validation cases
2 published on this page · 9/9 tests · Production surface contract 1/1 · View evidence
- method=newton coeffs=-2,0,1 x0=1.5 → root≈1.414213562
- method=halley coeffs=-2,0,1 x0=1 → INVALID_MODE
- Specification basis
- ISO 80000-2:2019 Quantities and units — Mathematics
- Calculation version
- 1.0.0
Related tools
Other calculators in this family: Root (ⁿ√a), Quadratic, Definite integral .
Frequently asked questions
Key distinctions behind the calculation.
Is this the nth-root calculator?
No. ⁿ√a is /calc/math/root. This page finds zeros of a polynomial.
Why not three pages for Newton, bisection, and secant?
They are methods of one model. Switching method does not change the capability.