5 min read
The Mandelbrot set is one of the most famous objects in mathematics — a simple rule that produces infinite complexity.
For each point in the complex plane, you ask a single question: what happens when you repeatedly apply the formula?
Start with . Compute , get a new value of , and repeat.
If the absolute value of z grows without bound — if at any point — the sequence "escapes" to infinity. The point c is outside the Mandelbrot set.
If z never exceeds 2, no matter how many times you iterate, the point c is inside the Mandelbrot set. These are the black regions you see at the center.
The boundary between points that escape and those that don't is infinitely complex. No matter how far you zoom in, you keep finding new structures — spirals, valleys, miniature copies of the whole set — appearing at every scale.
This is the defining property of a fractal: self-similarity at every scale. Zoom into a tiny region of the Mandelbrot boundary and you'll find structures that resemble the whole set, often surrounded by alien landscapes unique to that location.
Points inside the set are usually colored black. Points outside are colored based on how quickly they escape — how many iterations of the formula it takes before . Points that escape quickly get one color; points that take longer to escape get another.
This "escape time" coloring is what creates the dramatic color bands and gradients you see in fractal images.
The Mandelbrot set lives in the complex plane. Each point has a real part (the x-axis) and an imaginary part (the y-axis). The formula operates on complex numbers, where multiplication involves both components interacting.
When you pan and zoom in a fractal viewer, you're navigating this complex plane — exploring different values of c and asking: does this point escape?