How this calculator works
Bisection repeatedly halves the interval and retains the half that continues to bracket a sign-changing root.
Formula
m=(L+R)/2; retain the sign-changing half-intervalFinds a real root of a polynomial inside a user-supplied sign-changing bracket.
Worked example
x - 1 on [0,2] is a verified test case used by the calculation engine.
Assumptions and limitations
- The polynomial must be non-constant.
- Unless an endpoint is itself a root, the supplied interval must have opposite signs at its endpoints.
- Even-multiplicity roots that do not change sign require a different method.
Methodology & sources
This calculator uses deterministic, versioned calculation logic. The formula and verified examples above are part of the calculation definition used by CalcuMint.
- CalcuMint deterministic numerical solver — Bisection method with bounded iterations and relative interval tolerance.
Frequently asked questions
Why must the interval bracket a root?
The certified bisection method relies on a sign change to guarantee the retained interval contains a root.
Which polynomial form is used?
f(x)=ax³+bx²+cx+d.
