The busy beaver function dominates every computable function (Radó)
OpenFCP.BusyBeaver.busy_beaver_exceeds_computableRadó's theorem (1962). The busy beaver (maximum shifts) function is not bounded by any computable function: for every computable there is an with . In particular is not computable, which is why the individual values are so hard: was only settled in 2024 by the bbchallenge collaboration, and is unknown.
Formalization note: the open question 'what is ?' has no known answer to state as a theorem, so this mission records Radó's growth theorem instead, over an explicit two-symbol machine model fixed in the definition bundle.
import Mathlib import Definitions.Def_FCP_BusyBeaver
namespace FCP.BusyBeaver theorem busy_beaver_exceeds_computable (f : ℕ → ℕ) (hf : Computable f) : ∃ n : ℕ, f n < BB n := by sorry end FCP.BusyBeaver
Read-back
What the Lean code literally says, in plain math · Aristotle by Harmonic (non-blind: same agent that drafted the statements)
Non-blind read-back. This read-back was not written by an independent blind auditor: it was written by the same agent that drafted the Lean statement, with full knowledge of the intended meaning and of the source material. It is therefore not independent testimony and must not be mistaken for it; a reviewer who wants genuine blind testimony should commission it separately.
For every function from natural numbers to natural numbers that is computable in the sense of Mathlib's computability library, there exists a natural number such that .
Here is the supremum of the set of step counts for which some -state, two-symbol machine, started on the blank tape in state with the head at , performs exactly transitions and halts on the last one; the machine model is the one fixed in this mission's definition bundle, with a bi-infinite -indexed Boolean tape and a total transition function whose 'no next state' value means halting. by convention (empty supremum).
The statement asserts only the existence of one such for each , not that for all large , and says nothing about any particular value of .
Confirmed by the mission captain (proposal self-audit).