3.6 Section 3.2 Newton root finding
Understanding Newton method
Start from the line equation. You remember we normally write it as
where is the y-axis intercept and is the slope. But this equation always implicitly assumed that
the slope is taken at , and the intercept is also at , hence the above can be written as
The above equation is the same as when
So from (1)
Now instead of writing and we write and , so the above becomes
That is it. Now for , , and that is the whole idea. Replace by zero in the above we
obtain
Which is Newton method.
Theorem: Let be C and let be a simple zero. There is a neighborhood of r and a constant C s.t.
if Newton method is started in that neighborhood it will converge to r according to
Proof of quadratic convergence order
Figure 3.12:quadratic convergence
From diagram we see that
But from definition of Newton root finding
substituting (2) into (1) gives
Now evaluate at by expanding it using Taylor around
But is the distance between and , which is , hence the above becomes
But since this is a root finding, and that is our goal. Hence the above becomes
Substituting (4) into numerator of (3) gives
but (some constant), hence above becomes
where is some constant as well.
Hence we can find a constant C such that where is any constant smaller than
The above proofes that Newton method converges quadratically.
3.6.1 Definition of convex function
A function is convex if for all
Mathworld has this definition
”A convex function is a continuous function whose value at the midpoint of every interval in its
domain does not exceed the arithmetic mean of its values at the ends of the interval.” diagram
below from Mathworld
Figure 3.13:Mathworld
How to use Newton method to find ?
Let , hence is to use with Newton method. This leads to
3.6.2 Newton method to solve set of equations
Writing