SlideShare uma empresa Scribd logo
1 de 44
Presented by
ADEKUNLE ONAOPEPO HUSAMAT
1
 INTRODUCTION
 BACKGROUND
 SYNTAX
 COMPONENTS
 BEHAVIOUR
 VARIANTS
 APPLICATIONS
 CASE STUDIES
 LEVEL OF KNOWLEDGE
 ADVANTAGES
 DRAWBACKS
 REFERENCES
OVERVIEW
2
 What are Cellular Automata?
 CA are discrete dynamic systems.
 CA's are said to be discrete because they
operate in finite space and time and
with properties that can have only a
finite number of states.
 CA's are said to be dynamic because
they exhibit dynamic behaviours.
 Basic Idea: Simulate complex systems by
interaction of cells following easy rules.
 “Not to describe a complex system with
complex equations, but let the complexity
emerge by interaction of simple individuals
following simple rules.”
INTRODUCTION
From Another Perspective
it is a Finite State Machine, with
one transition function for all
the cells,
this transition function changes
the current state of a cell
depending on the previous state
for that cell and its neighbors.
3
BACKGROUND
4
Time Frame Major Players Contribution
Early 50’s J. Von Neuman, E.F. Codd,
Henrie & Moore , H Yamada &
S. Amoroso
Modeling biological
systems - cellular models
‘60s & ‘70s A. R. Smith , Hillis, Toffoli Language recognizer,
Image Processing
‘80 s S. Wolfram ,Crisp,Vichniac Discrete Lattice,statistical
systems, Physical systems
‘87 - ‘96 IIT KGP, Group Additive CA,
characterization,applications
‘97 - ‘99 B.E.C Group GF (2p) CA
Cellular Automata:
 Lattice,
 Neighbourhood,
 Set of discrete states,
 Set of transition rules,
 Discrete time.
“CAs contain enough complexity to simulate surprising
and novel change as reflected in emergent phenomena”
(Mike Batty)
SYNTAX
5
 Cell
 Basic element of a CA.
 Cells can be thought of as memory
elements that store state information.
 All cells are updated synchronously
according to the transition rules.
 Lattice
 Spatial web of cells.
 Simplest lattice is one dimensional.
 Others include 2,3… Dimensional
COMPONENTS
Initial
current
1 1 1 1 1 0 1 0 1 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0
0 1 1 1 1 1 1 0
Rule #126 6
• 2 dimensional
• 3 dimensional
•For 1D CA:
23 = 8 possible “neighborhoods”
(for 3 cells)
28 = 256 possible rules
• For 2D CA:
29 = 512 possible
“neighborhoods”
2512 possible rules (!!)
7
•The cells on the end may (or may not) be treated as
"touching" each other as if the line of cells were circular.
If we consider them as they touch each other, then the
cell (A) is a neighbor of cell (C)
8
• if #alive =< 2, then die
• if #alive = 3, then live
• if #alive >= 5, then die
• if #alive =< 2, then die
• if #alive = 3, then live
• if #alive >= 5, then die
• if #alive =< 2, then die
• if #alive = 3, then live
• if #alive >= 5, then die
“A CA is an array of identically programmed automata, or cells,
which interact with one another in a neighbourhood and have
definite state”
BEHAVIOUR
9
“A CA is an array of identically programmed automata, or cells,
which interact with one another in a neighborhood and have
definite state”
BEHAVIOUR
Von Neumann
Neighborhood
Moore Neighborhood
10
“A CA is an array of identically programmed automata, or cells,
which interact with one another in a neighborhood and have
definite state”
2 possible states: ON OFF
O
W JA
R
I T
D
G M
X E
N Z
R
P
A
Z
26 possible states: A … Z
Never infinite!
BEHAVIOUR
11
Rules Space and Time
t
t1
BEHAVIOUR
Initial Configuration
Initial Starting state of all cells in the lattice e.g
the initial configuration for all the cells is state 0,
except for 4 cells in state 1.
12
 Asynchronous CA
 CA rules are typically applied simultaneously across all cells in the lattice.
This variant allows the state of the cells to be updated asynchronously.
 Probabilistic CA
 The deterministic state-transitions are replaced with specifications of the
probabilities of the cell-value assignments.
 Non-homogenous CA
 State transition rules are allowed to vary from cell to cell.
 Mobile CA
 Some or all lattice sites are free to move about the lattice.
 Essentially primitive models of mobile robots.
 Used to model some aspects of military engagements.
 Structurally Dynamic CA
 The topology (the sites and connections among sites) are allowed to evolve.
VARIANTS
13
 Self-reproduction
 Diffusion equations
 Artificial Life
 Digital Physics
 Simulation of Cancer cells growth
 Predator – Prey Models
 Art
 Simulations of Social Movement
 Alternative to differential
equations
 CA based parallel processing
computers
 Image processing and pattern
