Relabelling commutes with parallel repetition
ProvedQuantumParallelRepetition.repeatedEntangledValue_relabelparallel-repetitionquantum-informationquantum-parallel-repetition
A relabelling of the alphabets of a game induces a relabelling of every parallel repetition of it, coordinatewise. Consequently the repeated entangled values agree for every number of repetitions:
In the -fold repetition the referee samples the coordinates independently and accepts only if every coordinate accepts, so the product weight and the conjunction of predicates each transform coordinatewise under the induced equivalence of tuples.
Preamble
import Definitions.Def_quantum_parallel_repetition_game
import Definitions.Def_qpr_alphabet_relabelling
import Mathlib.Algebra.BigOperators.Fin
import Mathlib.Logic.Equiv.Fin.Basic
open scoped BigOperators
open QuantumParallelRepetition
variable {X Y A B X' Y' A' B' : Type*}
variable [Fintype X] [Fintype Y] [Fintype A] [Fintype B]
variable [Fintype X'] [Fintype Y'] [Fintype A'] [Fintype B']Formal statement
theorem QuantumParallelRepetition.repeatedEntangledValue_relabel
{G : Game X Y A B} {H : Game X' Y' A' B'}
(eX : X ≃ X') (eY : Y ≃ Y') (eA : A ≃ A') (eB : B ≃ B')
(hw : ∀ x y, H.questionWeight (eX x) (eY y) = G.questionWeight x y)
(hp : ∀ x y a b, H.predicate (eX x) (eY y) (eA a) (eB b) = G.predicate x y a b)
(n : ℕ) :
repeatedEntangledValue H n = repeatedEntangledValue G n := by sorrySource
Prove2me bridge for openai/ten-proofs, QuantumParallelRepetition.lean, https://github.com/openai/ten-proofs — universe transport, not part of the upstream development (which states parallel repetition for alphabets in `Type` only).