Basin of Attraction Example
To illustrate finding the basins of attraction, we consider the real version of the
first problem Cayley solved for the
complex Newton's method.
The function f(x) = x2 - 1 has two roots, x = 1 and
x = -1. We find the basin of attraction of Newton's method for each root.
|
 |
Starting with 0 < x0 < 1, we see one iterate of
Newton's method gives x1 > 1. So from the
x0 > 1 argument
we see continued iterates decrease to the root x = 1.
Certainly, the corresponding picture will
be valid for any 0 < x0 < 1, so the basin of attraction of
x = 1 includes all 0 < x0 < 1.
|
|
Consequently,
the basin of attraction of x = 1 is all x0 > 0,
and the basin of attraction of x = -1 is all x0 < 0.
Return to Complex Newton's Method.