Skip to content

Commit ce2b8e1

Browse files
committed
Add cellular-automaton topic
1 parent f85c52d commit ce2b8e1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

topics/cellular-automaton/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
aliases: cellular-automata, cellular-automatons
3+
created_by: Stanisław Ulam, John von Neumann
4+
display_name: Cellular automaton
5+
related: automaton, conways-game-of-life
6+
released: 1940
7+
short_description: An automaton consisting of cells arranged in a regular grid. A new generation of cells is created with an associated rule.
8+
topic: cellular-automaton
9+
wikipedia_url: https://en.wikipedia.org/wiki/Cellular_automaton
10+
---
11+
A **cellular automaton** is a discrete [model of computation](https://en.wikipedia.org/wiki/Model_of_computation) studied in [automata theory](https://en.wikipedia.org/wiki/Automata_theory).
12+
It consists of a regular grid of cells, each in one of a finite number of states; a new generation is created according to some fixed rule that determines the new state of each cell in terms of the current state of the cell and its neighborhood.
13+
Typically, the rule for updating the state of cells is the same for each cell and does not change over time, and is applied to the whole grid simultaneously, though exceptions are known, such as the [stochastic cellular automaton](https://en.wikipedia.org/wiki/Stochastic_cellular_automaton) and [asynchronous cellular automaton](https://en.wikipedia.org/wiki/Asynchronous_cellular_automaton).
14+
15+
A well-known cellular automaton is [Conway’s Game of Life](https://github.com/topics/conways-game-of-life).

0 commit comments

Comments
 (0)