Finite Sion minimax: weighted bounds imply one pointwise bound
ProvedBanditAlgorithm.exists_pointwise_le_of_compact_convex_weighted_leconvex-analysisminimaxonline-learning
Let be a nonempty compact convex subset of a real normed space and let be the restriction of a continuous linear map, where is finite and nonempty. If for every probability vector on there is an with\n\n
\n\nthen there is a single such that for every .\n\nThe proof applies Sion’s minimax theorem to the bilinear payoff and evaluates the resulting saddle point at each simplex vertex.\n\nFormalization Note This is the exact finite-outcome minimax interface used to pass from the mixed-outcome water-transfer construction to simultaneous one-step bounds.
Preamble
import Mathlib.Topology.Sion import Mathlib.Analysis.Convex.StdSimplex import Mathlib.Analysis.InnerProductSpace.PiL2 open scoped BigOperators
Formal statement
theorem BanditAlgorithm.exists_pointwise_le_of_compact_convex_weighted_le
{E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
{I : Type*} [Fintype I] [Nonempty I]
(X : Set E) (hXne : X.Nonempty) (hXconv : Convex ℝ X) (hXcomp : IsCompact X)
(g : E →L[ℝ] (I → ℝ)) (C : ℝ)
(hweighted : ∀ lam : I → ℝ, lam ∈ stdSimplex ℝ I →
∃ x ∈ X, ∑ i : I, lam i * g x i ≤ C) :
∃ x ∈ X, ∀ i : I, g x i ≤ C := by sorrySource
Maurice Sion, On general minimax theorems, Pacific Journal of Mathematics 8 (1958), 171–176; applied as in Lattimore and Szepesvári, Bandit Algorithms (2020), Eq. (37.16), printed p. 499. https://tor-lattimore.com/downloads/book/book.pdf