Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorems 37.15–37.16: O(n2/3)O(n^{2/3})O(n2/3) upper bound for hard games

Proved
BanditAlgorithm.partial_monitoring_hard_rpow_two_thirds_upper_bound_discrete_signals

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

bandit-algorithmsminimax-regretpartial-monitoringupper-bound

Let G=(L,Φ)G=(L,\Phi)G=(L,Φ) be a finite globally observable but not locally observable partial-monitoring game with a finite discrete signal alphabet. Then there are a game-dependent constant CG>0C_G>0CG​>0 and a horizon NGN_GNG​ such that

Rn∗(G)≤CGn2/3for every n≥NG.R_n^*(G) \le C_G n^{2/3} \qquad \text{for every }n\ge N_G.Rn∗​(G)≤CG​n2/3for every n≥NG​.

This is the upper half of the hard-game classification. Algorithm 26 and the global-observability estimate for its exploration–stability objective yield an explicit O((vglokn)2/3(log⁡k)1/3)O((v_{glo}kn)^{2/3}(\log k)^{1/3})O((vglo​kn)2/3(logk)1/3) bound, whose fixed-game factors are absorbed into CGC_GCG​.

Formalization Note Lean writes the fractional power as Real.rpow, denoted by ^ with a real exponent in the displayed formal statement.

Preamble
import Definitions.Def_PartialMonitoringGame
import Mathlib.Analysis.SpecialFunctions.Pow.Real

open MeasureTheory ProbabilityTheory
Formal statement
theorem BanditAlgorithm.partial_monitoring_hard_rpow_two_thirds_upper_bound_discrete_signals
    {k d : ℕ} {𝕊 : Type*}
    [Fintype 𝕊] [MeasurableSpace 𝕊] [MeasurableSingletonClass 𝕊]
    (G : PartialMonitoringGame k d 𝕊)
    (h : GloballyObservable G ∧ ¬ LocallyObservable G) :
    ∃ C : ℝ, 0 < C ∧ ∃ N : ℕ, ∀ n : ℕ, N ≤ n →
      pmMinimaxRegret G n ≤ C * (n : ℝ) ^ ((2 : ℝ) / 3) := by
  sorry
Source
Tor Lattimore and Csaba Szepesvári, Bandit Algorithms, Chapter 37, Theorem 37.15 and Algorithm 26 on printed pp. 494–495, Theorem 37.16 and its proof on printed pp. 496–498, and Section 37.8 on printed p. 503 (PDF pp. 502–511), 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