recognition
APPLICATIONS
14
Study of evolution of rules involving one dimensional cellular automata
CASE STUDY
15
CASE STUDY
16
CASE STUDY
17
CASE STUDY
18
 I. Always reaches a state in which
all cells are dead or alive
 II. Periodic behavior
 III. Everything occurs randomly
 IV. Unstructured locally organized
patterns and complex behavior
Results: Classifying Cellular Automata Rules
CASE STUDY
19
CASE STUDY
During each time step the system is updated according to
the rules:
Forest Fire Model is a stochastic 3-state cellular automaton
defined on a d-dimensional lattice with Ld sites.
Each site is occupied by a tree, a burning tree, or is empty.
1. empty site  tree with the growth rate probability p
2. tree  burning tree with the lightning rate probability f, if no
nearest neighbour is burning
3. tree  burning tree with the probability 1-g, if at least one
nearest neighbour is burning, where g defines immunity.
4. burning tree  empty site
20
CASE STUDY
21
CASE STUDY
22
After some time forest
reaches the steady state
in which the mean
number of growing trees
equals the mean number
of burned trees.
CASE STUDY
23
 Model predator/prey relationship by CA
 Begins with a randomly distributed population of fish, sharks, and empty
cells in a 1000x2000 cell grid (2 million cells)
 Initially,
 50% of the cells are occupied by fish
 25% are occupied by sharks
 25% are empty
CASE STUDY
24
Breeding rule: if the current cell is empty
 If there are >= 4 neighbors of one species, and >= 3 of them are of
breeding age,
 Fish breeding age >= 2,
 Shark breeding age >=3,
and there are <4 of the other species:
then create a species of that type
 +1= baby fish (age = 1 at birth)
 -1 = baby shark (age = |-1| at birth)
CASE STUDY
Initially cells contain fish, sharks or are
empty
 Empty cells = 0 (black pixel)
 Fish = 1 (red pixel)
 Sharks = –1 (yellow pixel)
25
EMPTY
CASE STUDY
26
CASE STUDY
27
Shark rule: Details
If the current cell contains a shark:
 Sharks live for 20 generations
 If >=6 neighbors are sharks and fish neighbors =0, the shark dies (starvation)
 A shark has a 1/32 (.031) chance of dying due to random causes
 If a shark does not die, increment age
CASE STUDY
Fish rule: Details
If the current cell contains a fish:
 Fish live for 10 generations
 If >=5 neighbors are sharks, fish dies (shark food)
 If all 8 neighbors are fish, fish dies (overpopulation)
 If a fish does not die, increment age
28
 Next several screens show
behavior over a span of 10,000+
generations
CASE STUDY
29
Generation: 0
CASE STUDY
30
Generation: 500
CASE STUDY
31
Generation: 100
CASE STUDY
32
Generation: 1,000
CASE STUDY
33
Generation: 2,000
CASE STUDY
34
Generation: 4,000
CASE STUDY
35
Generation: 8,000
CASE STUDY
36
Generation: 10,500
CASE STUDY
37
Borders tended to ‘harden’ along vertical, horizontal and
diagonal lines
Borders of empty cells form between like species
Clumps of fish tend to coalesce and form convex shapes or
‘communities’
Long-term trends
CASE STUDY
38
Generation 100 20001000
4000 8000
Medium-sized population (1/16 of grid)
 Random placement of very small populations can favor one
species over another
 Fish favored: sharks die out
 Sharks favored: sharks predominate, but fish survive in
stable small numbers
CASE STUDY
39
Cellular automata provides structural knowledge level
through the initial configuration of the system that evolved
Generative knowledge level is also provided by the
transition rule to generate next data set of the system
LEVEL OF KNOWLEDGE
40
 Powerful computation engines.
 Allow very efficient parallel computation
 Discrete dynamical system simulator.
 Allow for a systematic investigation of complex phenomena.
 Original models of fundamental physics.
 Instead of looking at the equations of fundamental physics, consider
modelling them with CA.
 Emergent behaviour of complex group from simple individual
behaviour can be studied.
 Simulation results are much more intuitive as it is well visually
represented
 Simple to Implement
ADVANTAGES
41
 Not suitable for systems that require synthesis.
 Since CA rules cannot be easily predict results
 Results may contain redundant information.
 Patterns which seem complex can be generated but are un-important
data as concerned with emergent behaviour of the actual system.
 It is not sometimes easy to obtain perfect rules governing
evolution of the system
 It is difficult to understand whether a CA model captures the dynamics of
the system being modelled fully or adds superfluous dynamics
DISADVANTAGES
42
 Wolfram, S.: A new kind of science. Wolfram Media, Inc. (2002)
 Adamatzky, A., Alonso-Sanz, R., Lawniczak, A., Juarez Martinez, G.,
Morita, K., Worsch,T. (eds.): AUTOMATA-2008 Theory and
Application of Cellular Automata (2008)
 http://cell-auto.com
 http://www.brainyencyclopedia.com/encyclopedia/c/ce/cellular
