The Secant Method

Figure 2: Graphical illustration of the Secant Method.
\includegraphics[scale=1]{figures/1.3.ps}
An algorithm for the Secant Method:
\fbox{\parbox{10cm}{
To determine a root of $f(x)=0$, given two values, $x_0$\ a...
... $x_0=x_1$\\
Set $x_1=x_2$\\
Until $\vert f(x_2)\vert < tolerance~value$\\
}}

Table 2: The Secant method for $f(x)=3x + sin(x) - e^x$, starting from $x_0=1,x_1=0$, using a tolerance value of 1E-6.
\begin{table}
\begin{center}
\includegraphics[scale=1]{figures/1.5.ps}
\end{center}\end{table}


Figure 3: A pathological case for the secant method.
\includegraphics[scale=1]{figures/1.4.ps}
2004-10-15