- Γ : Type
- Λ : Type
- M : Turing.BusyBeaver.Machine self.Γ self.Λ
Instances For
Equations
Equations
Equations
Equations
BB(n)
is the n
-th Busy Beaver number.
This is the maximum shifts function, not the "number of ones function"
Equations
- BusyBeaver.BB n = sSup {N : ℕ | ∃ (C : BusyBeaver.Candidate n), C.M.haltingNumber = ↑N}
Instances For
theorem
sanity_check
(n : ℕ)
[NeZero n]
:
↑(BusyBeaver.BB n) = sSup {N : PartENat | ∃ (M : Turing.BusyBeaver.Machine (Fin n) (Fin 2)) (_ : M.IsHalting), M.haltingNumber = N}
To compute BB n
, we need only consider machines with states and symbols indexed in Fin
.