Pebble Automaton
A pebble automaton is defined by two integer functions L(n) and R(n), defined over positive integers n, under the constraints:
- L(n) >= 0
- R(n) >= 0
- L(n) + R(n) <= n for all n
p(x, t) represents the number of pebbles at position x and time t.
- p(0, 0) = n
- p(x, 0) = 0 for x != 0
- p(x, t+1) = R(p(x-1, t)) + L(p(x+1, t)) + (p(x,t) - L(p(x,t)) - R(p(x,t)))
Informally, when a cell has n pebbles, it pushes L(n) to its left neighbor, and R(n) to its right neighbor.
Busy Beaver function
Let define peBBle(n) as the maximum number of steps it takes for any pebble automaton to stabilize, starting from an initial state of n pebbles in a single cell.
| n | Value | Champion |
|---|---|---|
| 1 | 0 | 1 --> 0 | 1 | 0
|
| 2 | 1 | 1 --> 0 | 1 | 0
|
| 3 | 3 | 1 --> 0 | 1 | 0
|
Sources
Discord thread: https://discord.com/channels/960643023006490684/1535695107448381591