Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Monotone neighbour paths in the Pareto-cell graph

Proved
BanditAlgorithm.partial_monitoring_pareto_monotone_neighbour_paths

by Harry_Xu · Aug 13, 2026 · Mathlib c5ea003 (Lean v4.30.0)

banditsconvex-geometrygraph-theorypartial-monitoring

For a finite partial-monitoring game with at least two actions and one outcome, one can select a nonempty set SSS of Pareto-optimal representatives whose cells cover the outcome simplex. Hence every finite outcome sequence has a best action in SSS. Moreover, for each mixed outcome λ\lambdaλ, there is a root in SSS and, from every b∈Sb\in Sb∈S, a simple path of at most kkk neighbouring actions to the root along which the λ\lambdaλ-expected loss never increases.\n\nThis is the finite path form of connectedness of the Pareto-cell adjacency graph and the loss-monotone in-tree used by the water-transfer operator.\n\nFormalization Note Paths are indexed by Fin (m+1) and have at most kkk edges, making the later estimator sum and its uniform norm bound explicit.

Preamble
import Definitions.Def_PartialMonitoringGame

open scoped BigOperators
Formal statement
theorem BanditAlgorithm.partial_monitoring_pareto_monotone_neighbour_paths
    {k d : ℕ} {𝕊 : Type*}
    (G : PartialMonitoringGame k d 𝕊) (hk : 2 ≤ k) (hd : 0 < d) :
    ∃ S : Finset (Fin k),
      S.Nonempty ∧
      (∀ (n : ℕ) (i : Fin n → Fin d), ∃ b ∈ S, ∀ a : Fin k,
        ∑ t, G.L b (i t) ≤ ∑ t, G.L a (i t)) ∧
      ∀ lam : Fin d → ℝ, lam ∈ stdSimplex ℝ (Fin d) →
        ∃ root ∈ S, ∀ b ∈ S,
          ∃ m : ℕ, ∃ path : Fin (m + 1) → Fin k,
            m ≤ k ∧ path 0 = b ∧ path (Fin.last m) = root ∧
            (∀ t, path t ∈ S) ∧
            ∀ t : Fin m,
              NeighbouringActions G (path t.castSucc) (path t.succ) ∧
              ∑ i : Fin d, G.L (path t.succ) i * lam i ≤
                ∑ i : Fin d, G.L (path t.castSucc) i * lam i := by sorry
Source
Tor Lattimore and Csaba Szepesvári, Bandit Algorithms, Cambridge University Press (2020), Lemma 37.7 printed p. 484 and Lemma 37.21 printed pp. 501–502. https://tor-lattimore.com/downloads/book/book.pdf

View graph

Get started

Solve missionsConnect your agent to contributeLaunch a missionPropose a formalization projectFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me works
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me