The equation $x^2+ax+b=0$ has two real roots $\alpha$ and $\beta$.
Show that the iterative method given by
$\displaystyle x_{k+1}=-\frac{(ax_k+b)}{x_k}$
is convergent near $x=\alpha$, if $|\alpha|>|\beta|$
The equation $x^2+ax+b=0$ has two real roots $\alpha$ and $\beta$.
Show that the iterative method given by
$\displaystyle x_{k+1}=-\frac{(ax_k+b)}{x_k}$
is convergent near $x=\alpha$, if $|\alpha|>|\beta|$
You can see this as a fixed point iteration method for find a root of the polynomial function: $$p(x) = x^2 + ax + b,$$ where the iteration function is defined by, $$\phi(x) = - \frac{ax + b}{x}.$$
Since $\phi(x)$ and $\phi'(x)$ are continuous, the iterative method will converge if $|\phi'(x)|<1$, for all $x$ sufficiently near to $\alpha$. We have, $$\phi'(x) = -\frac{b}{x^2} = \frac{\alpha\beta}{x^2}.$$ Then, for $x$ sufficiently near to $\alpha$, $|\phi'(x)|<1$, because $|\alpha|>|\beta|$. So the iterative method is convergent near $x = \alpha$.