Difference between revisions of "Cellular automata"

From Things and Stuff Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  
 
== General ==
 
== General ==
 +
* https://en.wikipedia.org/wiki/Cellular_automaton
 +
* [https://www.youtube.com/watch?v=QxQBkgCdHGU Cellular Automata] - The mathematics of how life works
 +
* https://code.google.com/p/ruletablerepository/
 +
 +
* https://en.wikipedia.org/wiki/Elementary_cellular_automaton - one-dimensional cellular automaton where there are two possible states (labeled 0 and 1) and the rule to determine the state of a cell in the next generation depends only on the current state of the cell and its two immediate neighbors
 +
* https://en.wikipedia.org/wiki/Wolfram_code
 +
 +
* http://atlas.wolfram.com/TOC/TOC_101.html
 +
** http://atlas.wolfram.com/01/01/
 +
 +
* https://en.wikipedia.org/wiki/Reversible_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Block_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Second-order_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Billiard-ball_computer
 +
 +
* https://en.wikipedia.org/wiki/Stochastic_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Asynchronous_cellular_automaton
 +
 +
* https://en.wikipedia.org/wiki/Von_Neumann_cellular_automata
 +
** https://en.wikipedia.org/wiki/Von_Neumann_universal_constructor
 +
* https://en.wikipedia.org/wiki/Codd%27s_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Langton%27s_loops
 +
* https://en.wikipedia.org/wiki/Nobili_cellular_automata
 +
* https://en.wikipedia.org/wiki/Cyclic_cellular_automaton
 +
 +
* https://news.ycombinator.com/item?id=12047338
 +
 +
* [[Game of Life]]
 +
* https://en.wikipedia.org/wiki/Moore_neighborhood
 +
* https://en.wikipedia.org/wiki/Speed_of_light_(cellular_automaton)
 +
* https://en.wikipedia.org/wiki/Life-like_cellular_automaton
 +
 +
* https://en.wikipedia.org/wiki/Movable_cellular_automaton
 +
* https://en.wikipedia.org/wiki/Continuous_automaton
 +
* https://en.wikipedia.org/wiki/Continuous_spatial_automaton
 +
 +
* https://en.wikipedia.org/wiki/Lattice_gas_automaton
 +
* https://en.wikipedia.org/wiki/Quantum_cellular_automata
 +
* https://en.wikipedia.org/wiki/Quantum_dot_cellular_automata
 +
 +
* https://metalab.at/wiki/EvoCell
 +
** https://www.youtube.com/watch?v=lJxqALVjz8o
 +
 +
* https://xkcd.com/505/
 +
** http://xkcdexplained.wikia.com/wiki/A_Bunch_of_Rocks
 +
 +
 +
== Game of Life ==
 
* https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
 
* https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
  

Revision as of 21:36, 10 April 2018

General

  • WP: Elementary_cellular_automaton - one-dimensional cellular automaton where there are two possible states (labeled 0 and 1) and the rule to determine the state of a cell in the next generation depends only on the current state of the cell and its two immediate neighbors
  • WP: Wolfram_code


Game of Life

telnet gameoflife.erikzaadi.com 1337


  • Life in life - Conway's Game of Life, emulated in Conway's Game of Life.


Software

  • Golly is an open source, cross-platform application for exploring Conway's Game of Life and other cellular automata.