| name | quantum-entanglement-shannon-capacity |
| description | Methodology for analyzing exponential and unbounded Shannon capacity gains in classical multiple access channels via quantum entanglement assistance with causal channel state information at transmitters. |
| category | quantum-information |
| version | 1.0.0 |
| source | arXiv:2606.05412v1 |
| authors | Yuhang Yao, Syed A. Jafar |
| date | 2026-06-03T00:00:00.000Z |
| tags | ["shannon-capacity","quantum-entanglement","multiple-access-channel","causal-csit","information-theory","capacity-advantage"] |
Quantum Entanglement Shannon Capacity Gains
Methodology for analyzing exponential and unbounded Shannon capacity gains in classical multiple access channels (MACs) via quantum entanglement assistance with causal channel state information at transmitters (arXiv:2606.05412v1, June 2026).
Trigger Conditions
Use when:
- Analyzing quantum advantages in classical communication networks
- Studying Shannon capacity with entanglement assistance
- Designing multi-user communication protocols with quantum resources
- Evaluating channel state information (CSIT) strategies
- Comparing classical vs quantum-assisted communication capacity
- Analyzing robustness of quantum advantages under noise
Background
Quantum entanglement assistance is known to improve Shannon capacity of classical communication networks, but previously observed gains were modest (<6%). This work demonstrates that with causal CSIT, entanglement can provide:
- Exponential advantage in number of users K (for fixed binary alphabets)
- Unbounded advantage as state alphabet grows (for fixed K)
- Robust gains persisting under ~30% depolarization noise
Core Methodology
1. Problem Setup
Consider a classical K-user MAC with:
- Binary input alphabets for each user
- Binary output alphabet
- Binary state alphabet (or larger for unbounded case)
- Causal CSIT: Each transmitter knows current channel state before encoding
2. Entanglement-Assisted Capacity Analysis
Exponential scaling regime (fixed alphabet, growing users):
- For binary inputs/outputs/states, capacity advantage grows as ~2^(K-1)
- K=5 users: >21× multiplicative gain
- K=7 users: >88× multiplicative gain
Unbounded scaling regime (growing state alphabet, fixed K=3):
- Advantage grows without bound as state alphabet size increases
- Input/output alphabets remain binary
3. Noise Robustness Analysis
Critical finding: exponential advantage persists even with noisy entanglement:
- Each entangled qubit independently depolarizes with probability p ≈ 30%
- Advantage remains exponential in K despite noise
- Demonstrates practical viability of entanglement-assisted communication
4. Capacity Computation Framework
# Pseudocode for entanglement-assisted MAC capacity
def compute_quantum_assisted_capacity(K, alphabet_size, noise_level):
# Classical capacity baseline
C_classical = compute_mac_capacity(K, alphabet_size)
# Quantum entanglement-assisted capacity
C_quantum = compute_entanglement_assisted_mac(
K=K,
alphabet=alphabet_size,
causal_csit=True,
noise=noise_level
)
return C_quantum / C_classical # Multiplicative advantage
Key Findings
- Exponential scaling: Capacity advantage ∝ 2^(K-1) for binary alphabets with K users
- Unbounded scaling: Advantage → ∞ as state alphabet grows (K=3 fixed)
- Noise robustness: 30% per-qubit depolarization doesn't eliminate exponential advantage
- Causal CSIT requirement: Gains only appear with channel state known at transmitters
- Transmitter-only entanglement: Only transmitters need entanglement; receivers are classical
Implementation Patterns
Entanglement-Assisted Encoding Pattern
# Each transmitter uses shared entanglement + causal CSIT
for each channel_use:
# 1. Observe current channel state (causal CSIT)
state = get_channel_state()
# 2. Measure entangled state based on state
measurement = measure_entangled_qubit(state)
# 3. Encode message using measurement outcome + state
encoded = encode(message, measurement, state)
# 4. Transmit through channel
transmit(encoded)
Capacity Advantage Verification
# Verify exponential scaling with user count
for K in [3, 5, 7, 9]:
C_class = classical_mac_capacity(K)
C_quant = entanglement_assisted_capacity(K)
advantage = C_quant / C_class
print(f"K={K}: {advantage:.1f}× advantage")
# Expected: advantage ~ 2^(K-1)
Pitfalls
- No CSIT, No Advantage: Without causal channel state information, entanglement provides minimal gains
- Receiver Entanglement Not Required: Only transmitters need entanglement; don't over-engineer receiver side
- Noise Threshold: While robust to ~30% depolarization, higher noise levels may eliminate advantage
- Alphabet Size Trade-off: Binary alphabets show exponential scaling; larger alphabets show unbounded but different scaling
Verification Steps
- Compute classical MAC capacity baseline for given parameters
- Implement entanglement-assisted encoding with causal CSIT
- Measure achievable rates and compute multiplicative advantage
- Test noise robustness by varying depolarization probability
- Verify exponential scaling with user count K
Activation
Keywords: shannon capacity, quantum entanglement, multiple access channel, causal CSIT, exponential advantage, information theory, capacity scaling, noise robustness
arXiv: 2606.05412