\emph{False position} method also called \emph{regula falsi} in fancier circles is similar to the bisection method, the difference is that the interval we use $[a_n, b_n]$ is divided into two subintervals. We have:
Then we choose next interval as in the bisection method so: we calculate products of function values at $a_n$ and $b_n$ and that subinterval is selected for the next iteration of \emph{false position} method. This subinterval corresponds to the negative product value.
\subsubsection{Properties of \emph{false position method}}
This method is always convergent, simillary to bisection method, since it will always choose and shorten the interval which contains the root. If the function is continous and differentiable the method is linearly convergent. That being said the convergence may become sluggish. It can happen if for example one of the endpoints of the intervals will remain the same and the iterating will not shorten the interval to 0. One of the examples of functions that lead to that are barrier functions used in constrained optimization methods.
\paragraph{Improvement to the method}
In order to improve the formula and avoid aforementioned situation we can take smaller value of the function for the value that does not change.
\emph{The Newton's method} also called \emph{the tangent method} relies on first order part of its expansion into Taylor series for a given current approximation of root.
\[ f(x)\approx f(x_n)+ f^{'}(x_n)(x-x_n)\]
Then we obtain the next point $x_{x+1}$ by finding root of linear function:
\[ f(x_n)+ f^{'}(x_n)(x_{n+1}-x_n)=0\]
From this we get formula for $x_{n+1}$:
\[ x_{n+1}= x_n -\frac{f(x_n)}{f^{'}(x_n)}\]
This method as opposed to \emph{regula falsi} method is locally convergent, should we choose initial point too far from the root (area which is close enough to root is called set of attraction) then we can get a divergence. On the other side if the Newton's method will converge then it is quite rapid with convergence of order p = 2 - quadratic convergence.
Newton's method is also effective if the function derrivative is far from zero, so the slope of the function is steep, conversely if the derrivative is close to zero the method is not recommended.
Using the M{\"u}ller's method. We have to implement both MM1 and MM2 versions. We also need to find real roots using the Newton's method and compare these results with what we got from MM2 version of the M{\"u}ller's method.
M{\"u}ller's method revoles around the idea of approximating the polynomial locally close to the root by a quadratic function. Based on three different points we can use quadratic interpolation and develop our method. This means that we can treat it as a generalization of secant method. That being said we can also realize it in an efficient way if we use just one point. We can use for this case values of polynomial, and its first and second derrivative at current point.
Given three points: $x_0; x_1; x_2$ and their polynomial values: $f(x_0), f(x_1), f(x_2)$ we construct a (quadratic) function passing through these points. Then we find roots of this parabola and we choose one of these rots for the approximation of the result.
For example:
Assume that $x_2$ is the approximation of the root.
Let's introduce variable $z$ such that:
\[ z = x - x_2\]
And differences:
\[ z_0= x_0- x_2\]
\[ z_1= x_1- x_2\]
We have quadratic function:
\[ y(z)= az^2+ bz + c \]
Using three points from above we get:
\[ y(z_0)= az_0^2+ bz_0+ c = f(x_0)\]
\[ y(z_1)= az_1^2+ bz_1+ c = f(x_1)\]
\[ y(z_2)= c = f(x_2)\]
And then we get system of equation that we can solve to find $a$ and $b$:
\[ az_0^2+ bz_0= f(x_0)- f(x_2)\]
\[ az_1^2+ bz_1= f(x_1)- f(x_2)\]
Roots are equal to:
\[ z_+=\frac{-2c}{b+\sqrt{b^2-4ac}}\]
\[ z_-=\frac{-2c}{b-\sqrt{b^2-4ac}}\]
We choose a root with smaller absolute value for next iteration:
This method is locally convergent with order of convergence equal to 1.84. It is locally more effective that secant method and it is almost as fast as Newton's method while being capable of finding complex roots. It can be used to find roots of polynomials or another nonlinear functions.
This formula is similar to the one from MM2 but also takes order of the polynomial into consideration. In general this method is better. For polynomials with real roots it is globally convergent. It does not have formal analysis for complex roots but it usually shows good numerical properties, although divergence may happen.