Root Finding: Bisection & Newton's Method
≈ 25 minWhen an equation has no tidy formula, we find roots numerically.
Bisection. Start with an interval where and have opposite signs (so a root lies between them). Test the midpoint; keep the half that still brackets the root; repeat. Slow but sure.
Newton's method. Follow the tangent line down to where it hits the -axis:
Worked example (finding ). With , , the update simplifies to From : , then — already close to
To start bisection on , the values and must…
Apply one Newton step to starting from . Find .
Bisection on over : the first midpoint is , and while , so the root lies in . What is the next midpoint?
Continue Newton's method for from . Find (to 3 decimal places).

