Three-Qubit Entanglement Generator

8b9f8c20-8096-4170-a67a-5dd7fa7e50ca
3.0
Description

This quantum circuit generates a unique three-qubit entangled state using Hadamard and CNOT gates.

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

# Create a circuit with 3 qubits and 3 classical bits
qc = QuantumCircuit(3, 3)

# Apply Hadamard gates to qubits 0 and 1 to create superposition
qc.h(0)
qc.h(1)

# Entangle qubit 2 with qubits 0 and 1 using CNOT gates
qc.cx(0, 2)
qc.cx(1, 2)

# Measure all qubits
qc.measure([0, 1, 2], [0, 1, 2])
```

This quantum circuit prepares a three-qubit entangled state that is a superposition of the states |000⟩, |011⟩, |101⟩, and |110⟩. It is distinct from the GHZ and W states and demonstrates multi-qubit entanglement through a unique configuration of gates.
Quantum Execution Results
ibm_brisbane
N/A
N/A shots
Execution Notice:

'Failed to run program: \'409 Client Error: Conflict for url: https://api.quantum.ibm.com/runtime/jobs. {"errors":[{"message":"You have reached the limit of 3 pending jobs. Please wait for a job to complete or cancel one before submitting anything new.","code":3458,"solution":"Wait until some previous jobs were finished. You can cancel pending jobs to run new jobs.","more_info":"https://docs.quantum-computing.ibm.com/errors"}]}\''

Raw Result Data
Download Results
Back to Home