I follow why the error at the nth step of the bisection method has $\epsilon_n \le\frac{1}{2^{n+1}}|b_0-a_0|$. Where $\epsilon_n=|\alpha-c_n|$: $c_n=\frac{a_n+b_n}{2} $, $\alpha$ is the root.
My question is:
Suppose $f$ is a continuous function and I want to solve $f(x)=0$ by bisection. But I use $|f(c_n)|\lt\delta$ as the termination criterion and I don't know how many steps it takes to get to this point. What does this imply for $\epsilon_n$? Is there a formula or 'less than or equal to bound' for $\epsilon_n$ in terms of $\delta$?
Thanks!