Peripheral spectrum of quantum channels #
The peripheral spectrum of a linear operator is the set of eigenvalues whose modulus equals the spectral radius. For trace-preserving completely-positive maps (CPTP maps, aka quantum channels) with spectral radius 1, these are exactly the eigenvalues on the unit circle.
Main definitions #
peripheralSpectrum— eigenvalues whose norm equals the spectral radiusperipheralEigenvalues— eigenvalues on the unit circlechannelPeriod— cardinality of the peripheral eigenvalue setIsPrimitive— 1 is the only peripheral eigenvalue
Main results #
matrix_dim_ne_zero_of_spectralRadius_eq_one— spectral radius one forces positive matrix dimensionone_mem_peripheralEigenvalues— 1 is a peripheral eigenvalueperipheralEigenvalues_finite— peripheral eigenvalues are finiteisRootOfUnity_of_finite_powers— pigeonhole for roots of unityperipheral_isRootOfUnity_of_pow_eigenvalue— powers-are-eigenvalues ⟹ root of unityisPrimitive_iff_period_one— primitive ↔ period = 1isPrimitive_of_compl_eigenvalues_lt_one— complementary transfer-map gap → primitivecompl_eigenvalue_norm_lt_one_of_primitive— primitive → complementary transfer-map gap
References #
- [M. Wolf, Quantum Channels & Operations: Guided Tour, Section 6.2, Theorem 6.6 (peripheral spectrum of irreducible Schwarz maps)][Wolf2012QChannels]
- [M. Wolf, Quantum Channels & Operations: Guided Tour, Section 6.3, Theorem 6.7 (primitive maps)][Wolf2012QChannels]
- [arXiv:2011.12127, Section IV — peripheral spectrum structure]
Part 1: Peripheral spectrum definitions #
The peripheral spectrum of a continuous linear operator: eigenvalues whose
norm (as ℝ≥0∞) equals the spectral radius.
Instances For
Part 2: Basic properties #
A continuous endomorphism of square matrices with spectral radius one has positive matrix dimension.
If the matrix dimension were zero, then the endomorphism algebra would be subsingleton and every endomorphism would have spectral radius zero.
1 is always a peripheral eigenvalue when a fixed point exists.
In finite dimensions, the peripheral eigenvalue set is finite.
Part 3: Roots of unity from pigeonhole #
Peripheral eigenvalues with positive powers that are eigenvalues are roots of unity.
This is the combinatorial core of Wolf Theorem 6.6 (Peripheral spectrum of
irreducible Schwarz maps), item 1: the peripheral spectrum forms a cyclic group
{exp(2πik/m)}_{k ∈ ℤ_m}. For irreducible CPTP maps, the multiplicative domain
theory ensures that positive powers of peripheral eigenvalues remain eigenvalues.
Part 4: Channel period and primitivity #
The period of a quantum channel: cardinality of peripheral eigenvalues.
Equations
- channelPeriod E hfin = hfin.toFinset.card
Instances For
A channel is primitive if 1 is the only peripheral eigenvalue.
Equations
- IsPrimitive E = (peripheralEigenvalues E = {1})
Instances For
Primitive channels have unique peripheral eigenvalue.
Primitive ↔ period = 1.
Part 5: Complementary transfer-map gap ↔ primitivity #
Complementary transfer-map gap → primitive: if all eigenvalues of E - P
have norm < 1, then 1 is the only peripheral eigenvalue of E.
Key idea: for μ ≠ 1, trace preservation forces eigenvectors to have trace 0,
so they lie in ker(P), making μ an eigenvalue of E - P.
Primitive → complementary transfer-map gap (eigenvalue level): if E is
primitive, TP, and all eigenvalues of E have norm ≤ 1, then eigenvalues of
E - P have norm < 1.
Part 6: Connection to MPS primitivity #
The peripheral spectrum framework connects to MPS theory via:
- Transfer map
E_A(X) = ∑ᵢ Aᵢ X Aᵢ†is trace-preserving when∑ᵢ Aᵢ† Aᵢ = I. - By
Spectral/TransferOperatorGap.lean, eigenvalues satisfy‖μ‖ ≤ 1. IsPrimitiveMPSrequiresspectralRadius(E - P) < 1, which bycompl_eigenvalue_norm_lt_one_of_primitiveis equivalent toIsPrimitive E.- For irreducible CPTP maps, multiplicative domain theory
(
Channel/MultiplicativeDomain.lean) shows peripheral eigenvectors are in the multiplicative domain ⟹ powers of eigenvalues remain eigenvalues ⟹peripheral_isRootOfUnity_of_pow_eigenvaluegives roots of unity (Wolf Theorem 6.6).