The Shape of Math R09 VOL.3 The Life Game 09.08.0 4 Masashi SANAE.

Slides:



Advertisements
Similar presentations
The Race is On! Putting Words in Alphabetical Order.
Advertisements

Discrete Math Recurrence Relations 1.
43 Order of Operations  ( ) + - X.
{ John Conway’s Game of Life.  John von Neumann  Wanted to find/create a machine that could replicate itself  Found an answer, but it was very complex.
Game of Life in 21 st Century ECE817 Presentation By Kyusik Chung
CITS4403 Computational Modelling Game of Life. One of the first cellular automata to be studied, and probably the most popular of all time, is a 2-D CA.
Slides for Parallel Programming Techniques & Applications Using Networked Workstations & Parallel Computers 2nd ed., by B. Wilkinson & M
1 The Game of Life Supplement 2. 2 Background The Game of Life was devised by the British mathematician John Horton Conway in More sophisticated.
CELLULAR AUTOMATON Presented by Rajini Singh.
Estimating Areas The art of Math. Exact Answers? Not Exactly… You can’t always get an exact answer But sometimes you still need to get very close to the.
Conway’s Game of Life Andrew Williams
Divisibility Tests for 3 and 9
CS305j Introduction to Computing Two Dimensional Arrays 1 Topic 22 Two Dimensional Arrays "Computer Science is a science of abstraction -creating the right.
Hilton’s Game of Life (HGL) A theoretical explanation of the phenomenon “life” in real nature. Hilton Tamanaha Goi Ph.D. 1st Year, KAIST, Dept. of EECS.
Unlocking Addition The Senari Adaptation of Montessori’s Stamp Game.
A cellular automata Developed by John Conway in 1970 Its evolution is determined by its initial state.
Directed Number Using Negative Numbers. Objective To able to –Add & Subtract negative numbers –Multiply & Divide negative numbers.
Cellular Automata Avi Swartz 2015 UNC Awards Ceremony.
Introduction Computational Challenges Serial Solutions Distributed Memory Solution Shared Memory Solution Parallel Analysis Conclusion Introduction: 
4.1 Divisibility and Mental Math. Mental Math Is 56 divisible by 7? Think! 56 = 8 x 7 Is 56 divisible by 4? Think! 56 = 8 x 7, and 4 x 2 = 8, 56 is divisible.
Jeopardy Directions for the game: 1.You will need a pencil and paper to keep score. 2.On the next screen, click ONCE on a question. 3.Read the Question.
The Role of Artificial Life, Cellular Automata and Emergence in the study of Artificial Intelligence Ognen Spiroski CITY Liberal Studies 2005.
Warm Up #2 List at least 3 ways you think math will be used to plan your pillow.
Arrow Math 20 Grid. Practice
STAT115 STAT225 BIST512 BIO298 - Intro to Computational Biology Python Tutorial II Monty Python, Game of Life and Sequence Alignment Feb 1, 2011 Daniel.
More Accurate Rate Estimation CS 170: Computing for the Sciences and Mathematics.
Welcome back…. Let’s warm up! 1) 4x + 5y = 12 2) 3x – 2y = 12 4x + 3y = 4 4x + 2y = 2.
Welcome back…. Let’s warm up! 1) 4x + 5y = 12 2) 3x – 2y = 12 4x + 3y = 4 4x + 2y = 2.
The Game of Life A simulation of "life". From simple rules, complex behavior arises Rules –A cell that is alive and has fewer than two live neighbors dies.
Tracking using Cellular Automaton Algorithm for CBM experiment Arkadiusz Bubak University of Silesia, Katowice, Poland.
Activity 2-1: The Game of Life
Topic 26 Two Dimensional Arrays "Computer Science is a science of abstraction -creating the right model for a problem and devising the appropriate mechanizable.
Cellular Automata. The Game The Game of Life is not your typical computer game. It is a 'cellular automation', and was invented by the Cambridge mathematician.
CELLULAR AUTOMATA A Presentation By CSC. OUTLINE History One Dimension CA Two Dimension CA Totalistic CA & Conway’s Game of Life Classification of CA.
Parallel Programming 0024 Spring Semester 2010 May 6, 2010.
Long Division. We are going to try to solve 837 ÷ 27.
Category 1 Category 5 Category 4 Category 3 Category
A Variation on Conway’s Game of Life Winston Lee EPS 109.
Subtracting With Place Value. Place Value to Subtract ,000 How many ones make a ten?
Exam Review UNIT 3 Mr. Easter 7 th Grade Math. General Questions Fill in the chart below with the steps we use in order for Multistep equations 1 st –
By Ella Acheson 7 th grade math Block: H. Order of operations 0 Order of operations are exactly what it sounds like, it tells you what order to do math.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade Topic 1 5th Grade Topic 2 4th Grade Topic 3 4th Grade Topic 4 3rd Grade Topic 5 3rd Grade Topic.
Mental Math – Powers of 10 To schwoop or not to schwoop, that is the question….
Around the Block By Andrew Derer and Gail Warren.
Algebra 1 Warm Up.
Conway’s Game of Life Jess Barak Game Theory. History Invented by John Conway in 1970 Wanted to simplify problem from 1940s presented by John von Neumann.
Do I Understand Spreadsheets? Assessment Game. Question 1 What is a spreadsheet?
Spreadsheet Formulas Cell Data - is classified according to its intended purpose.
5th Grade Campus Math Bee School Year.
5th Grade Math Bee Practice.
4th Grade Campus Math Bee
4th Grade Math Bee Practice.
3rd Grade Math Bee Practice.
5th Grade Campus Math Bee
4th Grade Campus Math Bee
3rd Grade Campus Math Bee School Year.
Illustrations of Simple Cellular Automata
Algebraic Expressions, Equations, and Symbols
Game ideas for children 2-4
“Teach A Level Maths” Vol. 2: A2 Core Modules
Phone Number BINGO!!!.
Kinder Math Bee Counting Practice.
4th Grade Campus Math Bee
Kinder Math Bee Addition Practice.
5th Grade Math Bee Practice.
5th Grade Campus Math Bee
5th Grade Campus Math Bee School Year.
Before and After Practice
may Test 3 Review Test 3 Test 3 Activity
Presentation transcript:

