Predict the output
Run 1024 seeded shots of this circuit (seed 5356). Predict how many give |00⟩. Estimate P(|00⟩) × 1024 and pick the closest option.
const gamma1 = 0.4, gamma2 = 0.8; const beta1 = 0.3, beta2 = 0.6; const c = circuit(2); // Uniform superposition c.h(0); c.h(1); // Layer 1 c.cx(0, 1); c.rz(gamma1, 1); c.cx(0, 1); c.rx(2 * beta1, 0); c.rx(2 * beta1, 1); // Layer 2 c.cx(0, 1); c.rz(gamma2, 1); c.cx(0, 1); c.rx(2 * beta2, 0); c.rx(2 * beta2, 1); return c;
Commit your prediction for counts of |00⟩ over 1024 shots — then run it.