A common question people have about Busy Beaver champions is: “What are they doing?” This question sounds sort of objective, but is really a subjective philosophical question. Objectively, the TM is repeatedly evaluating the specific transition table rules until it halts, that’s all. In a sense, this is the “simplest” (smallest) explanation because these champions are literally the ones that “do the most” based on the smallest description.

But this is not a very satisfying answer. The real meaning of this question is not to get the “smallest” explanation, but one that is more coherent or insightful to us as humans. However, must there be a more insightful description of behavior of these champion machines? Before getting into Busy Beaver analysis, I would have expected that they would not generally have such an insightful description. And I was not alone here: In his 2020 survey “The Busy Beaver Frontier” Scott Aaronson conjectures:

A related intuition, though harder to formalize, is that Busy Beavers shouldn’t be “cleanly factorizable” into main routines and subroutines—but rather, that the way to maximize runtime should be via “spaghetti code,” or a single n-state amorphous mass.

And yet, as many readers of this blog will be well aware, we can actually describe the behavior of most known Busy Beaver champions in a way that seems relatively simple mathematically. In fact, Pascal Michel discovered in 1993 that many of the top BB(5) TMs simulate iterations of relatively simple Collatz-like functions and he has extended this analysis to many other champions with different numbers of states and symbols on his Behavior of busy beavers website. This result led Nick Drozd to claim that Maybe the Spaghetti Code Conjecture is False in 2021.

But is this just the streetlight effect? Presumably we are biased towards discovering Turing machines and proving they halt when they have simpler abstractions.1 With the recent solution of BB(5) and BB(2,4) problems, we now know with certainty that the S(5) and S(2,4) champions are both described by Collatz-like trajectories.

… or perhaps I should say Collatz-like trajectory. Because fellow Discord user Racheline discovered on 4 Sep 2024 (Discord) that they are both effectively simulating the same Collatz-like trajectory! In fact, this Collatz-like trajectory appears to be ubiquitous among Turing machines around this size.

Collatz Analyses

S(5) Champion

The S(5) champion 1RB1LC_1RC1RB_1RD0LE_1LA1LD_1RZ0LA runs for 47,176,870 steps and leaves 4098 marks on the tape.2 It was discovered by Heiner Marxen and Jürgen Buntrock in 1989. Pascal Michel provided the following analysis in 1993:

Let

M(n)=0<A1n0

then

0<A0=M(0)M(3k)M(5k+6)M(3k+1)M(5k+9)M(3k+2)01Z>01(001)k+110

The full trajectory from M(0) is:

M(0)M(6)M(16)M(34)M(64)M(114)M(196)M(334)M(564)M(946)M(1584)M(2646)M(4416)M(7366)M(12284)HALT

S(5) Runner Up

The second longest running BB(5) TM 1RB0LD_1LC1RD_1LA1LC_1RZ1RE_1RA0RB runs for 23,554,764 steps and leaves 4097 marks on the tape. It was also discovered by Marxen and Buntrock in 1989. Pascal Michel also provided the following analysis in 1993:

Let

B(n)=0<A1n0

then

0<A0=B(0)B(3k)B(5k+3)B(3k+1)01(110)k11Z>0B(3k+2)B(5k+7)

The full trajectory from B(0) is:

B(0)B(3)B(8)B(17)B(32)B(57)B(98)B(167)B(282)B(473)B(792)B(1323)B(2208)B(3683)B(6142)HALT

If you compare this with the M trajectory, a pattern immediately jumps out. You can directly convert between these trajectories by replacing B(n) with M(2n)! And, in fact, we can prove this:

M(2(3k))=M(3(2k))M(5(2k)+6)=M(2(5k+3))M(2(3k+1))=M(3(2k)+2)HaltM(2(3k+2))=M(3(2k+1)+1)M(5(2k+1)+9)=M(2(5k+7))

Therefore:

M(2a)M(2b)B(a)B(b)M(2a)HaltB(a)Halt

