Sunday, April 16, 2017

Cellular Automata - Rule 90 and Rule 110

A cellular automaton is a model used in computer science and mathematics. The idea is to model a dynamic system by using a number of cells. Each cell has one of several possible states. With each "turn" or iteration the state of the current cell is determined by two things: its current state, and the states of the neighbouring cells.


Source WIKIPEDIA.

Rule 90:
current pattern111110101100011010001000
new state for center cell01011010
Output generated by my freepascal program of rule 90:










Rule 110:

current pattern111110101100011010001000
new state for center cell01101110
Output generated by my freepascal program of rule 110:


No comments:

Post a Comment