_automaton.html
 Debasis Das: A Survey on Cellular Automata and Its Applications
REFERENCES
43
44

Mais conteúdo relacionado

Mais procurados

Lecture 26 local beam search
Lecture 26 local beam searchLecture 26 local beam search
Lecture 26 local beam searchHema Kashyap
 
Planning Techniques
Planning TechniquesPlanning Techniques
Planning TechniquesAvik Mandal
 
Jane Jacobs - Life and Work, a short presentation.
Jane Jacobs - Life and Work, a short presentation.Jane Jacobs - Life and Work, a short presentation.
Jane Jacobs - Life and Work, a short presentation.Mudassir Haqqani
 
blackboard architecture
blackboard architectureblackboard architecture
blackboard architectureNguyễn Ngân
 
Architectural styles and patterns
Architectural styles and patternsArchitectural styles and patterns
Architectural styles and patternsHimanshu
 
Constantinos apostolou doxiadis
Constantinos apostolou doxiadisConstantinos apostolou doxiadis
Constantinos apostolou doxiadisMoksha Bhatia
 
Reinforcement Learning for Test Case Prioritization
Reinforcement Learning for Test Case PrioritizationReinforcement Learning for Test Case Prioritization
Reinforcement Learning for Test Case PrioritizationLionel Briand
 
Analysis modeling & scenario based modeling
Analysis modeling &  scenario based modeling Analysis modeling &  scenario based modeling
Analysis modeling & scenario based modeling Benazir Fathima
 
Bio-inspired computing Algorithms.pptx
Bio-inspired computing Algorithms.pptxBio-inspired computing Algorithms.pptx
Bio-inspired computing Algorithms.pptxpawansher2002
 
Hill climbing algorithm in artificial intelligence
Hill climbing algorithm in artificial intelligenceHill climbing algorithm in artificial intelligence
Hill climbing algorithm in artificial intelligencesandeep54552
 
Neighbourhood analysis
Neighbourhood analysisNeighbourhood analysis
Neighbourhood analysisGeeva Chandana
 
fuzzy fuzzification and defuzzification
fuzzy fuzzification and defuzzificationfuzzy fuzzification and defuzzification
fuzzy fuzzification and defuzzificationNourhan Selem Salm
 
Production systems
Production systemsProduction systems
Production systemsAdri Jovin
 
Tissue Analysis - Urban Design - Architecture
Tissue Analysis - Urban Design - ArchitectureTissue Analysis - Urban Design - Architecture
Tissue Analysis - Urban Design - ArchitectureSabarathinam Kuppan
 

Mais procurados (20)

Lecture 26 local beam search
Lecture 26 local beam searchLecture 26 local beam search
Lecture 26 local beam search
 
Planning Techniques
Planning TechniquesPlanning Techniques
Planning Techniques
 
Hill climbing
Hill climbingHill climbing
Hill climbing
 
Expert system
Expert systemExpert system
Expert system
 
Ekistics by doxiadis
Ekistics by doxiadisEkistics by doxiadis
Ekistics by doxiadis
 
Jane Jacobs - Life and Work, a short presentation.
Jane Jacobs - Life and Work, a short presentation.Jane Jacobs - Life and Work, a short presentation.
Jane Jacobs - Life and Work, a short presentation.
 
blackboard architecture
blackboard architectureblackboard architecture
blackboard architecture
 
Legibility of city
Legibility of cityLegibility of city
Legibility of city
 
urban morphology
 urban morphology  urban morphology
urban morphology
 
Architectural styles and patterns
Architectural styles and patternsArchitectural styles and patterns
Architectural styles and patterns
 
Constantinos apostolou doxiadis
Constantinos apostolou doxiadisConstantinos apostolou doxiadis
Constantinos apostolou doxiadis
 
CS8592-OOAD Lecture Notes Unit-5
CS8592-OOAD Lecture Notes Unit-5 CS8592-OOAD Lecture Notes Unit-5
CS8592-OOAD Lecture Notes Unit-5
 
Reinforcement Learning for Test Case Prioritization
Reinforcement Learning for Test Case PrioritizationReinforcement Learning for Test Case Prioritization
Reinforcement Learning for Test Case Prioritization
 
Analysis modeling & scenario based modeling
Analysis modeling &  scenario based modeling Analysis modeling &  scenario based modeling
Analysis modeling & scenario based modeling
 
Bio-inspired computing Algorithms.pptx
Bio-inspired computing Algorithms.pptxBio-inspired computing Algorithms.pptx
Bio-inspired computing Algorithms.pptx
 
Hill climbing algorithm in artificial intelligence
Hill climbing algorithm in artificial intelligenceHill climbing algorithm in artificial intelligence
Hill climbing algorithm in artificial intelligence
 
Neighbourhood analysis
Neighbourhood analysisNeighbourhood analysis
Neighbourhood analysis
 
fuzzy fuzzification and defuzzification
fuzzy fuzzification and defuzzificationfuzzy fuzzification and defuzzification
fuzzy fuzzification and defuzzification
 
