Cellular Automata FAQ


[Non-Java version]

Conway's Game of Life FAQ

Collapse all tree nodesExpand all tree nodes
Expand
Expand
Expand
Where do I start?
Expand
Expand
Expand
Where do I find a simulator for the Game of Life?
Expand
Expand
Expand
Can I see the Game of Life in action?
Expand
Expand
Expand
Where do I find Game of Life patterns?
Expand
Expand
Expand
Who is interested in Life?
Expand
Expand
Expand
Is Martin Gardner's Scientific American article on Conway's life available?
Expand
Expand
Expand
Can you do computations with the Game Of Life?
Expand
Expand
Expand
Has anyone actually built a computer in the Game Of Life?
Collapse
Collapse
Collapse
How do you do computations with the Game of Life?
Contributions by:
  • Chris Langton <cgl@t13.lanl.gov>
The constructive proof that the game of life is capable of supporting universal computation is built around colliding glider streams into one another. colliding glider streams form the basic AND, OR, and NOT gates, out of which one then goes on to engineer a general purpose computer. However, one need not construct a general purpose computer, one could arrange the same computational primitives into a device that computes only a specific function.

One example, computing the logical NOT of a byte, is straightforward. Arrange for a stream of gliders (the input stream) to collide with the output of a glider gun at right-angles in such a way that the gliders in the input stream occur with the same spacing as the gliders coming from the glider gun. Furthermore, time the arrival of gliders in the input stream so that they collide with gliders in the output of the glider gun and annihilate each other. Then, encode the byte you want to compute the logical NOT of in the following way: For every 0 in the input byte, remove a glider from the input stream, for every 1, leave a glider. Thus, the input byte 10110010 will be represented by the glider stream:

glider noglider glider glider noglider noglider glider noglider

where the "nogliders" are spots where gliders in a regular periodic stream of gliders have been removed.

When this stream is collided into the regular stream of gliders coming out of a glider gun, observe what happens. For every 0 in the input byte, the missing glider in the input stream allows a glider from the glider gun to pass, whereas for every 1 in the input byte, a glider in the input stream annihilates the corresponding glider coming from the glider gun. Thus, looking at the output stream from the glider-gun DOWNSTREAM of the collision site, there is a glider (a 1) for every "hole" in the input stream (a 0) and there is a hole (a 0) for every glider (1) in the input stream. Thus, the filtered output of the glider-gun is the logical NOT of the encoded input stream.

And not a universal computer in sight!

By colliding this output stream (call it NOT A if the input steam is A) with another input stream, B, one gets A AND B in the continuation of the input stream B after the collision site. If one collides the downstream portion of the NOT A stream from this latter gate with the output of another glider gun, one obtains A OR B as the continuation of the second glider gun output downstream of the collision.

By hooking up a sequence of AND, OR, and NOT gates built in this way, one can compute any function that can be expressed by these logical operations (a great many functions indeed....;-)

For complex functions, involving many gates, one needs to cross glider streams, redirect glider streams, and so forth. This leads to more complication. However, the basic idea is as sketched out above.

Contributions by:

  • Wentian, Li <wli@cshl.org>
  • McIntosh, Harold V. <mcintosh@redvax1.dgsca.unam.mx>

Using the interaction of glider streams, the Game of Life can be programmed to perform computations. Indeed, it is a universal computer.

References

[BCG82]
[Pou85]
Expand
Expand
Expand
Must one use all of the logical gates to perform computations in the Game of Life?
Expand
Expand
Expand
Is the Game Of Life reversible?
Expand
Expand
Expand
Garden-of-Eden patterns exist in Conway's Game of Life. Do they exist in other automata?
Expand
Expand
Expand
What is the smallest known Garden of Eden in the Game Of Life?
Expand
Expand
Expand
Where can I learn about Spaceships in the Game of Life?
Expand
Expand
Expand
Are variable-speed spaceships possible?
Expand
Expand
Expand
Has a variable-speed spaceship been constructed?
Expand
Expand
Expand
What are the known spaceship speeds?
Expand
Expand
Expand
Where can I find the meaning of terms like 'spaceships', 'blinkers' and 'beehives'?
Expand
Expand
Expand
Are self-reproducing organisms possible in the Game Of Life?
Expand
Expand
Expand
Has anyone built a self-reproducing organism in the Game Of Life?
Expand
Expand
Expand
How big is a self-reproducing organism in the Game Of Life likely to be?
Expand
Expand
Expand
What published work relates to the Game of Life?
Expand
Expand
Expand
What is 3D Life?
Expand
Expand
Expand
References