how many more iterations of bisection are needed to find the root of f(x) to within an accuracy of 10–4 code example
Example: bisection method
based on IVT, c=(a+b)/2, if(fa*fc<0) b=c else a=c
based on IVT, c=(a+b)/2, if(fa*fc<0) b=c else a=c