Production systems
Production systemsProduction systems
Production systems
 
Tissue Analysis - Urban Design - Architecture
Tissue Analysis - Urban Design - ArchitectureTissue Analysis - Urban Design - Architecture
Tissue Analysis - Urban Design - Architecture
 

Destaque

Cellular Automata Models of Social Processes
Cellular Automata Models of Social ProcessesCellular Automata Models of Social Processes
Cellular Automata Models of Social ProcessesSSA KPI
 
Cellular automata
Cellular automataCellular automata
Cellular automataYang Yeeun
 
Cellular automata by Devdutta Chakrabarti
Cellular automata by Devdutta ChakrabartiCellular automata by Devdutta Chakrabarti
Cellular automata by Devdutta ChakrabartiDevdutta Chakrabarti
 
cellular automata as a test pattern generator and output response compactor f...
cellular automata as a test pattern generator and output response compactor f...cellular automata as a test pattern generator and output response compactor f...
cellular automata as a test pattern generator and output response compactor f...Shiva Narayan Reddy
 
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...Bayes Ahmed
 
Consumerbehavior-Omid-Roozmand
Consumerbehavior-Omid-RoozmandConsumerbehavior-Omid-Roozmand
Consumerbehavior-Omid-Roozmandestephanm
 
Presentation adv theo cs fadhil
Presentation adv theo cs fadhilPresentation adv theo cs fadhil
Presentation adv theo cs fadhilFadhil Sukmadinata
 
1D/2D Cellular Automata Modeling with Modelica
1D/2D Cellular Automata Modeling with Modelica1D/2D Cellular Automata Modeling with Modelica
1D/2D Cellular Automata Modeling with Modelicavictorinosanz
 
Educational Software Engineering: Where Software Engineering, Education, and ...
Educational Software Engineering: Where Software Engineering, Education, and ...Educational Software Engineering: Where Software Engineering, Education, and ...
Educational Software Engineering: Where Software Engineering, Education, and ...Tao Xie
 
GIS and Agent-based modeling: Part 1
GIS and Agent-based modeling: Part 1GIS and Agent-based modeling: Part 1
GIS and Agent-based modeling: Part 1crooksAndrew
 
StrataGEM: A Generic Petri Net Verification Framework
StrataGEM: A Generic Petri Net Verification FrameworkStrataGEM: A Generic Petri Net Verification Framework
StrataGEM: A Generic Petri Net Verification FrameworkEdmundo López Bóbeda
 
Model checking of time petri nets
Model checking of time petri netsModel checking of time petri nets
Model checking of time petri netsMarwa Al-Rikaby
 

Destaque (20)

Cellular Automata
Cellular AutomataCellular Automata
Cellular Automata
 
Cellular Automata
Cellular AutomataCellular Automata
Cellular Automata
 
Cellular automata
Cellular automataCellular automata
Cellular automata
 
Cellular Automata Models of Social Processes
Cellular Automata Models of Social ProcessesCellular Automata Models of Social Processes
Cellular Automata Models of Social Processes
 
Cellular automata
Cellular automataCellular automata
Cellular automata
 
Cellular automata by Devdutta Chakrabarti
Cellular automata by Devdutta ChakrabartiCellular automata by Devdutta Chakrabarti
Cellular automata by Devdutta Chakrabarti
 
Cellular automata
Cellular automata Cellular automata
Cellular automata
 
CELLULAR AUTOMATA TRAFFIC FLOW MODEL
CELLULAR AUTOMATA TRAFFIC FLOW MODELCELLULAR AUTOMATA TRAFFIC FLOW MODEL
CELLULAR AUTOMATA TRAFFIC FLOW MODEL
 
cellular automata as a test pattern generator and output response compactor f...
cellular automata as a test pattern generator and output response compactor f...cellular automata as a test pattern generator and output response compactor f...
cellular automata as a test pattern generator and output response compactor f...
 
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...
Urban Land Cover Change Detection Analysis and Modelling Spatio-Temporal Grow...
 
Consumerbehavior-Omid-Roozmand
Consumerbehavior-Omid-RoozmandConsumerbehavior-Omid-Roozmand
Consumerbehavior-Omid-Roozmand
 
Presentation adv theo cs fadhil
Presentation adv theo cs fadhilPresentation adv theo cs fadhil
Presentation adv theo cs fadhil
 
1D/2D Cellular Automata Modeling with Modelica
1D/2D Cellular Automata Modeling with Modelica1D/2D Cellular Automata Modeling with Modelica
1D/2D Cellular Automata Modeling with Modelica
 
Cellular Automata
Cellular AutomataCellular Automata
Cellular Automata
 
Educational Software Engineering: Where Software Engineering, Education, and ...
Educational Software Engineering: Where Software Engineering, Education, and ...Educational Software Engineering: Where Software Engineering, Education, and ...
Educational Software Engineering: Where Software Engineering, Education, and ...
 
