Answer:
n = 29 iterations would be enough to obtain a root of
that is at most
away from the correct solution.
Explanation:
You can use this formula which relates the number of iterations, n, required by the bisection method to converge to within an absolute error tolerance of ε starting from the initial interval (a, b).

We know
a = -2, b = 1 and ε =
so

Thus, n = 29 iterations would be enough to obtain a root of
that is at most
away from the correct solution.
You can prove this result by doing the computation as follows:
From the information given we know:
This is the algorithm for the Bisection method:
- Find two numbers a and b at which f has different signs.
- Define

- If
then accept c as the root and stop - If
then set c as the new b. Otherwise, set c as the new a. Return to step 1.
We know that
and
so we take
and
then

Because
we set
as the new b.
The bisection algorithm is detailed in the following table.
After the 29 steps we have that
hence the required root approximation is c = -0.50