Question: First 5 values of the bisection method

How do I calculate the first 5 values of the bisection method using the starting values of 4 and 5 of the function f(x) = (5 - x) * (e^x)-5

 

a := 4;
b := 5;
nStep := 5;
                               4
                               5
                               5
 

Please Wait...