cellular automata and nature

2
Cellular Automata and nature-inspired Computing Research A cellular automaton is a collection of "coloured" cells on a grid of a certain shape that evolves through a number of time steps. This is according to a set of rules based on the states of neighbouring cells. The rules are then applied repeatedly for as many time steps as desired Cellular automata were studied in the early 1950s as a possible model for biological systems. Cellular automata can be seen as a generalizatio n of Life Cellular automata come in a variety of shapes and varieties. One of the most fundamental properties of a cellular automaton is the type of grid on which it is computed. The simplest such "grid" is a one-dimensional line. In two dimensions, square, triangular, and hexagonal grids may be considered. The Following items can be changed: y The number of dimensions can be changed. y The way cells are arranged can be changed y The number of states can be changed The number of colours a cellular automaton may take must also be specified. For a binary automaton, colour 0 is commonly called "white," and colour 1 is commonly called "black". However, cellular automata having a continuous range of possible values may also be considered. Conway's Life which is also known as the Game Of Life, GOL is the most well known cellular automaton. It has been widely explored, and a large number of patterns have been found. It's not a game like the ones you would normally play. The game is played on a 2- dimensional grid. Each cell can be either "on" or "of f". Each cell has eight neighbours. The life rule is: y If a cell is off and has 3 living neighbours (out of 8), it will become alive in the next generation. y If a cell is on and has 2 or 3 living neighbours, it survives; otherwise, it dies in the next generation.  A commonly used shorthand for this is 23/3 (or S23/B3), which signifies that a living cell survives if it has two l ive neighbo rs, and is born if it has three alive neighbors. We must calculate the counts of alive neighbors for each cell:

Upload: kishan-morjaria

Post on 06-Apr-2018

218 views

Category:

Documents


0 download

TRANSCRIPT

8/3/2019 Cellular Automata and Nature

http://slidepdf.com/reader/full/cellular-automata-and-nature 1/2

8/3/2019 Cellular Automata and Nature

http://slidepdf.com/reader/full/cellular-automata-and-nature 2/2

Alive cells can survive when they have either 2 or 3 neighbors. Two

central dots have exactly 2 living neighbors, so they will survive. Two

other dots have only 1 neighbor; they will die of loneliness.

Four of them have exactly 3 neighbors; those four cells will become

alive. The rest of empty cells will stay off - they have only 0, 1 or 2

neighbors.

Next Generation:

4 cells will survive (the ones with 3 neighbors). Two other cells have to

die

2 empty cells have 3 neighbors and will come alive. The rest will stay off.

Third Generation:

No cells have 3 neighbors, so no new cells will come alive. All alive cells

have exactly 2 neighbors, so all of them will survive. We have reached astable pattern (still life) that will not change in next generations.

Some of best known applications of Cellular Automata are:

y  image processing and image generation,

y  simulations of biology,

y  simulations of chemistry,

y  simulations of physics,

y  design of new computing hardware and algorithms,

y  art

Nature Inspired Computing (NIC) is one that aims to develop new computing techniques after

getting ideas by observing how nature behaves in various situations to solve complex problems.

Nature presents the best example of how to solve problems efficiently and effectively. We attempt

to create computational methods for addressing problems by transferring knowledge from natural

systems to engineered systems.

Examples of engineering uses include:

y  image processing and mining

y  information retrieval and knowledge extraction

y  modelling and analysis of genetic and metabolic networks for drug design and disease

analysis

y  aerodynamic structure design

y  Self-organization of collective systems.

Source: http://psoup.math.wisc.edu/mcell/whatis_life.html,Wikipedia and other sources,

http://www2.surrey.ac.uk/computing/research/bima/index.htm