Canonical bandit occupation identities
ProvedBanditAlgorithm.bandit_canonical_occupation_identitiesbandit-algorithmsprobability
For the canonical finite-armed bandit model with integrable reward laws, the expected cumulative reward is the arm-mean-weighted expected occupation count,
and the expected occupation counts sum to the horizon, . The first identity is the conditional-reward calculation in the proof of the regret decomposition lemma; the second is the finite indicator identity summed over rounds.
Preamble
import Definitions.Def_banditRegret open MeasureTheory ProbabilityTheory
Formal statement
namespace BanditAlgorithm
theorem bandit_canonical_occupation_identities {k : ℕ} (ν : StochasticBandit k)
(hInt : ∀ i, Integrable id (ν.P i)) (π : BanditPolicy k) (n : ℕ) :
(∫ h, (∑ t, (h t).2) ∂(banditMeasure ν π n) =
∑ i, banditArmMean ν i *
∫ h, (armPullCount i h : ℝ) ∂(banditMeasure ν π n)) ∧
(∑ i, ∫ h, (armPullCount i h : ℝ) ∂(banditMeasure ν π n)) = n := by
sorry
end BanditAlgorithmSource
Lattimore and Szepesvári, Bandit Algorithms (CUP 2020), proof of Lemma 4.5, printed p. 63, especially Eq. (4.6), https://tor-lattimore.com/downloads/book/book.pdf