Local transition deviates by at most twice the ATV measure of entanglement
ProvedMarkovEntanglement.local_transition_deviation_le_two_atv_entanglementTheorem 8, first part (Chen and Peng, p. 40), -agent form on the supremum row of Table 1.
Consider an -agent MDP with joint transition and a policy , with occupancy measure strictly positive and stationary. Fix an agent , let be the local (marginalized) transition induced by and via Eq. (2), and let attain the measure of Markov entanglement of agent with respect to the unweighted agent-wise total variation distance.
Then the local transition deviates from that optimal independent approximation by at most twice the entanglement, uniformly over local state-action pairs:
The measure here is the supremum-based one, . This pairing matters: Table 1 (p. 20) matches the unweighted distances with and the -weighted ones with , and the uniform conclusion is false if the entanglement is measured in the -weighted distance, since a rarely visited local state can contribute almost nothing to a -average while its conditional deviation stays of constant order.
Strict positivity of forces the joint space to be nonempty, hence every local state-action pair has positive marginal — which is what licenses passing from the conditional average defining to a uniform bound.
import Mathlib import Definitions.Def_markov_entanglement_multi_atv open scoped BigOperators open MarkovEntanglement
namespace MarkovEntanglement
theorem local_transition_deviation_le_two_atv_entanglement
{N : ℕ} {S : Fin N → Type*} [∀ i, Fintype (S i)] [∀ i, DecidableEq (S i)]
(P : Matrix (Joint S) (Joint S) ℝ) (hP : IsTransitionMatrix P)
(μ : Joint S → ℝ) (hμ : IsPositiveDist μ) (hstat : IsStationary P μ) (i : Fin N)
(Pi Ptrue : Matrix (S i) (S i) ℝ)
(hPi : IsTransitionMatrix Pi)
(hopt : agentTVDistN i P Pi = agentEntanglementWith i (agentTVDistN i) P)
(hPtrue : IsTransitionMatrix Ptrue) (htrue : IsLocalTransitionN i P μ Ptrue) :
∀ s t, |Ptrue s t - Pi s t| ≤ 2 * agentEntanglementWith i (agentTVDistN i) P := by
sorry
end MarkovEntanglement