Take a strip of graph paper. Colour some squares black. Now apply one tiny rule, over and over: each square looks at itself and its two neighbours, and from just those three squares decides its next colour. That's the entire machine — no memory beyond the strip, no central control, no square knowing anything about the big picture. You would expect wallpaper: dull, repetitive patterns. What you actually get — from certain rules — is fractals, apparent randomness good enough to ship in commercial software, and, astonishingly, full-blown computers. A cellular automaton (CA) is this idea made precise, and it is one of the clearest demonstrations in all of science that enormous complexity needs no complicated ingredients.
Every cellular automaton is built from the same four ingredients:
Time ticks in generations: from the whole grid at time
Start with the simplest possible setting, championed by Stephen Wolfram: one row of two-state
cells, each seeing itself and its immediate left and right neighbours. A neighbourhood is then 3
bits, so there are
| neighbourhood | 111 | 110 | 101 | 100 | 011 | 010 | 001 | 000 |
|---|---|---|---|---|---|---|---|---|
| new centre cell | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 |
Stare at that table and a pattern pops out: the new cell is
Sixteen generations of Rule 90 from a single 1, in a dozen lines. The heart of it is the line that
looks up the output bit: the 3-bit neighbourhood becomes a number from 0 to 7, and shifting the
rule number right by that amount exposes the answer bit. Change rule to 110 or 30 and
run it again — same code, wildly different universe:
The triangle-of-triangles you see is Sierpiński's fractal being assembled one row at a time — by cells that each know only their two neighbours.
In 1970 the mathematician John Conway moved the game to two dimensions and struck gold. In the Game of Life, each cell of a 2-D grid is alive or dead and watches its 8 neighbours. The whole rulebook is four lines (compactly written B3/S23 — "born on 3, survives on 2 or 3"):
From these four lines a whole zoology emerges. Still lifes (like the 2×2 block) never change. Oscillators (like the blinker, three cells in a row) pulse forever with a fixed period. And most famously, the glider — five cells — walks: after four generations it reproduces its own shape exactly, shifted one cell diagonally. Nothing in the rules mentions movement; the glider is a self-sustaining wave of births and deaths that carries its pattern across the board forever. Step through its four-beat stride below.
Gliders changed everything. A stream of gliders can carry a signal; collisions between glider
streams can gate, block or redirect other streams — and out of such collisions people have built
AND gates, OR gates, memory, and eventually entire programmable computers living inside
Life's grid. The Game of Life is Turing complete: anything any computer can
compute, some monstrous Life pattern can compute too. Even more remarkably, Matthew Cook proved
(published 2004) that the humble 1-D Rule 110 is Turing complete as well — a
universal computer in one row of cells reading three neighbours at a time. This makes cellular
automata a genuine model of computation, sitting alongside
Life was born low-tech: John Conway and his students at Cambridge tuned its rules by hand, pushing counters around a Go board — tweaking the birth and death thresholds until the game sat on the knife-edge between fizzling out and exploding. When Martin Gardner described it in Scientific American in October 1970, it detonated. Readers burned untold hours of university mainframe time hunting patterns; Gardner later said the column brought him more mail than anything else he ever wrote. Conway had offered $50 for a pattern that grows forever, and within weeks Bill Gosper's team at MIT found the glider gun — an oscillator that fires a fresh glider every 30 generations, forever. That gun became the machine-gun of Life engineering: streams of gliders as signals were the key step towards building computers in the grid. Conway, a world-class mathematician who invented surreal numbers, reportedly grumbled that he would be remembered mainly for a game — history has proved him exactly right, and the game immortal.
The tempting inference: "each cell only sees its nearest neighbours, so nothing in a CA can have long-range effects." The glider demolishes this. Every individual birth and death is decided purely locally — yet the glider, a pattern of such events, travels arbitrarily far, carrying its shape (and hence information) across the entire grid, undimmed, forever. Flip one cell today and the consequences can propagate outward generation after generation without limit — that is exactly how glider signals make Life compute, and why predicting a CA's far future can be as hard as running every step. Locality constrains how fast influence spreads (one cell per generation — a CA has a "speed of light"), but not how far. Small rules, global reach: that is the whole magic of cellular automata, and forgetting it is the classic way to underestimate them.