1.a Using the attached Bisection Scilab Code, write a program to find out the root of equation x³ -1.8x² -10x +17 = 0 and roots lie between [1,2] by using Non-Linear Algebraic Method (Bisection Method) using Scilab. Note: ((εa)) is less than εs = 0.5%)
1.b The algorithm for false position is the same with bisection method. The two methods only differ in the calculation of the estimated root (c). Implement False Position method based on the scilab code implemented in bisection method and solve the same problem (problem 1.a).