If it is provided that f(0) = 2 is one of the initial points. What can be the best choice of second point for solving by Bisection Method? 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