Question #1: Find the root of the equation x^3+x^2+x-1 =0 correct to two decimal places by using 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