Tangent replaced by secant.
Rate of Convergence:
superlinear, i.e.
better than linear but not as good as quadratic.
The algorithm for the Secant method is depicted in Figure 17.
Algorithm-Secant
Find
given
input
tolerance,
.
output
, or failure message
Step 1 Set
Step 2 While
do 3 - 6:
Step 3 Set
% compute
Step 4 if
TOL then
output
% done
Stop
Step 5
Step 6 Set
% update
Step 7 Output (`Method failed after
iterates).
STOP