The Shape of Math R09 VOL.3 The Life Game 09.08.0 4 Masashi SANAE

What is The Life Game ?  1970 John Horton Conway Mathematician, Cambridge University  Simulation game  The symbol of the biological society  Under the certain enviroment, new life is born. Under the depopulation or the state of the congestion, the cell perishes.  Modeling of a living entity in space

The Rule of The Life Game  A grid on the surface  Put a cell on the space labelled “P”  Decide the placement of a new cell according to the next rule  N : the number of cells around “P” Survival : if N = 2 or 3 Death : if N =4 Birth : There isn’t a cell on “P” and N=3  Apply these rules on the all divisions on the board at the same time

Example × ●●● ●●● ●●● 1st generation2nd generation × ×× 0 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation ×× × 0 ×× Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation ××× 1 × ×× × Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation ××× 2 × × × Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation ××× 3 ×× ● Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3

Example × ●●● ●●● ●●● 1st generation2nd generation 21 1 ● ● 3 ● 3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 42● ● ● ● ●● ●

Example ● ●●● ●● ●●● ● 2nd generation rd generation Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 Survival : If N = 2 or 3 Death : If N =4 Birth : There isn’t a cell on “P” and N=3 ●● ●●●● ●●● ●●●● ●●

Let’s Try! ●●● ● ●● ● Exercise 1 Exercise 2

Answer 1 ●●● 1st generation ● ● ● 2nd generation ●●● 3rd generation

Answer 2 1st generation2nd generation3rd generation ● ●● ● 4th generation ●● ●● ●● ●● ●● ●●

(1) block (2) hive (3) loaf (4) pail (5) snake (6) boat (7) pond

(1) red light (2) beacon (3) clock

(1) glider (2) spaceship