Cellular Automata- Dengue Fever
Cellular Automata- Dengue FeverCellular Automata- Dengue Fever
Cellular Automata- Dengue Fever
 
Agent Based Models
Agent Based ModelsAgent Based Models
Agent Based Models
 
GIS and Agent-based modeling: Part 1
GIS and Agent-based modeling: Part 1GIS and Agent-based modeling: Part 1
GIS and Agent-based modeling: Part 1
 
StrataGEM: A Generic Petri Net Verification Framework
StrataGEM: A Generic Petri Net Verification FrameworkStrataGEM: A Generic Petri Net Verification Framework
StrataGEM: A Generic Petri Net Verification Framework
 
Model checking of time petri nets
Model checking of time petri netsModel checking of time petri nets
Model checking of time petri nets
 

Semelhante a Cellular automata : A simple Introduction

Cellular Automata, PDEs and Pattern Formation
Cellular Automata, PDEs and Pattern FormationCellular Automata, PDEs and Pattern Formation
Cellular Automata, PDEs and Pattern FormationXin-She Yang
 
Two dimensional-cellular-automata
Two dimensional-cellular-automataTwo dimensional-cellular-automata
Two dimensional-cellular-automataMazharul Shaik
 
The Basic of Molecular Dynamics Simulation
The Basic of Molecular Dynamics SimulationThe Basic of Molecular Dynamics Simulation
The Basic of Molecular Dynamics SimulationSyed Lokman
 
Model based cellularautomataonspreadofrumours
Model based cellularautomataonspreadofrumoursModel based cellularautomataonspreadofrumours
Model based cellularautomataonspreadofrumoursDr. Michael Agbaje
 
Using a theory of nematic liquid crystals to model swimming microorganisms
Using a theory of nematic liquid crystals to model swimming microorganismsUsing a theory of nematic liquid crystals to model swimming microorganisms
Using a theory of nematic liquid crystals to model swimming microorganismsNigel Mottram
 
Areejit Samal Emergence Alaska 2013
Areejit Samal Emergence Alaska 2013Areejit Samal Emergence Alaska 2013
Areejit Samal Emergence Alaska 2013Areejit Samal
 
Annu. Rev. Mater. Res. 2002 Vol 32 P 53 Overview Cellular Automa
Annu.  Rev.  Mater.  Res. 2002 Vol 32 P 53 Overview Cellular AutomaAnnu.  Rev.  Mater.  Res. 2002 Vol 32 P 53 Overview Cellular Automa
Annu. Rev. Mater. Res. 2002 Vol 32 P 53 Overview Cellular AutomaDierk Raabe
 
Computational Universe
Computational UniverseComputational Universe
Computational UniverseMehmet Zirek
 
Membranes new
Membranes newMembranes new
Membranes newMUBOSScz
 
New Geometries for Cellular Automata
New Geometries for Cellular AutomataNew Geometries for Cellular Automata
New Geometries for Cellular AutomataSamanvithab
 
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...Indian dental academy
 
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONS
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONSANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONS
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONSijcsit
 
Eliano Pessa
Eliano PessaEliano Pessa
Eliano Pessaagrilinea
 
Chaos Communication
Chaos CommunicationChaos Communication
Chaos CommunicationAkshay Anand
 
Urop poster 2014 benson and mat 5 13 14 (2)
Urop poster 2014 benson and mat 5 13 14 (2)Urop poster 2014 benson and mat 5 13 14 (2)
Urop poster 2014 benson and mat 5 13 14 (2)Mathew Shum
 
Cell Membrane Diffusion
Cell Membrane DiffusionCell Membrane Diffusion
Cell Membrane DiffusionKim Moore
 

Semelhante a Cellular automata : A simple Introduction (20)

Cellular Automata, PDEs and Pattern Formation
Cellular Automata, PDEs and Pattern FormationCellular Automata, PDEs and Pattern Formation
Cellular Automata, PDEs and Pattern Formation
 
Two dimensional-cellular-automata
Two dimensional-cellular-automataTwo dimensional-cellular-automata
Two dimensional-cellular-automata
 
The Basic of Molecular Dynamics Simulation
The Basic of Molecular Dynamics SimulationThe Basic of Molecular Dynamics Simulation
The Basic of Molecular Dynamics Simulation
 
Model based cellularautomataonspreadofrumours
Model based cellularautomataonspreadofrumoursModel based cellularautomataonspreadofrumours
Model based cellularautomataonspreadofrumours
 
Using a theory of nematic liquid crystals to model swimming microorganisms
Using a theory of nematic liquid crystals to model swimming microorganismsUsing a theory of nematic liquid crystals to model swimming microorganisms
Using a theory of nematic liquid crystals to model swimming microorganisms
 
Percolation Model and Controllability
Percolation Model and ControllabilityPercolation Model and Controllability
Percolation Model and Controllability
 
