First, we need to find an interval $[a, b]$ such that $f(a) * f(b) < 0$. Let's try $a = 1$ and $b = 6$.
$f(1) = 1^3 - 5(1)^2 - 1 - 1 = -6$
$f(6) = 6^3 - 5(6)^2 - 6 - 1 = 36$
Since $f(1) * f(6) < 0$, we can use the bisection method on the interval $[1, 6]$. We
Show more…