Newton's method is one of the oldest tricks in numerical mathematics. Given a polynomial like − 1 = 0, you start with a guess, compute the tangent line to the curve, slide down it to the x-axis, and repeat. In most cases you home in on a root with astonishing speed — the error roughly squares each iteration. Textbooks call it the gold standard of root-finders.
But the method has a secret. If you work in the complex plane — where numbers have both a real and an imaginary part — the three roots of − 1 are spread at equal angles, like three equally spaced points on a circle. Start from any complex number and iterate Newton's method: you will converge to one of those three roots. The question is — which one?
Color every starting point by the root it eventually reaches, and the picture that emerges is not three clean blobs. The boundaries between them are infinitely tangled — a fractal. Zoom in as far as you like and the same swirling confusion reappears. This is not a quirk of bad programming; it is a rigorous mathematical fact. The borders between the basins of attraction are nowhere predictable, no matter how much you know about where you started.
Comments
Loading comments...