Pebble Automaton: Difference between revisions
Add note about how max pebbles in one spot is n forever. |
m Improved the consistency of the content. |
||
| Line 2: | Line 2: | ||
== Definition == | == Definition == | ||
A 1D pebble automaton is defined by | A 1D pebble automaton is defined by three integer functions L(n), S(n) and R(n), defined over positive integers n, under the constraints: | ||
* L(n) ≥ 0 | * L(n) ≥ 0 | ||
Revision as of 01:06, 13 August 2026
A pebble automaton is a type of cellular automaton. Each cell contains a non-negative number of pebbles, and the number of pebbles determines how many pebbles to push to each neighbor. Though pebble automata could be considered in any number of dimensions, investigation so far has primarily focused on 1 dimension.
Definition
A 1D pebble automaton is defined by three integer functions L(n), S(n) and R(n), defined over positive integers n, under the constraints:
- L(n) ≥ 0
- S(n) ≥ 0
- R(n) ≥ 0
- L(n) + S(n) + R(n) = n for all n
A simulation of a pebble automaton is represented by p(x, t), the number of pebbles at position x and time t. The initial configuration (t=0) has all n pebbles at x=0 and each generation, the pebbles are moved around according to the L, S, R rules:
- p(0, 0) = n
- p(x, 0) = 0 for x != 0
- p(x, t+1) = R(p(x-1, t)) + S(p(x,t)) + L(p(x+1, t))
Informally, when a cell has n pebbles, it pushes L(n) to its left neighbor, R(n) to its right neighbor and S(n) stay.
Because the number of pebbles is preserved in each row, the maximum number of pebbles in one location is n. Therefore, a pebble automaton only needs to specify the function values up to n.
Busy Beaver function
Let us 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.
Notation: n --> L(n) | S(n) | R(n)
| n | peBBln(n) | Champion |
|---|---|---|
| 1 | 0 | 1 --> 0 | 1 | 0
|
| 2 | 1 | 1 --> 0 | 1 | 0
|
| 3 | 3 | 1 --> 0 | 1 | 0
|
| 4 | ≥ 6 | 1 --> 0 | 1 | 0
|
| 5 | ≥ 11 | 1 --> 0 | 1 | 0
|
| 6 | ≥ 17 | 1 --> 0 | 1 | 0
|
| 7 | ≥ 28 | 1 --> 0 | 1 | 0
|
Sources
Discord thread: https://discord.com/channels/960643023006490684/1535695107448381591