A non-globally-observable edge has a feedback-invisible loss direction
ProvedBanditAlgorithm.partial_monitoring_nonglobal_edge_directionbanditslinear-algebralower-boundpartial-monitoring
Fix two actions in a finite partial-monitoring game. If their loss difference cannot be reconstructed from the feedback of all actions, then there is an outcome-space direction with zero total mass such that
Thus perturbing an outcome distribution in the directions changes the relative loss of and while leaving every action's signal law unchanged. This is the linear-algebraic separation step behind the hopeless-game lower bound.
Formalization Note The normalization to inner product one is possible because non-observability says the loss-difference vector has a nonzero component orthogonal to the stacked feedback range.
Preamble
import Definitions.Def_PartialMonitoringGame import Mathlib.Analysis.InnerProductSpace.PiL2 import Mathlib.Analysis.InnerProductSpace.Projection.FiniteDimensional open MeasureTheory ProbabilityTheory
Formal statement
theorem BanditAlgorithm.partial_monitoring_nonglobal_edge_direction
{k d : ℕ} {𝕊 : Type*} [Fintype 𝕊] [DecidableEq 𝕊]
(G : PartialMonitoringGame k d 𝕊) (a b : Fin k)
(hn_global : ¬ ∃ f : Fin k × 𝕊 → ℝ, IsGlobalLossEstimator G a b f) :
∃ q : Fin d → ℝ,
(∑ i, q i) = 0 ∧
(∑ i, (G.L a i - G.L b i) * q i) = 1 ∧
∀ c : Fin k, ∀ σ : 𝕊,
(∑ i ∈ Finset.univ.filter (fun i ↦ G.Φ c i = σ), q i) = 0 := by
sorrySource
Lattimore and Szepesvári, Bandit Algorithms (2020), Theorem 37.13 proof, printed pp. 491–492 (PDF pp. 499–500), together with the orthogonal-separation construction used in Theorem 37.12, Step 1, Eq. (37.6), printed pp. 489–490; https://tor-lattimore.com/downloads/book/book.pdf