Areejit Samal Emergence Alaska 2013
Areejit Samal Emergence Alaska 2013Areejit Samal Emergence Alaska 2013
Areejit Samal Emergence Alaska 2013
 
Annu. Rev. Mater. Res. 2002 Vol 32 P 53 Overview Cellular Automa
Annu.  Rev.  Mater.  Res. 2002 Vol 32 P 53 Overview Cellular AutomaAnnu.  Rev.  Mater.  Res. 2002 Vol 32 P 53 Overview Cellular Automa
Annu. Rev. Mater. Res. 2002 Vol 32 P 53 Overview Cellular Automa
 
Computational Universe
Computational UniverseComputational Universe
Computational Universe
 
Membranes new
Membranes newMembranes new
Membranes new
 
New Geometries for Cellular Automata
New Geometries for Cellular AutomataNew Geometries for Cellular Automata
New Geometries for Cellular Automata
 
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...
Nerve muscle physiology1 /certified fixed orthodontic courses by Indian denta...
 
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONS
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONSANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONS
ANALYSIS OF ELEMENTARY CELLULAR AUTOMATA BOUNDARY CONDITIONS
 
Eliano Pessa
Eliano PessaEliano Pessa
Eliano Pessa
 
Chaos Communication
Chaos CommunicationChaos Communication
Chaos Communication
 
Urop poster 2014 benson and mat 5 13 14 (2)
Urop poster 2014 benson and mat 5 13 14 (2)Urop poster 2014 benson and mat 5 13 14 (2)
Urop poster 2014 benson and mat 5 13 14 (2)
 
Cell Membrane Diffusion
Cell Membrane DiffusionCell Membrane Diffusion
Cell Membrane Diffusion
 
EM Term Paper
EM Term PaperEM Term Paper
EM Term Paper
 
Lecture at the C3BI 2018
Lecture at the C3BI 2018Lecture at the C3BI 2018
Lecture at the C3BI 2018
 
Ecis Applied Biophysics
Ecis Applied BiophysicsEcis Applied Biophysics
Ecis Applied Biophysics
 

Último

Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsSérgio Sacani
 
Zoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfZoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfSumit Kumar yadav
 
Chemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfChemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfSumit Kumar yadav
 
Botany krishna series 2nd semester Only Mcq type questions
Botany krishna series 2nd semester Only Mcq type questionsBotany krishna series 2nd semester Only Mcq type questions
Botany krishna series 2nd semester Only Mcq type questionsSumit Kumar yadav
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bSérgio Sacani
 
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...Monika Rani
 
GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)Areesha Ahmad
 
Pulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceuticsPulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceuticssakshisoni2385
 
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...ssifa0344
 
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRStunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRDelhi Call girls
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoSérgio Sacani
 
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptx
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptxSCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptx
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptxRizalinePalanog2
 
Recombinant DNA technology (Immunological screening)
Recombinant DNA technology (Immunological screening)Recombinant DNA technology (Immunological screening)
Recombinant DNA technology (Immunological screening)PraveenaKalaiselvan1
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPirithiRaju
 
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICESAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICEayushi9330
 
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...Lokesh Kothari
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​kaibalyasahoo82800
 
Forensic Biology & Its biological significance.pdf
Forensic Biology & Its biological significance.pdfForensic Biology & Its biological significance.pdf
Forensic Biology & Its biological significance.pdfrohankumarsinghrore1
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfSumit Kumar yadav
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsSérgio Sacani
 

Último (20)

Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
 
Zoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdfZoology 4th semester series (krishna).pdf
Zoology 4th semester series (krishna).pdf
 
Chemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfChemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdf
 
Botany krishna series 2nd semester Only Mcq type questions
Botany krishna series 2nd semester Only Mcq type questionsBotany krishna series 2nd semester Only Mcq type questions
Botany krishna series 2nd semester Only Mcq type questions
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
 
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
Vip profile Call Girls In Lonavala 9748763073 For Genuine Sex Service At Just...
 
GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)GBSN - Microbiology (Unit 2)
GBSN - Microbiology (Unit 2)
 
Pulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceuticsPulmonary drug delivery system M.pharm -2nd sem P'ceutics
Pulmonary drug delivery system M.pharm -2nd sem P'ceutics
 
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
TEST BANK For Radiologic Science for Technologists, 12th Edition by Stewart C...
 
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCRStunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
Stunning ➥8448380779▻ Call Girls In Panchshil Enclave Delhi NCR
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on Io
 
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptx
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptxSCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptx
SCIENCE-4-QUARTER4-WEEK-4-PPT-1 (1).pptx
 
Recombinant DNA technology (Immunological screening)
Recombinant DNA technology (Immunological screening)Recombinant DNA technology (Immunological screening)
Recombinant DNA technology (Immunological screening)
 
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdfPests of cotton_Sucking_Pests_Dr.UPR.pdf
Pests of cotton_Sucking_Pests_Dr.UPR.pdf
 
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICESAMASTIPUR CALL GIRL 7857803690  LOW PRICE  ESCORT SERVICE
SAMASTIPUR CALL GIRL 7857803690 LOW PRICE ESCORT SERVICE
 
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
GUIDELINES ON SIMILAR BIOLOGICS Regulatory Requirements for Marketing Authori...
 
