|q⟩ Bad Qubits

← Question Bank

Predict the output
Run 1024 seeded shots of this circuit (seed 3120). Predict how many give |00⟩. Estimate P(|00⟩) × 1024 and pick the closest option.
⚛ The apparatus
const c = circuit(2);
const theta = Math.PI / 8;
// e^{-i*theta*ZZ}
c.cx(0, 1);
c.rz(2 * theta, 1);
c.cx(0, 1);
// e^{-i*theta*(X⊗I)}
c.rx(2 * theta, 0);
return c;

Commit your prediction for counts of |00⟩ over 1024 shots — then run it.