Linear Interpolation (False Position)

An algorithm for the method of false position (regula falsi):
\fbox{\parbox{10cm}{
To determine a root of $f(x) = 0$, given two values of $x_0...
...\\
Set $x_0= x_2$\\
End If\\
Until $\vert f(x_2)\vert<tolerance~value$.\\
}}

Table 3: Comparison of methods, $f(x)=3x + sin(x) - e^x$, starting from $x_0=0,x_1=1$.
\begin{table}
\begin{center}
\includegraphics[scale=1]{figures/1.6.ps}
\end{center}\end{table}


2004-10-15