Nanoparticles synthesis and characterization​ ​
Nanoparticles synthesis and characterization​  ​Nanoparticles synthesis and characterization​  ​
Nanoparticles synthesis and characterization​ ​
 
Forensic Biology & Its biological significance.pdf
Forensic Biology & Its biological significance.pdfForensic Biology & Its biological significance.pdf
Forensic Biology & Its biological significance.pdf
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdf
 
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune WaterworldsBiogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
Biogenic Sulfur Gases as Biosignatures on Temperate Sub-Neptune Waterworlds
 

Cellular automata : A simple Introduction

  • 2.  INTRODUCTION  BACKGROUND  SYNTAX  COMPONENTS  BEHAVIOUR  VARIANTS  APPLICATIONS  CASE STUDIES  LEVEL OF KNOWLEDGE  ADVANTAGES  DRAWBACKS  REFERENCES OVERVIEW 2
  • 3.  What are Cellular Automata?  CA are discrete dynamic systems.  CA's are said to be discrete because they operate in finite space and time and with properties that can have only a finite number of states.  CA's are said to be dynamic because they exhibit dynamic behaviours.  Basic Idea: Simulate complex systems by interaction of cells following easy rules.  “Not to describe a complex system with complex equations, but let the complexity emerge by interaction of simple individuals following simple rules.” INTRODUCTION From Another Perspective it is a Finite State Machine, with one transition function for all the cells, this transition function changes the current state of a cell depending on the previous state for that cell and its neighbors. 3
  • 4. BACKGROUND 4 Time Frame Major Players Contribution Early 50’s J. Von Neuman, E.F. Codd, Henrie & Moore , H Yamada & S. Amoroso Modeling biological systems - cellular models ‘60s & ‘70s A. R. Smith , Hillis, Toffoli Language recognizer, Image Processing ‘80 s S. Wolfram ,Crisp,Vichniac Discrete Lattice,statistical systems, Physical systems ‘87 - ‘96 IIT KGP, Group Additive CA, characterization,applications ‘97 - ‘99 B.E.C Group GF (2p) CA
  • 5. Cellular Automata:  Lattice,  Neighbourhood,  Set of discrete states,  Set of transition rules,  Discrete time. “CAs contain enough complexity to simulate surprising and novel change as reflected in emergent phenomena” (Mike Batty) SYNTAX 5
  • 6.  Cell  Basic element of a CA.  Cells can be thought of as memory elements that store state information.  All cells are updated synchronously according to the transition rules.  Lattice  Spatial web of cells.  Simplest lattice is one dimensional.  Others include 2,3… Dimensional COMPONENTS Initial current 1 1 1 1 1 0 1 0 1 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 0 1 1 1 1 1 1 0 Rule #126 6
  • 7. • 2 dimensional • 3 dimensional •For 1D CA: 23 = 8 possible “neighborhoods” (for 3 cells) 28 = 256 possible rules • For 2D CA: 29 = 512 possible “neighborhoods” 2512 possible rules (!!) 7
  • 8. •The cells on the end may (or may not) be treated as "touching" each other as if the line of cells were circular. If we consider them as they touch each other, then the cell (A) is a neighbor of cell (C) 8
  • 9. • if #alive =< 2, then die • if #alive = 3, then live • if #alive >= 5, then die • if #alive =< 2, then die • if #alive = 3, then live • if #alive >= 5, then die • if #alive =< 2, then die • if #alive = 3, then live • if #alive >= 5, then die “A CA is an array of identically programmed automata, or cells, which interact with one another in a neighbourhood and have definite state” BEHAVIOUR 9
  • 10. “A CA is an array of identically programmed automata, or cells, which interact with one another in a neighborhood and have definite state” BEHAVIOUR Von Neumann Neighborhood Moore Neighborhood 10
  • 11. “A CA is an array of identically programmed automata, or cells, which interact with one another in a neighborhood and have definite state” 2 possible states: ON OFF O W JA R I T D G M X E N Z R P A Z 26 possible states: A … Z Never infinite! BEHAVIOUR 11
  • 12. Rules Space and Time t t1 BEHAVIOUR Initial Configuration Initial Starting state of all cells in the lattice e.g the initial configuration for all the cells is state 0, except for 4 cells in state 1. 12
  • 13.  Asynchronous CA  CA rules are typically applied simultaneously across all cells in the lattice. This variant allows the state of the cells to be updated asynchronously.  Probabilistic CA  The deterministic state-transitions are replaced with specifications of the probabilities of the cell-value assignments.  Non-homogenous CA  State transition rules are allowed to vary from cell to cell.  Mobile CA  Some or all lattice sites are free to move about the lattice.  Essentially primitive models of mobile robots.  Used to model some aspects of military engagements.  Structurally Dynamic CA  The topology (the sites and connections among sites) are allowed to evolve. VARIANTS 13
  • 14.  Self-reproduction  Diffusion equations  Artificial Life  Digital Physics  Simulation of Cancer cells growth  Predator – Prey Models  Art  Simulations of Social Movement  Alternative to differential equations  CA based parallel processing computers  Image processing and pattern recognition APPLICATIONS 14
  • 15. Study of evolution of rules involving one dimensional cellular automata CASE STUDY 15
  • 19.  I. Always reaches a state in which all cells are dead or alive  II. Periodic behavior  III. Everything occurs randomly  IV. Unstructured locally organized patterns and complex behavior Results: Classifying Cellular Automata Rules CASE STUDY 19
  • 20. CASE STUDY During each time step the system is updated according to the rules: Forest Fire Model is a stochastic 3-state cellular automaton defined on a d-dimensional lattice with Ld sites. Each site is occupied by a tree, a burning tree, or is empty. 1. empty site  tree with the growth rate probability p 2. tree  burning tree with the lightning rate probability f, if no nearest neighbour is burning 3. tree  burning tree with the probability 1-g, if at least one nearest neighbour is burning, where g defines immunity. 4. burning tree  empty site 20
  • 23. After some time forest reaches the steady state in which the mean number of growing trees equals the mean number of burned trees. CASE STUDY 23
  • 24.  Model predator/prey relationship by CA  Begins with a randomly distributed population of fish, sharks, and empty cells in a 1000x2000 cell grid (2 million cells)  Initially,  50% of the cells are occupied by fish  25% are occupied by sharks  25% are empty CASE STUDY 24
  • 25. Breeding rule: if the current cell is empty  If there are >= 4 neighbors of one species, and >= 3 of them are of breeding age,  Fish breeding age >= 2,  Shark breeding age >=3, and there are <4 of the other species: then create a species of that type  +1= baby fish (age = 1 at birth)  -1 = baby shark (age = |-1| at birth) CASE STUDY Initially cells contain fish, sharks or are empty  Empty cells = 0 (black pixel)  Fish = 1 (red pixel)  Sharks = –1 (yellow pixel) 25
  • 28. Shark rule: Details If the current cell contains a shark:  Sharks live for 20 generations  If >=6 neighbors are sharks and fish neighbors =0, the shark dies (starvation)  A shark has a 1/32 (.031) chance of dying due to random causes  If a shark does not die, increment age CASE STUDY Fish rule: Details If the current cell contains a fish:  Fish live for 10 generations  If >=5 neighbors are sharks, fish dies (shark food)  If all 8 neighbors are fish, fish dies (overpopulation)  If a fish does not die, increment age 28
  • 29.  Next several screens show behavior over a span of 10,000+ generations CASE STUDY 29
  • 38. Borders tended to ‘harden’ along vertical, horizontal and diagonal lines Borders of empty cells form between like species Clumps of fish tend to coalesce and form convex shapes or ‘communities’ Long-term trends CASE STUDY 38
  • 39. Generation 100 20001000 4000 8000 Medium-sized population (1/16 of grid)  Random placement of very small populations can favor one species over another  Fish favored: sharks die out  Sharks favored: sharks predominate, but fish survive in stable small numbers CASE STUDY 39
  • 40. Cellular automata provides structural knowledge level through the initial configuration of the system that evolved Generative knowledge level is also provided by the transition rule to generate next data set of the system LEVEL OF KNOWLEDGE 40
  • 41.  Powerful computation engines.  Allow very efficient parallel computation  Discrete dynamical system simulator.  Allow for a systematic investigation of complex phenomena.  Original models of fundamental physics.  Instead of looking at the equations of fundamental physics, consider modelling them with CA.  Emergent behaviour of complex group from simple individual behaviour can be studied.  Simulation results are much more intuitive as it is well visually represented  Simple to Implement ADVANTAGES 41
  • 42.  Not suitable for systems that require synthesis.  Since CA rules cannot be easily predict results  Results may contain redundant information.  Patterns which seem complex can be generated but are un-important data as concerned with emergent behaviour of the actual system.  It is not sometimes easy to obtain perfect rules governing evolution of the system  It is difficult to understand whether a CA model captures the dynamics of the system being modelled fully or adds superfluous dynamics DISADVANTAGES 42
  • 43.  Wolfram, S.: A new kind of science. Wolfram Media, Inc. (2002)  Adamatzky, A., Alonso-Sanz, R., Lawniczak, A., Juarez Martinez, G., Morita, K., Worsch,T. (eds.): AUTOMATA-2008 Theory and Application of Cellular Automata (2008)  http://cell-auto.com  http://www.brainyencyclopedia.com/encyclopedia/c/ce/cellular _automaton.html  Debasis Das: A Survey on Cellular Automata and Its Applications REFERENCES 43
  • 44. 44