Contains the code to create Fractals using Newton's Method in MATLAB
Newton's Method is a well known procedure for finding roots of functions.
Specifically, we start with a function
In most cases, xn will converge to a root of
While most people learn this using real functions, there is no reason why Newton's Method cannot be used with complex functions.
So, given a function
Since this is an iterative complex system, it is not too surprising that we end up with fractals.
What is wonderful about this scheme is the great variety of images one can make with this simple concept.
The students in my numerical analysis class were given a program that would create these fractals.
They picked the function, the colors, and the error tolerance.