Repeated Small Rotations and Measurements

e9e74c88-b863-4418-a169-2c8f591525cb
2.0
Description

This circuit initializes a qubit to the |1⟩ state, then applies small rotations and measurements repeatedly.

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

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

# Initialize the qubit to |1⟩ state
qc.x(0)

# Define the number of steps and small rotation angle
N = 10
delta_theta = 0.1

# Apply small rotations and measurements repeatedly
for _ in range(N):
    qc.ry(delta_theta, 0)
    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