Order of convergence of fixed-point to Newton's method
Hi,
In a problem I first show that the order of convergence of simple iteration is 1 and that in order for it to converge I need
for all
.
From this I must show that Newton's method has an order of convergence of 2. I usually show this by starting with a Taylor expansion etc.
I'm thinking that I could perhaps start by saying that fixed-point iteration will converge if
for all
and since Newton's method has that ,
|=\bigg|x-\frac{f(x)}{f'(x)}\bigg|,)
I get,
![|g'(x)| = \bigg|1 - \frac{[f'(x)]^2-f(x)f''(x)}{[f'(x)]^2}\bigg|=\bigg|\frac{f(x)f''(x)}{[f'(x)]^2}\bigg|<1](http://latex.codecogs.com/png.latex?|g'(x)| = \bigg|1 - \frac{[f'(x)]^2-f(x)f''(x)}{[f'(x)]^2}\bigg|=\bigg|\frac{f(x)f''(x)}{[f'(x)]^2}\bigg|<1)
Since Newton's method is defined as
,
we get that,
| = \frac{f''(x_n)(x_{n+1}-x_n)^2}{f(x_n)}<1)
Then,
as
but that doesn't show that Newton's is a second order method..
---------------------------------------------------------------------------
I've also started by saying that since simple iteration is of order 1, we have that,
| )
where
and
,
but it does not lead me to anything good.
A nice hint would be great! Thanks.