All courses › Numerical Methods › Bisection method
Bisection method
The bisection method finds a root of by starting with an interval where changes sign, and repeatedly halving it. The method is robust and guaranteed to converge, but slow: each step only halves the uncertainty.
the midpoint of the interval
the requirement to start: a sign change in
Symbols
| the endpoints of the interval | ||
| the midpoint, new endpoint |
Example
on : , .
The sign change is now in , which becomes the new interval.
The number of steps to reach tolerance is .
Practise solving equations for free →
Part of Numerical Methods: Solving equations.