In 1970, mathematician John Horton Conway published a set of rules so simple they fit on a napkin, yet so powerful they can simulate any computer ever built. He called it the Game of Life â though it is not a game you play in the usual sense, and whether it counts as life is a philosophical question.
The world is an infinite grid of cells, each either alive (on) or dead (off). Every tick of the clock, three rules decide the next generation:
- Birth: a dead cell with exactly 3 live neighbors comes alive.
- Survival: a live cell with 2 or 3 live neighbors stays alive.
- Death: every other live cell dies (underpopulation or overcrowding).
That is all. From those three sentences emerge gliders that slide across the grid, oscillators that pulse forever, spaceships, guns that shoot gliders, and eventually â proven rigorously in 1982 â a complete Turing machine built of nothing but on/off cells. Whatever a computer can compute, the Game of Life can compute too.
The catch? Turing completeness comes with Turing's own curse. Predicting whether a pattern will ever vanish, grow forever, or stabilize is undecidable â provably impossible in general, by a direct reduction from the halting problem.
Comments
Loading comments...