Blog > The Maximal Lifespan of Patterns in Conway's Game of Life

The Maximal Lifespan of Patterns in Conway's Game of Life

In a couple of recent posts, I argued that random patterns in Conway’s Game of Life tend, on average, to live longest when they have an initial density of 37.5% cells being alive. In this post, rather than looking at the distribution of the average lifespan for various initial densities, I will fix the density at 37.5% and look at the distribution of lifespans that results, and use that to estimate what the maximal lifespan of any small pattern is (as in my previous posts, I will use 20×20 starting patterns). As before, I will explore both the case when we simulate Life on a torus and when we simulate it on an infinite plane.

Lifespan Distribution on a Torus

After simulating 175000 random patterns on a 20×20 torus, the distribution of the lifespans was as follows:

Lifespan Frequency Histogram on a TorusThe bins in the graph have a width of 10, and the peak occurs in the lifespan 91 – 100 bin. Some other interesting stats include:

  • Maximum observed lifespan: 2092
  • Minimum observed lifespan: 14
  • Average lifespan: 210
  • Median lifespan: 164
  • Standard deviation of lifespan: 159.3

In order to try to estimate the longest lifespan of any pattern on a 20×20 torus, I will assume that if the lifespan is above 100, then it follows an exponential distribution, which appears to be a reasonable assumption given the above histogram. Indeed, this leads to the following histogram, which has the exponential of best fit overlaid in black. The equation of the exponential is y = 9088.7(0.938)x, and the R2 value is 0.997 (that’s one heck of a good fit).

Lifespan Frequency Trend on a TorusNow that we have our exponential of best fit, we can get an estimate of the maximal lifespan in this scenario by assuming that the lifespan of the 220*20 different patterns are independent of each other (this may not be a particularly good assumption, as two patterns, for example, will have the same lifespan if they are translations of each other — nonetheless it seems that the number of reductions that can be made by symmetry arguments like that is tiny compared to the total number of such patterns, so let’s roll with it). We then set

Torus equation

and solve for x to get a maximal lifespan of x = 4474. This seems believable and not particularly shocking to me given the statistics that I listed earlier.

Lifespan Distribution on a Plane

Typically, Life enthusiasts are more interested in results on the infinite plane than on a torus, as it leads to behaviour that is much more chaotic and unpredictable. For example, even though we just saw that the longest-lived 20×20 pattern on a torus likely lives for less than 4500 generations, there is a known 9×15 pattern that lives on the plane for over 29000 generations. We will now proceed analogously to the torus discussion above to see how much better we can reasonably expect to do. We begin with the distribution of the lifespan based on 60000 initial 20×20 patterns:

Lifespan Frequency Histogram on a Plane

The bins in the graph have a width of 50, and the peak occurs in the lifespan 151 – 200 bin. The other basic stats are listed below, and as we would expect, the average lifespan and the standard deviation of lifespans are both much greater on the plane than they are on the torus.

  • Maximum observed lifespan: 13612
  • Minimum observed lifespan: 15
  • Average lifespan: 678
  • Median lifespan: 368
  • Standard deviation of lifespan: 885.6

The main difference with the analysis in this situation is that instead of assuming the lifespan itself follows an exponential distribution, I will assume that some power of the lifespan follows an exponential distribution; the reason for this is that the R2 is quite low if we try to fit an exponential to the distribution of the lifespans itself. Fitting an exponential to lifespan0.75 seems to give the maximum R2 value (0.9857), so this is what I will use. The following histogram shows the curve of best fit, which has the equation y = 1854.6(0.957)x, where this time x = lifespan0.75.

Lifespan Frequency Trend on a Plane

Finally, we follow our method from before and set

Lifespan on a Plane Equation

and solve for x to get a maximal lifespan of x = 120795. Of course, this number should be taken with a grain of salt, because that pattern I mentioned earlier that has a lifespan of over 29000 generations was found during a simulation of a whopping 12 billion 20×20 patterns, while our equation of best fit tells us that after 12 billion patterns, we would expect only to see a pattern with lifespan 6206 (when really it should only take about 400 patterns to see such a lifespan). Similarly, in the longest-lived patterns found by the Online Life-Like CA Soup Search, a pattern has been found with lifespan 24389. According to our formula, we should have to look at roughly 9 million billion billion billion soups before finding such a pattern, but only 40 million soups have actually been searched.

