What you're seeing
A single row of cells, each on or off, drawn at the top. From it we compute the next row, then the next, stacking each new generation directly below the last — so the picture you see is a space-time diagram: space across, time down. Every row is produced from the one above it by the same minuscule rule, applied to all cells at once. Nothing here is hand-drawn. The triangles, the Sierpiński gasket, the seething chaos — all of it falls out of one number between 0 and 255. Change that number and the entire character of the world changes with it.
The rule
Each cell looks at exactly three things: its left neighbor, itself,
and its right neighbor. Three binary inputs means there are only 8 possible
neighborhoods (000, 001, 010, … 111). The rule simply assigns a new state — 0 or 1 — to each
of those 8 cases. That is 8 bits of information, i.e. a single number from 0 to 255: the
rule number (Wolfram's numbering). The output for neighborhood
(l, c, r) is bit number l·4 + c·2 + r of the rule. The edges wrap around
(a ring), so the line has no boundary. This is the simplest non-trivial computational universe there
is — and it is the one-dimensional ancestor of the two-dimensional
Game of Life.
Why it matters
In the early 1980s Stephen Wolfram catalogued all 256 of these rules and noticed something that has shaped complexity science ever since: their behavior sorts into four classes.
- Class I — uniform: everything dies or freezes to a single state (e.g. rule 0).
- Class II — simple, repetitive: stable or periodic stripes and nested triangles (e.g. rule 250, rule 90's fractal).
- Class III — chaotic: aperiodic, random-looking texture (rule 30, whose center column is so statistically random that Mathematica used it as a random-number source).
- Class IV — complex: localized, interacting structures on the boundary between order and chaos (rule 110, proven Turing-complete by Matthew Cook — it can, in principle, compute anything a computer can).
The punchline is that complexity is not rare and not hard to find. You do not need a genome, a brain, or a differential equation. It is sitting inside a one-line rule on a line of bits. This is the cleanest possible illustration of the edge of chaos: the richest behavior lives right at the border between frozen order (Class I/II) and unstructured noise (Class III).
In the wild
These are abstract models, and it is honest to lead with that. Their value is as an existence proof: simple deterministic rules really do generate every class of behavior, chaos and computation included. A few real-world echoes:
- The chaotic pigmentation on the shell of the textile cone snail (Conus textile) has been compared to the output of rule 30 — a striking resemblance, not a demonstrated mechanism.
- Rule 184 is the minimal model of single-lane traffic flow, the same stop-and-go physics explored in phantom traffic jams.
- Wolfram's broader program (A New Kind of Science, 2002) argues that such simple programs are a better default model for nature than equations, and that complex systems are computationally equivalent. Those are sweeping and contested claims — the elementary CAs are real and beautiful; the grand metaphysics built on top of them is not settled science.
Try this
- Slowly dial the rule number from 0 to 255 and watch the four classes go by — dead, striped, fractal, chaotic — with no warning of which is next.
- Compare the three landmarks back to back: rule 90 (clean Sierpiński fractal), rule 30 (one-sided chaos), rule 110 (drifting triangles that collide and interact — the universal one).
- Switch the initial condition between Single cell (clean triangles from one seed) and Random (the rule's texture, away from any special starting point).
References
- Wolfram, S. (1983). "Statistical mechanics of cellular automata." Reviews of Modern Physics 55(3), 601–644.
- Wolfram, S. (1984). "Universality and complexity in cellular automata." Physica D 10(1–2), 1–35. (The four classes.)
- Cook, M. (2004). "Universality in Elementary Cellular Automata." Complex Systems 15(1), 1–40. (Rule 110 is Turing-complete.)
- Wolfram, S. (2002). A New Kind of Science. Wolfram Media.