Quantum state fidelity estimation methodology — sample-optimal algorithms for estimating fidelity between unknown and reference quantum states, with applications to tolerant quantum state certification and query complexity lower bounds.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill quantum-fidelity-reference-state-estimation --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quantum Fidelity Reference State Estimation?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-quantum-fidelity-reference-state-estimation)More formats (shields.io, HTML) on the badges page.
---
name: quantum-fidelity-reference-state-estimation
description: "Quantum state fidelity estimation methodology — sample-optimal algorithms for estimating fidelity between unknown and reference quantum states, with applications to tolerant quantum state certification and query complexity lower bounds."
---
# Quantum Fidelity Reference State Estimation
## Description
Methodology for estimating the fidelity of an unknown quantum state to a known reference state with optimal sample complexity. Provides theoretical bounds (upper O(r²/ε²) and lower Ω(r/ε²)) and extends to tolerant quantum state certification. Based on arXiv:2606.26034 (Wang, 2026).
## Activation Keywords
- quantum fidelity estimation
- 量子保真度估计
- reference quantum state
- quantum state certification
- tolerant state certification
- sample complexity quantum state
- 量子态认证
- fidelity to reference state
- quantum query complexity lower bound
## Tools Used
- arxiv-search: Discover papers on quantum state fidelity and certification
- web_search: Find implementations of fidelity estimation protocols
- coding: Implement sample-optimal fidelity estimation algorithms
- terminal: Run quantum simulation (Qiskit/PennyLane) to validate protocols
## Core Concepts
### Fidelity Estimation Problem
Given copies of an unknown state ρ and a known reference state σ of rank r, estimate F(ρ, σ) = Tr(√(√ρ σ √ρ)) to additive error ε.
### Sample Complexity Bounds
| Scenario | Upper Bound | Lower Bound | Reference |
|----------|-------------|-------------|-----------|
| Reference state rank r, unknown arbitrary | O(r²/ε²) | Ω(r/ε²) | Wang (2026) |
| Unknown rank ≤ r, reference arbitrary | O(r²/ε⁴) | — | Wang (2026) |
### Key Improvement
Previous best: O(r² log²(1/ε) / ε⁴) → New: O(r²/ε²) — **improvement by factor of log²(1/ε)/ε²**.
### Methodology Patterns
#### Pattern 1: Rank-Exploiting Fidelity Estimation
When the reference state σ has known rank r:
1. Diagonalize σ = U diag(λ₁,...,λᵣ, 0,...,0) U†
2. Measure ρ in the eigenbasis of σ
3. Use the non-zero eigenspace (dimension r) to estimate fidelity
4. Sample complexity scales with r², not d² (full dimension)
#### Pattern 2: Tolerant Quantum State Certification
Generalize exact certification (ρ = σ vs ρ ≠ σ) to tolerant certification:
1. Accept if F(ρ, σ) ≥ F_accept
2. Reject if F(ρ, σ) ≤ F_reject
3. Gap Δ = F_accept - F_reject determines sample complexity
4. Extends Badescu-O'Donnell-Wright (STOC 2019) exact certification
#### Pattern 3: Query Complexity Lower Bounds
Use fidelity estimation lower bounds to derive quantum query complexity:
1. Ω(r/ε²) lower bound for rank-r reference states
2. Implications for property testing and state discrimination
3. Connects to quantum information theory channel capacity
## Usage Patterns
### Pattern 1: Analyzing Fidelity Estimation Protocols
When reviewing papers on quantum state fidelity:
1. Check if reference state has structure (low rank, stabilizer, etc.)
2. Compare sample complexity to O(r²/ε²) baseline
3. Verify if protocol achieves optimal ε-dependence
4. Look for lower bound improvements
### Pattern 2: Designing Tolerant Certification Protocols
When building quantum state verification systems:
1. Set acceptance/rejection thresholds based on application
2. Use rank-exploiting methods when reference is structured
3. Account for the gap Δ in sample complexity analysis
4. Consider adversarial noise models
### Pattern 3: Quantum Query Complexity Analysis
When studying quantum algorithms that access states as oracles:
1. Map query problem to fidelity estimation
2. Apply Ω(r/ε²) lower bound
3. Derive impossibility results for sub-optimal sample regimes
4. Connect to property testing and learning theory
## Error Handling
### Degenerate Reference States
If reference state σ has degenerate eigenvalues:
- Use eigenspace decomposition rather than individual eigenvectors
- Sample complexity depends on number of distinct eigenvalues, not just rank
### High-Rank Reference States
If r ≈ d (reference is full rank):
- Sample complexity approaches O(d²/ε²) — standard tomography regime
- Consider alternative: direct fidelity estimation (DFE) for Pauli-sparse states
### Noisy Measurements
If measurement apparatus has noise:
- Incorporate measurement error into ε budget
- Use robust estimation techniques (median-of-means)
- Sample complexity increases by factor of 1/(1-η)² where η is noise rate
## Implementation Guidelines
### Qiskit Implementation Pattern
```python
# Fidelity estimation via classical shadows
from qiskit.quantum_info import state_fidelity
# For low-rank reference: project onto eigenspace, estimate overlap
# Sample complexity O(r²/ε²) achievable with Pauli measurements
```
### Theoretical Analysis Checklist
- [ ] Reference state rank r is known/exploitable
- [ ] Error ε is specified (additive)
- [ ] Success probability δ is accounted for (usually 1-δ)
- [ ] Measurement model specified (Pauli, adaptive, collective)
- [ ] Compare to baseline: random guessing, full tomography, DFE
## Related Skills
- `quantum-state-fidelity-neural-networks` — neural network approaches to fidelity
- `quantum-entropy-estimation` — related quantum property estimation
- `classical-shadow-estimation` — shadow tomography for state properties
- `quantum-state-preparation-nn` — preparing states for fidelity comparison
## Resources
- arXiv:2606.26034 — Estimating Fidelity to a Reference Quantum State (Wang, 2026)
- Badescu-O'Donnell-Wright STOC 2019 — Quantum state certification
- O'Donnell-Wright 2015 — Quantum property testing survey
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!