Using complex numbers, the process iterated to generate the Mandelbrot set takes a very simple form:
z -> z2 + c
where z and c are complex numbers.
To iterate the process, pick a complex number c and a complex number z0. Then generate the sequence of complex numbers z1, z2, z3, ... by
z1 = z02 + c
z2 = z12 + c
z3 = z22 + c
and in general
zn+1 = zn2 + c
Here we reformulate the process without using complex numbers. |
Next we do an example of the iteration. |
Return to the Mandelbrot set definition.