Eli5: What’s the significance of Conway’s Game Of Life?

884 viewsMathematicsOther

I know about it, I’ve seen videos of it, but I have no idea how it works, or why it’s important. I mainly don’t get why it’s become to infamous.

In: Mathematics

16 Answers

Anonymous 0 Comments

It’s a “game” that takes place on an infinite 2D grid of cells, where the state of the game (which cells are live and which are dead) evolves at each step according to a simple set of rules.

The rules are pretty simple, you can read [Wikipedia](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) for the rules and how it works.

The significance of it is that it’s [Turing complete](https://en.wikipedia.org/wiki/Turing_completeness) (it’s a model of computation that can compute anything a Turing machine can), meaning it can simulate a computer.

You are viewing 1 out of 16 answers, click here to view all answers.