Multiple choice
Run this circuit, then measure. With what probability do you get |0⟩?
const t = 0.4; const c = circuit(1); c.rx(t, 0); c.rz(2 * t, 0); c.rx(t, 0); return c;
Commit your prediction for P(|0⟩) — then run it.
const t = 0.4; const c = circuit(1); c.rx(t, 0); c.rz(2 * t, 0); c.rx(t, 0); return c;
Commit your prediction for P(|0⟩) — then run it.