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
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.
∀ {n : ℕ} (fuel : ℕ) (turn : Bool) (p : Erdos872.GamePos n), Erdos872.gameValueAux fuel turn p ≤ p.claimed.card + p.pool.cardAPIStatement only, no proof