This all seems to suggest that the longest-lived pattern in a 20×20 box may in fact live considerably longer than 120000 generations, which goes to show just how in the dark we are when it comes to some of these simple questions — since the search space is so unimaginably huge, we likely will never know for sure what the true upper limit is.

Downloads:

  1. Elithrion
    August 3rd, 2009 at 14:58 | #1

    I have some qualms about the estimate (going to focus specifically on the plane one).

    For one thing, it’s not very stable – switching the exponent applied from 0.75 up to 0.8, for example, reduces the R^2 by only 0.79 (to 0.978), which is still a perfectly legitimate result, but changes the equation to y=1550.4e^(-0.032x), which results in a maximal lifespan estimate of just 86371. Conversely, choosing 0.7 (and discarding some data so excel would be able to make an exponential trendline) gets you a lifespan of 152820.

    For another, I have to wonder if your improvement in R^2 from going to 0.75 is not largely the result of the aforementioned discarding of data. Using the same dataset (as is chosen by default in the sheet), but with an exponent of 1 gets me R^2=0.9475, which is worse, but by no means terrible. Specifically, it would seem to me the data thus discarded suggests that the tail is thinner than the distribution would suggest, which would lead me to expect a lower maximum than these projections predict.

    Finally, I’m somewhat leery of casually applying a continuous distribution to a discrete data set like this. It would be nice to try fitting some discrete distributions to it (notably Poisson, which is highly related to the exponential anyway) to see if any of them work well. Although I’m unaware of a program that would do this for me, so this is staying at the level of speculation for now.

    (I’m also not entirely convinced by the assumption of independence, especially for the plane. Although one potential way to look at the matter is that if the exponential distribution applies to it, then the assumption probably holds, and if it does not, neither does the assumption.)

  2. Nathaniel
    August 4th, 2009 at 23:19 | #2

    @Elithrion – Those are all quite valid concerns, and while I was aware that the results on a plane aren’t really good for much of anything besides a bit of fun in Excel and maybe suggesting that we are a long way from the true longest-lived pattern, I perhaps didn’t make that as clear as I intended to.

    The problem essentially comes down to the fact that I’m trying to extrapolate from a data set (and it’s quite an extrapolation, I might add!), which we of course know is something you have to be very careful when doing (and I wasn’t).

    As you mentioned, the tail seems to be decreasing faster than an exponential distribution, which makes it difficult to fit a curve to. I looked as several other distributions (such as Poisson, which decreases much too quickly, and weird distributions like a Weibull, which doesn’t decrease quickly enough) before settling on the modified exponential. I was really excited after seeing the torus results because it just seems like an exponential should describe the lifespan frequencies — I’m a little curious and would be very excited to see a distribution that works better on the plane.

    I don’t really see why fitting a continuous distribution to a discrete one would be a problem though – if you just restrict a continuous distribution to the integers, you get a discrete distribution that behaves essentially the same way. This sort of thing is done quite often in statistics (probably most frequently when approximating a binomial distribution by a normal distribution).

    As for independence – yeah, that’s a toughy, and independence is probably a bit of a stretch on the plane. While I’m fairly comfortable with the assumption of “almost independence” for the majority of low-lifespan patterns, it gets harder to picture what’s happening for high-lifespan patterns, and it’s quite possible (probable, even), that the independence assumption bumped up my maximal lifespan estimate by a fair bit.

  3. Elithrion
    August 5th, 2009 at 16:44 | #3

    Well, with regards to discrete vs continuous I was mostly concerned with the edges, which arguably showed up as being weird in the distribution at the left side. I suppose it’s not as big of a deal with the right side since it stretches out to infinity, so I withdraw that and admit that complaint was a bit silly.

    But hmm… what about just an arbitrary polynomial (or more complex equation) fit? I need to go learn non-parametric statistics, I think.

    (Also, when I wrote “reduces the R^2 by only 0.79” I clearly meant “by only 0.0079” >.>)

  1. May 19th, 2017 at 10:35 | #1