home *** CD-ROM | disk | FTP | other *** search
- AUTOMATA - One dimensional cellular automata by Andrew Wylie
- ******************************************************************************
-
- Don't be put off by the name - these "automata" are simple to understand and
- produce some of the most striking and beautiful graphical displays you will
- ever see. If you know about Conway's game of LIFE (see PCPLUS July 87 Software
- Supplement disk) then you have already seen the spectacular effects that
- cellular automata can produce.
-
- This program investigates a one-dimensional automaton (LIFE is 2-dimensional).
- This is simply a row of cells each of which is represented by one pixel in
- a horizontal line on the screen. Successive lines represent succeeding
- generations of this "colony" of cells. Each cell has a value from 0 to 3 and
- this value decides the colour of the pixel - black for zero, blue for one,
- purple for two and white for three. The value of a cell in any generation is
- determined from the values of itself and its two neighbours in the previous
- generation using a "rule". Simply add the values of the 3 cells and use the
- sum (which can vary from 0 to 9) to index an array of ten digits - the rule.
- Of course indexing starts from zero rather than one and each digit can only
- have a value from 0 to 3, as this will be the cell value in the next line.
- For example, a valid rule would be 0123321012. If a cell had value 2 and its
- two neighbours had values 0 and 3, the sum of the three values is 5 and the
- cell has the value 2 (the sixth digit of the rule) in the next generation.
-
- If that sounds complicated, it is not really. AUTOMATA lets you investigate
- these phenomena easily. For a sampler, try typing
- AUTOMATA (to start the program)
- 0202033112 (to specify a particular rule)
- <ENTER> (to accept the rule)
- <ENTER> (to use random initial cell values)
- then watch the growth of the colony on the screen. Hit any key at any time to
- stop it, then hit <ENTER> twice to re-run with a new random initial colony.
- Alternatively edit the rule yourself, or hit R to choose a random rule, before
- hitting <ENTER> to accept it and <ENTER> again for random intial cells.
-
- After some experimenting you will find that many rules produce uninteresting
- patterns, but about 10% give beautiful or strange effects - some look like
- the nightmares of a neurotic wallpaper designer.
-
- Many new features can be seen by not initialising the colony to random values
- at the start, but instead presetting all cells to one value and then setting
- one cell, or a group, to other values. Here is a stunning example: with rule
- 0120133230 set all cells to zero except one at the centre which is set to 1.
-
- To start you off, here are some other rules which produce good results, either
- using random or preset initial cell values. You will soon find more yourself:
-
- 2112300233 1010311300 0222301033 1113231320 0302120222 3210130323
- 1002003330 3122303022 3021313013 2112300233 1001303223 1231011011
-
- You may wish to try to understand these automata more fully. This is not
- simple. Some questions which you might like to think about are:
-
- Can the automata be grouped into classes showing different behaviour?
- Having defined such classes, can you predict which class of automaton
- will result from a given rule? (very hard!)
- What determines if a given colour will vanish after a few generations?
- What determines if a dominant background colour will emerge?
- Some "background"s cycle through several colours. Can you make rules to
- create any arbitrary combination of up to 4 colours in sequence?
- How can you create cyclically repetitive structures with a long period?
- (try rule 0201033112 with all cells set to zero except a central group 3123)
- How can you create non-cyclic structures which last for many generations?
- (try rule 1001303223 with random cell initialisation)
-
- Some of these questions can be answered, others can not (at present).
- Automata provide an insight into the behaviour of chaotic systems and
- possibly into that of simple life forms. This program allows you to simulate
- behaviour which cannot be treated analytically by existing mathematical
- methods, it is more than just a curiosity.
-
- The study of these automata is relatively new. Here are some references for
- further reading. They provide much more information than this short note can
- do, and attempt to answer (at least partially) some of the above questions.
- I recommend that you try to read them, eg via your local library.
-
- "Abstract Mathematical Art" by Kenneth E. Perry, BYTE, Dec. 1986.
- "Cellular Automata ..." by Stephen Wolfram, Nature, Oct. 1984.
- "Computer Recreations" by Brian Hayes, Scientific American, Mar. 1984.
- "On Cellular Automata ..." by Martin Gardner, Scientific American, Feb. 1971.
-
- Have fun!
- Andrew Wylie, Flat 2E, Welbeck Mansions,
- Inglewood Road, London NW6 1QT, England.
-
-