But wait, there’s more! In fact, there is actually a giant clump of 19 distinct BB(5) TMs that run > 10 million steps and all leave between 4096-4098 marks on the tape! Pascal analyzed the other Σ(5) champion (1RB1RA_1LC1LB_1RA1LD_1RA1LE_1RZ0LC) in his 1993 paper and showed that it simulates the exact same function. I haven’t analyzed the rest of them, but I’d gues that they are all taking advantage of equivalent Collatz-like trajectories as well (since they are clumped so tightly).

BBB(4) Champion

The current 4-state Beeping Busy Beaver (and also Blanking Beaver) champion 1RB1LD_1RC1RB_1LC1LA_0RC0RD runs 32,779,478 steps before becoming a trivial Translated Cycler with period 1. It was discovered by Nick Drozd in 2021. I first analyzed it way back as my second Busy Beaver related blog post here. I actually forgot about that analysis (oops) and re-analyzed it last week! Racheline discovered the connection with the S(5) champion’s iteration.

Let

D(n)=01n04D>0

then

0<A019D(2)D(3k)0<C0(Quasihalt)D(3k+1)D(5k+6)D(3k+2)D(5k+7)

the full trajectory from D(2) is:

D(2)D(7)D(16)D(31)D(56)D(97)D(166)D(281)D(472)D(791)D(1322)D(2207)D(3682)D(6141)HALT

and finally, compare this to the B(n) trajectory and the pattern becomes clear, just replace each D(n) with B(n+1)! And once again, it’s not too hard to prove this (once you see the pattern):

B(3k+1)HaltB(3k+1+1)B(5k+6+1)B(3k+2+1)B(5k+7+1)

so

D(a)D(b)B(a+1)B(b+1)D(a)QuasihaltB(a+1)Halt

S(2,4) Champion

The S(2,4) champion 1RB2LA1RA1RA_1LB1LA3RB1RZ runs for 3,932,964 steps and leaves 2050 marks on the tape. It was discovered by my dad, Terry, and I in 2005. Racheline discovered the connection with the S(5) champion’s iteration. The analysis here will require a little more work to connect the dots.

Let

L(a,b,c)=013a<A2b1c0

then

0<A05L(0,0,2)L(a+1,b,c+1)L(a,b+2,c)L(a+1,b,0)L(a,b+1,2)L(0,b,c+1)L(b+1,0,c+1)L(0,b,0)Halt

At this point it might not be obvious that there is any connection. Racheline discovered that the trick is to transform the configuration a bit. Let

R(a,3k+r)=L(a,k,r)

then, it turns out that

0<A05R(0,2)R(a+1,b)R(a,b+5)R(0,3k)HaltR(0,3k+r)R(k+1,r)if r>0

This second rule is where the magic is! Note that the R(a+1,b) rule effectively combines the two L(a+1,b,c) cases above. Now, we can simplify this to:

R(0,3k)HaltR(0,3k+r)R(0,5k+5+r)if r>0

let R(n)=R(0,n) then

0<A05R(2)R(3k)HaltR(3k+1)R(5k+6)R(3k+2)R(5k+7)

and we can see that these R(n) rules are identical to the D(n) rules above (and also starts at the same point), so it will also follow an equivalent trajectory.

The Collatz Coincidence

Why are all of these champion TMs following equivalent Collatz-like trajectories? Well, this specific Collatz-like trajectory is unusually “lucky”. Let’s focus on the B(n) trajectory:

B(0)B(3)B(8)B(17)B(32)B(57)B(98)B(167)B(282)B(473)B(792)B(1323)B(2208)B(3683)B(6142)HALT

This avoids the halt transition 14 times before finally halting. If we treat each transition as having a uniform random chance of hitting each of the 3 rules, then the chance of avoiding halt 14 times in a row is (23)140.00341300. So, it seems like this is pretty rare. Perhaps rare enough that any TM which can (just barely) simulate it outcompetes all others of it’s size?

Footnotes

  1. In fact, I expect that this is the case with BB(6) where the current champion runs for so long that we cannot even write the number using standard scientific notation and need to use Knuth up-arrows. The only reason we could find this champion, was because we were able to find patterns which allowed accelerating the simulation enough to prove it halts. 

  2. Note: 1RB1RA_1LC1LB_1RA1LD_1RA1LE_1RZ0LC also leaves 4098 marks so technically there are actually two Σ(5) champions.