Math 326, November 13 - Game of Life

Every mathematician's favorite, John Conway's Game of Life.  In the Game of Life, we start with a rectangular grid where every cell is designated as either alive (1) or dead (0).  Based on a set of rules, we proceed to the next generation.
Start with a 30x30 grid.  We make three versions of our grid.  The first contains the current generation.  The second shows the number of living neighbors for each cell.  The third shows what the next generation will be.

To update, we copy the values from the third grid into the first grid.  Make a macro to automate this process.  Use conditional cell formatting to make the evolution easier to see.

Additional Questions