Skip to content

What the Mandelbrot set is

Take a complex number cc — a point on a flat plane. Start with z0=0z_0 = 0, and repeat one rule over and over:

zn+1=zn2+c.z_{n+1} = z_n^2 + c.

Square the number, add cc, and feed the result back in. For each point of the plane there are only two possible fates: either the sequence stays bounded forever, circling in the neighbourhood of the origin — or it escapes, growing without limit. The Mandelbrot set is the collection of every cc whose sequence stays bounded:

M={cC:the orbit 0,  c,  c2+c,   stays bounded}.M = \{\, c \in \mathbb{C} : \text{the orbit } 0,\; c,\; c^2+c,\; \dots \text{ stays bounded} \,\}.

That's the whole definition. Nobody designed the shape; it was already there, waiting inside a one-line rule.

A worked orbit

The landing page iterated c=1c=-1 (bounded, period 2) and c=1c=1 (escapes). Here is a subtler one, c=ic = i. Remember i2=1i^2 = -1:

nnznz_nhow
000start
1ii02+i0^2 + i
21+i-1 + ii2+ii^2 + i
3i-i(1+i)2+i=2i+i(-1+i)^2 + i = -2i + i
41+i-1 + i(i)2+i(-i)^2 + i
5i-i… and forever after

After one step of wandering, the orbit falls into the two-beat cycle 1+ii1+i-1+i \to -i \to -1+i. Bounded — so c=ic=i belongs to the set. (Points like this, whose orbit is eventually periodic without being periodic from the start, are called Misiurewicz points; they sit exactly on the boundary, where the filaments live.)

The full Mandelbrot set in green and yellow on dark blue
The Mandelbrot set. The standard opening view: the cardioid, its bulbs, and the antenna to the west. Interior points are black; the exterior is coloured by escape speed. centre −0.7 · span 3.0 · open this view in Mandala →

Why radius 2 settles everything

"Bounded forever" sounds untestable — forever is a long time. One small theorem makes it practical: once an orbit leaves the circle of radius 2, it never comes back.

Suppose z>2|z| > 2 and zc|z| \ge |c| (both hold from the first moment the orbit leaves the circle, because every interesting cc has c2|c| \le 2). The reverse triangle inequality gives

z2+c    z2c    z2z  =  z(z1)  >  z1.|z^2 + c| \;\ge\; |z|^2 - |c| \;\ge\; |z|^2 - |z| \;=\; |z|\,(|z| - 1) \;>\; |z| \cdot 1.

The factor z1|z|-1 is bigger than 11 and grows every step, so the orbit's size increases at least geometrically from then on — escape is guaranteed. That is why a renderer only ever needs to check z>2|z| > 2: crossing the circle is the verdict. (In practice Mandala tests z2>4|z|^2 > 4 — no square root — and actually lets orbits run further out for smoother colours; the next chapter explains why.)

Reading the picture

The solid black region is the set itself — the points that never escape. The shapes it is made of are not decoration; each one is a statement about how orbits settle.

The main cardioid is the set of cc whose orbit settles to a single resting value — a fixed point zz^* with z=z2+cz^* = z^{*2} + c. A fixed point attracts nearby orbits when the map's derivative there is small: 2z<1|2z^*| < 1. Write 2z=λ2z^* = \lambda with λ1|\lambda| \le 1; solving the fixed point equation for cc gives

c  =  λ2λ24,λ1.c \;=\; \frac{\lambda}{2} - \frac{\lambda^2}{4}, \qquad |\lambda| \le 1.

Sweep λ=eiθ\lambda = e^{i\theta} around the unit circle and this expression traces exactly the heart-shaped boundary you see — the cardioid is that formula made visible.

The period-2 bulb is the disk to the cardioid's west, where orbits end up bouncing between two values forever. The two values of such a cycle satisfy z2+z+c+1=0z^2 + z + c + 1 = 0 (divide the period-2 fixed-point equation of z(z2+c)2+cz \mapsto (z^2+c)^2 + c by the period-1 factor), so their product is c+1c+1. The cycle attracts when the two-step derivative is small: 4z1z2=4(c+1)<1|4 z_1 z_2| = |4(c+1)| < 1 — that is, when

c+1<14.|c + 1| < \tfrac{1}{4}.

A perfect disk of radius 14\tfrac14 centred at 1-1: exactly the bulb in the picture, derived in three lines.

A large circular bulb of the Mandelbrot set with budding smaller bulbs
The period-2 bulb. The large disk west of the cardioid: every c inside it settles into a two-beat cycle. c ≈ −1.0 · span 0.5 · open this view in Mandala →

Reading every bulb — the p/q rule

The same recipe organises all the smaller bulbs. Around the cardioid, a period-qq bulb is tangent at each internal angle 2πp/q2\pi p/q — plug λ=e2πip/q\lambda = e^{2\pi i p/q} into the cardioid formula and you get the exact tangency point. And the picture announces its own arithmetic: the antenna sprouting from a p/qp/q bulb has exactly qq spokes, so you can count the period off the screenshot. The bulb straight up at the top of the cardioid (p/q=1/3p/q = 1/3) carries period 3; the next prominent one toward the cusp (1/41/4) carries period 4, and so on — a Farey sequence drawn in silhouette.

Westward along the real axis, the bulbs tell a different famous story: period 1 gives way to 2 at c=34c = -\tfrac34, to 4 at c=54c = -\tfrac54, then 8, 16, … — the period-doubling cascade — with the doublings crowding together and accumulating at the Feigenbaum point c1.401155c \approx -1.401155. Past it stretches the needle-thin antenna out to the tip at exactly c=2c = -2, studded with miniature copies of the whole set.

The boundary between "stays" and "escapes" is where everything interesting lives. It is infinitely intricate: magnify any stretch of it and new spirals and filaments keep appearing at every scale, forever — and miniature copies of the whole set are never far away: small copies are provably dense along the boundary (a theorem from Douady–Hubbard renormalization), so zooming far enough on any boundary stretch always turns one up. The colours outside the set encode how fast each point escapes, which is the subject of the next chapter.

A short history

The set was first plotted by Robert Brooks and Peter Matelski in 1978, as a crude grid of asterisks on a line printer. Benoît Mandelbrot's computer experiments at IBM from 1980 revealed the structure hiding in it and gave the set its name — and helped found the study of fractals: shapes that are rough at every scale, the way coastlines, clouds and river networks are, rather than smooth the way circles are.

Everything in this guide can be checked by looking. Click any figure — it opens the exact same view, live, in the explorer.