Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Uniform Algorithm 26 objective bound for locally observable games

Proved
BanditAlgorithm.partial_monitoring_locally_observable_objective_uniform_bound

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

bandit-algorithmsonline-learningpartial-monitoring

Let G be a locally observable finite partial-monitoring game with k at least two, a nonempty outcome set, and losses in [0,1]. There exist a nonempty finite comparator set S, a nonnegative constant A, and a threshold eta_0>0 such that S contains a hindsight-optimal action for every finite outcome sequence. For every learning rate 0<eta<=eta_0 and every probability distribution q supported on S, there are an interior sampling distribution p and a vector loss estimator f satisfying

max⁡iObj⁡G,η(q,p,f;i)≤A.\max_i \operatorname{Obj}_{G,\eta}(q,p,f;i) \leq A.imax​ObjG,η​(q,p,f;i)≤A.

Here the objective is the exploration--stability quantity in equation (37.12). This is the horizon-free geometric core of the locally observable upper bound; choosing eta as a function of the horizon is a separate elementary step.

Preamble
import Definitions.Def_PartialMonitoringAlgorithm26

open scoped BigOperators
Formal statement
namespace BanditAlgorithm

/-! Lattimore--Szepesvári, Theorem 37.17, printed pp. 498--502, before
the horizon-dependent tuning of the learning rate. -/

theorem partial_monitoring_locally_observable_objective_uniform_bound
    {k d : ℕ} {𝕊 : Type*} [Fintype 𝕊]
    (G : PartialMonitoringGame k d 𝕊) (hk : 2 ≤ k)
    (hd : 0 < d)
    (hL : ∀ a i, G.L a i ∈ Set.Icc (0 : ℝ) 1)
    (hloc : LocallyObservable G) :
    ∃ S : Finset (Fin k), ∃ A η₀ : ℝ,
      S.Nonempty ∧ 0 ≤ A ∧ 0 < η₀ ∧
      (∀ (n : ℕ) (i : Fin n → Fin d), ∃ b ∈ S, ∀ a : Fin k,
        ∑ t, G.L b (i t) ≤ ∑ t, G.L a (i t)) ∧
      ∀ η : ℝ, 0 < η → η ≤ η₀ →
        ∀ q : Fin k → ℝ, PMSupportedOn S q →
          ∃ p : Fin k → ℝ, ∃ f : Fin k → 𝕊 → Fin k → ℝ,
            PMInteriorDistribution p ∧ PMVectorEstimatorOn G S f ∧
            ∀ i : Fin d, pmAlgorithm26Objective G η q p f i ≤ A := by
  sorry

end BanditAlgorithm
Source
Tor Lattimore and Csaba Szepesvári, Bandit Algorithms, Chapter 37, Theorem 37.17 and its proof in Sections 37.7--37.7.1, printed pp. 498--502, especially equations (37.16)--(37.17), 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