The Mandelbrot set is the set of complex numbers c for which the sequence starting at z = 0 and repeating the rule z → z² + c never runs off to infinity. That single sentence is the whole definition — everything else, including the infinitely detailed spirals and seahorses people zoom into, falls out of it. This guide explains that definition in plain English, shows why the shape emerges, and lets you fly into it live at the end.
The one-line definition
Pick a complex number c. Start with z = 0. Now apply the rule z → z² + c over and over: z becomes 0² + c = c, then c² + c, then (c² + c)² + c, and so on. If the value of z stays bounded forever — never growing without limit — then c belongs to the Mandelbrot set. If z eventually blows up toward infinity, c is outside the set. That is the entire rule.
What "complex number" means here
A complex number is just a point on a 2D plane: it has a horizontal (real) part and a vertical (imaginary) part, written a + bi. Because every c is a point on a plane, the Mandelbrot set is a shape you can draw. The horizontal axis runs roughly from −2.5 to 1, the vertical axis from about −1.2 to 1.2, and each pixel in that window is one candidate value of c that is either in the set or not.
Why it has a color — escape-time coloring
The famous glowing bands around the black shape are not part of the set itself. The black region is the set — points that never escape. The colors outside encode how quickly each point escaped: a point that exceeded |z| > 2 after 5 steps gets one color, a point that survived 200 steps before escaping gets another. This is called escape-time coloring, and it is why the boundary looks like it is on fire. To avoid ugly color banding, renderers add a small correction — the smooth iteration count n + 1 − log(log|z|) / log 2 — which turns the stair-step bands into a continuous gradient.
Where the famous shapes come from
The big heart-shaped body is called the main cardioid — every c inside it settles to a single stable value. The large circle bolted onto its left is the period-2 bulb, where the sequence bounces between two values. Every smaller bud around the edge corresponds to a longer repeating cycle. The seahorses, spirals, and lightning filaments all live in the razor-thin boundary between "escapes" and "stays bounded" — and that boundary is infinitely detailed, which is why you can zoom forever and keep finding new structure.
- Main cardioid — the heart-shaped body; points here converge to one stable value
- Period-2 bulb — the big circle on the left; the sequence oscillates between two values
- Bulbs and buds — each one is a cycle of a specific length (period 3, 4, 5…)
- Seahorse Valley — the pinch between the cardioid and the period-2 bulb, full of spiral tails
- Filaments and mini-Mandelbrots — tiny near-perfect copies of the whole set hidden along the antenna
Is the Mandelbrot set a fractal?
Yes. A fractal is a shape with detail at every scale — you can keep magnifying and never run out of structure. The Mandelbrot set is the most famous example. It is also quasi-self-similar: as you zoom, you repeatedly stumble onto shrunken, slightly-distorted copies of the entire set (the "mini-Mandelbrots"), but it is not perfectly self-similar the way a Sierpinski triangle is. Its boundary has a fractal (Hausdorff) dimension of 2 — it is so crinkled that it very nearly fills area despite being a curve.
How Vortexia renders it in real time
Vortexia runs the escape-time calculation on your GPU as a WebGL fragment shader, so every pixel is evaluated in parallel — that is how it stays smooth at 60fps in a browser tab while also reacting to audio. Under the hood it is the exact z → z² + c loop described above, with smooth coloring and a hue you can shift. You do not need to install anything to see it.
Open a live, gently animating Mandelbrot view right now — no download, no account:
- See the full Mandelbrot set — The classic home view — the whole set, centered on (−0.5, 0).
- Dive into Seahorse Valley — The spiral-filled pinch between the cardioid and the period-2 bulb.
Want a guided tour of the most beautiful spots? See our companion piece on famous Mandelbrot coordinates, where every landmark is a one-click live link.