The Secant method is a root-finding algorithm used to locate roots of nonlinear algebraic equations. It exploits the behavior of a function to estimate its root by using two initial guesses. If a ...
2. Define the function fx ie. F(x) and error tolerance. 3. Input the initial guess values a and b. 4. Calculate fa=F(a) and fa=F(a). 5. Calculate c=b-fb*(b-a)/(fb-fa ...