Computational Method // April 2026

Solving Equations with the Bisection Method

A
Author Node Archive Editorial
Temporal Read 5 Min Read

Understanding the Bisection Method

The Bisection Method is a root-finding algorithm that repeatedly bisects an interval and then selects a sub-interval in which the function changes sign. Because the function is continuous, the Intermediate Value Theorem guarantees that there is at least one root within the interval if $f(a)$ and $f(b)$ have opposite signs.

The Problem

Find the root of the equation $f(x) = x^3 - x - 4 = 0$ in the interval $[1, 2]$ using the bisection method, accurate to 3 decimal places.

Step-by-Step Solution

Let $f(x) = x^3 - x - 4$. Given $a = 1$ and $b = 2$:

  • $f(1) = 1^3 - 1 - 4 = -4$ (Negative)
  • $f(2) = 2^3 - 2 - 4 = 2$ (Positive)

Since $f(1) < 0$ and $f(2) > 0$, the root lies between 1 and 2.

Iteration Table

Iteration$a$$b$$x_{mid} = (a+b)/2$$f(x_{mid})$New Interval
1121.5-1.125[1.5, 2]
21.521.750.609[1.5, 1.75]
31.51.751.625-0.334[1.625, 1.75]
41.6251.751.68750.121[1.625, 1.6875]
51.6251.68751.65625-0.111[1.65625, 1.6875]
61.656251.68751.671880.003[1.65625, 1.67188]
71.656251.671881.66407-0.054[1.66407, 1.67188]
81.664071.671881.66798-0.026[1.66798, 1.67188]
91.667981.671881.66993-0.011[1.66993, 1.67188]
101.669931.671881.67091-0.004[1.67091, 1.67188]

Continuing this process until the change in $x$ is sufficiently small, we converge to the root.

Final Answer

After several iterations, the value of the root converges to approximately 1.671.

Platform Resources