Transient is at most of the main term in the MDP minimax lower bound
ProvedBanditAlgorithm.arena_tuning_alphaarithmeticlower-boundmarkov-decision-processregret
Fix real numbers describing the parameter tuning of the minimax lower bound for average-reward Markov decision processes (Lattimore--Szepesv'ari, Bandit Algorithms, Theorem 38.7). Here is the horizon, the number of alternatives, the mean episode length, the mean sojourn length, the truncation level of the leaf counter, the denominator used to bound from below, and .
The regret bound produced by the change-of-measure step has the shape
a difference of two comparable quantities. This lemma states that the subtracted transient is at most of the main term, so that the difference is at least .
The hypotheses are exactly the four structural facts the tuning supplies: , , , and .
Preamble
import Mathlib.Data.Real.Sqrt
Formal statement
theorem BanditAlgorithm.arena_tuning_alpha
(n k lam rho den N R : ℝ)
(hn : 0 < n) (hk : 0 < k) (hlam : 0 < lam) (hden : 0 < den) (hrho : 1 ≤ rho)
(hR0 : 0 ≤ R) (hR2 : R ^ 2 = k * lam / (2 * (n + rho)))
(hN0 : 0 ≤ N) (hNden : n - 14 * lam ≤ N * den)
(hnr : n + rho ≤ 25 / 24 * n)
(hg : 14 * lam + 1024 / 105 * den ≤ 4 / 25 * n)
(hC : 300 * den ^ 2 ≤ n * k * lam) :
6 / 5 * ((1 / 2 + 63 / 128 * (k - 1) * R / k) * rho)
≤ 3969 / 65536 * rho * N * R := by sorrySource
Lattimore and Szepesvari, Bandit Algorithms (CUP 2020), https://tor-lattimore.com/downloads/book/book.pdf, section 38.7 (printed pp. 529-532, PDF pp. 538-541), Step 2 of the proof of Theorem 38.7; the parameter tuning after eq. (38.24).