Ranked descent in a duplicate-free Pareto-cell cover
ProvedBanditAlgorithm.partial_monitoring_duplicate_free_pareto_cell_cover_ranked_descentbanditsconvex-geometrygraph-theorypartial-monitoring
Let be a nonempty, duplicate-free family of Pareto-optimal actions whose cells cover the outcome simplex. For every mixed outcome , there are a root action and a natural-number rank such that every non-root has a neighbouring successor with
The result supplies a terminating non-increasing in-tree in the Pareto-cell adjacency graph. It remains valid on cell boundaries, where distinct actions can tie under .
Formalization Note The explicit cell-cover hypothesis isolates the geometric content from the separate construction of a canonical Pareto representative set.
Preamble
import Definitions.Def_PartialMonitoringGame open scoped BigOperators
Formal statement
theorem BanditAlgorithm.partial_monitoring_duplicate_free_pareto_cell_cover_ranked_descent
{k d : ℕ} {𝕊 : Type*}
(G : PartialMonitoringGame k d 𝕊) (hd : 0 < d)
(S : Finset (Fin k)) (hSne : S.Nonempty)
(hpareto : ∀ a ∈ S, ParetoOptimalAction G a)
(hunique : ∀ a ∈ S, ∀ b ∈ S,
(∀ i, G.L a i = G.L b i) → a = b)
(hcover : ∀ u, u ∈ stdSimplex ℝ (Fin d) →
∃ a ∈ S, u ∈ pmCell G a) :
∀ lam : Fin d → ℝ, lam ∈ stdSimplex ℝ (Fin d) →
∃ root ∈ S, ∃ rank : Fin k → ℕ,
∀ b ∈ S, b ≠ root →
∃ c ∈ S, NeighbouringActions G b c ∧
∑ i : Fin d, G.L c i * lam i ≤
∑ i : Fin d, G.L b i * lam i ∧
rank c < rank b := by
sorrySource
Tor Lattimore and Csaba Szepesvári, Bandit Algorithms, Cambridge University Press (2020), Lemma 37.7 p. 484, Exercise 37.10 p. 509, and Lemma 37.21 pp. 501–502, especially its finite-subsequence boundary argument. https://tor-lattimore.com/downloads/book/book.pdf