Measurement-assisted quantum state engineering methodology for generating and manipulating squeezed Schrodinger cat states. Uses QND entangling operations with homodyne measurement for high-fidelity state preparation. Applicable to measurement-based quantum computing, hybrid quantum networks, and non-Gaussian resource generation.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill quantum-state-engineering --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quantum State Engineering?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-quantum-state-engineering)More formats (shields.io, HTML) on the badges page.
---
name: quantum-state-engineering
description: "Measurement-assisted quantum state engineering methodology for generating and manipulating squeezed Schrodinger cat states. Uses QND entangling operations with homodyne measurement for high-fidelity state preparation. Applicable to measurement-based quantum computing, hybrid quantum networks, and non-Gaussian resource generation."
tags: ["quantum", "state-engineering", "cat-states", "homodyne", "measurement-based"]
related_skills: ["bosonic-grid-states-qec", "quantum-bosonic-squeezing", "quantum-non-gaussian-states"]
---
# Quantum State Engineering via Measurement-Assisted Gates
## Overview
This methodology provides a systematic approach to generating high-fidelity squeezed Schrödinger cat states using measurement-assisted quantum gates. The approach combines ancilla preparation, QND entangling operations, and projective homodyne measurement with an iterative amplification protocol.
**Source Paper**: "Iterative CZ-gate-based protocol for squeezed Schrödinger cat state engineering" (arXiv: 2606.02201, June 2026)
## Core Methodology
### Single-Step Generation
1. **Ancilla Preparation**: Prepare a non-Gaussian small-amplitude (squeezed) Schrödinger cat state
2. **Target Preparation**: Prepare target oscillator in squeezed vacuum or coherent state
3. **QND Entangling Operation**: Apply quantum nondemolition entangling gate between ancilla and target
4. **Projective Measurement**: Perform homodyne measurement on the ancilla
5. **State Collapse**: Target collapses into a high-fidelity squeezed cat state conditioned on measurement outcome
### Iterative Amplification Protocol
1. **Amplification Stage**: Apply homodyne-conditioned CZ-based protocol
2. **Parameter Optimization**: Analyze fidelity/success-probability trade-offs
3. **Controlled Size**: Cat state size is tunable through iteration count and measurement conditioning
4. **Convergence**: Protocol converges to desired fidelity with sufficient iterations
## Implementation Pattern
```python
class CatStateEngineer:
def __init__(self, squeezing_level, ancilla_size):
self.squeezing_level = squeezing_level
self.ancilla_size = ancilla_size
def prepare_ancilla(self):
# Prepare non-Gaussian small-amplitude squeezed cat state
ancilla = create_squeezed_cat_state(size=self.ancilla_size)
return ancilla
def prepare_target(self):
# Prepare target in squeezed vacuum or coherent state
target = create_squeezed_vacuum(level=self.squeezing_level)
return target
def qnd_entangle(self, ancilla, target):
# Apply QND entangling operation
entangled = apply_qnd_gate(ancilla, target)
return entangled
def homodyne_measure(self, entangled_state):
# Perform projective homodyne measurement
measurement_result = homodyne_project(entangled_state)
target_state = collapse_target(entangled_state, measurement_result)
return target_state, measurement_result
def iterative_amplify(self, initial_state, target_size, iterations=3):
# Iterative CZ-based amplification
state = initial_state
for i in range(iterations):
ancilla = self.prepare_ancilla()
entangled = self.qnd_entangle(ancilla, state)
state, outcome = self.homodyne_measure(entangled)
if not self.verify_fidelity(state, target_size):
break
return state
def fidelity_success_tradeoff(self, state):
# Analyze fidelity vs success probability
fidelity = self.compute_fidelity(state)
success_prob = self.compute_success_probability(state)
return fidelity, success_prob
```
## Activation Keywords
- quantum cat states
- squeezed cat state engineering
- measurement-based quantum computing
- QND gate
- homodyne measurement
- non-Gaussian resource
- cat state amplification
## Key Insights
- QND entangling + homodyne measurement enables deterministic-like state preparation
- The fidelity/success-probability trade-off is tunable — users can prioritize either
- Iterative amplification allows scaling cat states beyond single-step limitations
- Non-Gaussian resources are essential for measurement-based quantum computing advantage
- The protocol is compatible with hybrid quantum network architectures
## Applications
1. **Measurement-Based Quantum Computing**: Cat states as non-Gaussian resources
2. **Hybrid Quantum Networks**: Enhanced communication capabilities
3. **Quantum Error Correction**: Cat states for bosonic QEC codes
4. **Quantum Metrology**: Squeezed cat states for precision measurements
## Parameter Regimes
- **High fidelity regime**: More iterations, lower success probability
- **High success regime**: Fewer iterations, moderate fidelity
- **Balanced regime**: Optimal trade-off for practical applications
- Hardware constraints determine achievable squeezing levels and ancilla sizes
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!