The universe of the Game of Life is an infinite two-dimensional grid of square cells, each of which is in one of two possible states, alive or dead. Every cell interacts with its eight neighbors, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur:
Here are the two famous "spaceships" pattern which can "move"
Below is the initial configuration of the two spaceships. Will they collide after a finite number of iterations?
Details and Assumptions
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
From looking at the two spaceship patters, the smaller spaceship moves one square right one square down every 4 step cycles. The larger one moves two squares right every 4 step cycles. After or about 5 such 4 step cycles, they collide.