Quadratic upper bound for the Algorithm 26 stability function
ProvedBanditAlgorithm.pmPsi_le_quadraticbandit-algorithmsinequalitiesonline-learning
Let q be a probability distribution on a finite action set and let z be a real vector with z_b at least -1 in every coordinate. For the exponential-weights stability function
one has the quadratic bound
This is the pointwise stability estimate used in both the global- and local-observability analyses of Algorithm 26.
Preamble
import Definitions.Def_PartialMonitoringAlgorithm26 open scoped BigOperators
Formal statement
namespace BanditAlgorithm
/-! Lattimore--Szepesvári, equation (37.15), printed p. 497. -/
theorem pmPsi_le_quadratic {k : ℕ} (q z : Fin k → ℝ)
(hq : q ∈ stdSimplex ℝ (Fin k)) (hz : ∀ b, -1 ≤ z b) :
pmPsi q z ≤ ∑ b : Fin k, q b * (z b) ^ 2 := by
sorry
end BanditAlgorithmSource
Tor Lattimore and Csaba Szepesvári, Bandit Algorithms, Chapter 37, equation (37.15), printed p. 497, https://tor-lattimore.com/downloads/book/book.pdf