Elitzur-Vaidman Quantum Bomb Detector

2198fc48-44d7-41b3-8f35-d9569a49c91a
3.0
Description

This circuit simulates the Elitzur-Vaidman bomb tester, which uses quantum superposition and entanglement to detect the presence of a 'bomb' (represented by the CNOT gate) without setting it off.

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

# Create circuit with 2 qubits and 1 classical bit
qc = QuantumCircuit(2, 1)

# Prepare qubit 0 in superposition
qc.h(0)

# Simulate bomb presence with a controlled-NOT gate
qc.cx(0, 1)

# Interfere qubit 0 after possible interaction
qc.h(0)

# Measure qubit 0 to detect interference pattern
qc.measure(0, 0)
```
Quantum Execution Results
ibm_kyiv
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