Let $$x_{n+1}= \dfrac{1}{2}\left ( x_n+\dfrac{R}{x_n} \right )$$
Interpret this relation in terms of quadratic convergence. State your condition for such quadratic convergence clearly.
Prove that after the first step, the iteration is monotonical decreasing.
Here is my attempt:
- We need the condition that $x_n\neq 0$,for all $n=0,1,2,...$ Then,
I represent it as follows:
$$x_{n+1}^2 - R =\left ( \dfrac{x_n^2 -R}{2x_n} \right )^2$$
We put $f(x) =x^2-R$, then, $f'(x) \neq 0 $ when $R\neq 0$.
Then, by Newton's method theorem : If $f$ , $f'$, and $f''$ are continuous in a neighborhood of a root $r$ of $f$ and if $f'(r) \neq 0$, then there is a positive $\eta$ with the following property: If the initial point in Newton’s method satisfies $|r - x_0|\geq \eta$, then all subsequent points $x_n$ satisfy the same inequality, converge to $r$, and do so quadratically; that is, $$|r − x_{n+1}| \geq c(\eta)|r − x_n|^2$$
Hence, in this case, $x_n$ converges quadratically if $x_0^2 \in [R-\eta, R+\eta]$, then we get $$ \sqrt{R-\eta} \leq x_0 \leq \sqrt{R+\eta} \quad \text{ or} \quad -\sqrt{R+\eta}\leq x_0 \leq -\sqrt{R-\eta}$$
Could you please check my answer or give me some suggestion to solve it? Thank you so much.
- I have $x_{n+1}-x_n= \dfrac{R-x_n^2 }{2x_n} $, it would be easy if we have the condition that $x_0> 0$,but in this case, I am not sure whether $x_n$ decreases when $x_0 <0$. Could you please show me how to solve it?
Many thanks for any help.
Try this. Let $\delta_{n+1} = x_{n+1} - \sqrt{R}$, and $\delta_n = x_n - \sqrt{R}$. Then $\delta_{n+1} = (1/2)(x_n + R/x_n) - \sqrt{R} = (1/2)(\delta_n + \sqrt{R} + R/(\delta_n + \sqrt{R})) - \sqrt{R}$. Now algebraically simplify.
– Christopher A. Wong Sep 22 '20 at 01:39