Expected reward by arm occupation
ProvedBanditAlgorithm.bandit_expected_reward_eq_arm_occupationbandit-algorithmsprobability
In the canonical finite-armed stochastic bandit model with integrable reward laws, expected cumulative reward equals the arm-mean-weighted expected occupation count:
This is the tower-property calculation in the proof of the regret decomposition lemma: conditional on selecting arm , the reward has mean , and finite sums then interchange rounds and arms. The statement includes horizon and does not require a positive number of arms.
Preamble
import Definitions.Def_banditRegret open MeasureTheory ProbabilityTheory
Formal statement
namespace BanditAlgorithm
theorem bandit_expected_reward_eq_arm_occupation {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) := by
sorry
end BanditAlgorithmSource
Lattimore and Szepesvári, Bandit Algorithms (CUP 2020), proof of Lemma 4.5, printed p. 63, Eq. (4.6) and the conditional-expectation display immediately following it, https://tor-lattimore.com/downloads/book/book.pdf