Universal complementarity identity for quantum interferometry — exact trade-off relation between path distinguishability and interference visibility for polarized double-slit experiments, with extensions to quantum information protocols. Activation: complementarity identity, wave-particle duality, quantum interferometry, path-visibility trade-off.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill universal-complementarity-identity --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Universal Complementarity Identity?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-universal-complementarity-identity)More formats (shields.io, HTML) on the badges page.
---
name: universal-complementarity-identity
description: "Universal complementarity identity for quantum interferometry — exact trade-off relation between path distinguishability and interference visibility for polarized double-slit experiments, with extensions to quantum information protocols. Activation: complementarity identity, wave-particle duality, quantum interferometry, path-visibility trade-off."
---
# Universal Complementarity Identity for Quantum Interferometry
## Description
Universal complementarity identity methodology establishing exact quantitative trade-off between which-path information (distinguishability D) and interference visibility (V) in polarized double-slit interferometry. The identity D^2 + V^2 = 1 holds universally and provides a framework for optimizing quantum information protocols, quantum key distribution, and quantum sensing.
## Activation Keywords
- universal complementarity identity
- wave-particle duality quantitative
- path-visibility trade-off
- quantum interferometry polarization
- distinguishability visibility identity
- 互补性恒等式量子干涉
- quantum which-path information
## Tools Used
- **terminal**: Run interferometry simulations
- **execute_code**: Implement complementarity calculations
- **web_search**: Find related quantum optics research
## Core Concepts
### The Complementarity Identity
For any polarized double-slit interferometry setup:
```
D^2 + V^2 = 1
```
Where:
- **D** (Distinguishability): Max probability of correctly identifying the path
- **V** (Visibility): Fringe contrast V = (I_max - I_min) / (I_max + I_min)
### Physical Meaning
- **D = 1, V = 0**: Complete which-path knowledge, no interference (particle behavior)
- **D = 0, V = 1**: No which-path knowledge, maximum interference (wave behavior)
- **Intermediate**: Partial knowledge of both -- the identity constrains their trade-off
### Derivation Framework
1. **State Preparation**: |psi> = (|1>|e1> + |2>|e2>) / sqrt(2) where |e1>, |e2> are path marker states
2. **Distinguishability**: D = sqrt(1 - |<e1|e2>|^2)
3. **Visibility**: V = |<e1|e2>|
4. **Identity**: D^2 + V^2 = 1 - |<e1|e2>|^2 + |<e1|e2>|^2 = 1
### Generalizations
- **Mixed States**: D^2 + V^2 <= 1 (inequality for mixed initial states)
- **Multi-path**: Extended to N-slit with vector-valued distinguishability
- **Entangled Systems**: Incorporates entanglement as third term in trade-off
- **Quantum Eraser**: Post-selection can recover V by erasing D
## Implementation Pattern
### Step 1: Compute Complementarity
```python
import numpy as np
def complementarity_identity(e1, e2):
"""Compute D and V from path marker states."""
e1 = e1 / np.linalg.norm(e1)
e2 = e2 / np.linalg.norm(e2)
overlap = np.abs(np.vdot(e1, e2))
V = overlap
D = np.sqrt(1 - overlap**2)
identity = D**2 + V**2
assert abs(identity - 1.0) < 1e-10, f"Identity violated: {identity}"
return D, V, identity
```
### Step 2: Quantum Eraser Simulation
```python
def quantum_eraser(D, V, erasure_angle):
"""Simulate quantum eraser: post-select to recover visibility."""
new_V = V * np.cos(erasure_angle) + D * np.sin(erasure_angle)
new_D = np.sqrt(1 - new_V**2)
return new_D, new_V
```
### Step 3: Application to QKD
```python
def qkd_security_from_complementarity(eavesdropper_overlap):
"""Derive QKD security bounds from complementarity."""
D_eve = np.sqrt(1 - eavesdropper_overlap**2)
V_alice_bob = eavesdropper_overlap
security_threshold = 0.1
return D_eve < security_threshold, D_eve
```
## Applications
- **QKD Security Proofs**: Derive security bounds from fundamental complementarity
- **Quantum Sensing**: Optimize interferometric sensors balancing path info and visibility
- **Quantum Erasers**: Quantify recoverable information after erasure
- **Decoherence Analysis**: Track D(t) and V(t) evolution under environmental coupling
- **Quantum Foundations**: Test complementarity in novel regimes (macroscopic, relativistic)
## Pitfalls
- **Idealization**: Identity assumes pure states -- mixed states give inequality D^2 + V^2 <= 1
- **Detection Loophole**: Post-selection must be properly accounted for in experimental tests
- **Phase Reference**: Visibility depends on stable phase reference -- decoherence reduces V
- **Beyond Two Paths**: Multi-path interferometry requires generalized complementarity relations
## Verification
- Numerically verify D^2 + V^2 = 1 for arbitrary marker state pairs
- Check limiting cases: orthogonal markers (D=1, V=0) and identical markers (D=0, V=1)
- Compare with experimental data from double-slit with polarization markers
## References
- arXiv:2604.18760 -- A universal complementarity identity for polarized double-slit interferometry
- Related: Englert-Greenberger duality relation, quantum eraser, decoherence theory
## Related Skills
- `quantum-cognition` -- Quantum cognition modeling
- `quantum-information-protocol-analyzer` -- Analyze quantum information protocols
- `quantum-photonic-neural-networks` -- Time-bin encoded QPNN
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!