I know how to find a zero of a function by the bisection method. But I am not sure how to find the number of iterations needed within a certain degree of accuracy.
Let's say, when we use the bisection method to find the zero $x^*$ of the function $g(x)=x\log(x+1)+x-1$, how many evaluations of log do we need to find $x^*$ to an accuracy of $|x_n-x^*|\leq0.01$ without really computing the iterates?
Could anybody give me some clue on what formula to use or is there any other way to approach the problem?