Erdős problem 872
Each move claims exactly one pool element, so the minimax value never exceeds the number of already claimed elements plus the number of still unclaimed elements.
Sources
FormalConjectures/ErdosProblems/
872.lean
Retained formal statement
Membership in legalMoves: a legal move is a pool element whose insertion preserves primitiveness.
∀ {n : ℕ} {p : Erdos872.GamePos n} {x : ℕ}, x ∈ Erdos872.legalMoves p ↔ x ∈ p.pool ∧ Erdos872.IsPrimitive n (insert x p.claimed)APIStatement only, no proof