y = (-0.50598*10^-10)*x.^3 + (0.38292*10^-7)*x.^2 + (0.74363*10^-4)*x + 0.88318*10^-2
and I am trying to use bisection to find three point for this function, here is what I did.
For bisection one: xl = -1000 and xu = -500, xm = (-1000+(-500))/2 = -750
this is what I plan to do in word I dont know how to make a funtion to start it.