Quantum Teleportation Circuit

f2a48bf2-62a2-4952-ba8b-3acfa09e3624
4.0
Description

This circuit performs quantum teleportation from a source qubit to a target qubit.

Qiskit Circuit Code
Python
```python
from qiskit import *

qc = QuantumCircuit(3, 2)

# Prepare the state to teleport on qubit 0
qc.h(0)
qc.p(1.5708, 0)  # Apply S gate (phase pi/2)

# Create Bell pair between qubits 1 and 2
qc.h(1)
qc.cx(1, 2)

# Perform Bell measurement on qubits 0 and 1
qc.cx(0, 1)
qc.h(0)
qc.measure([0, 1], [0, 1])

# Apply conditional operations based on measurement outcomes
qc.cx(1, 2)
qc.cz(0, 2)
```
Quantum Execution Results
ibm_kyiv
unknown
1024 shots
Execution Notice:

cannot reshape array of size 1024 into shape (1024,2)

Raw Result Data
Download Results
Back to Home