Multiple choice
This circuit is measured once in the computational basis. What is P(|001⟩)?
const c = circuit(3); c.x(0); c.h(1); c.cx(1, 2); c.cx(0, 1); c.h(0); c.cx(1, 2); c.cz(0, 2); return c;
Commit your prediction for P(|001⟩) — then run it.
const c = circuit(3); c.x(0); c.h(1); c.cx(1, 2); c.cx(0, 1); c.h(0); c.cx(1, 2); c.cz(0, 2); return c;
Commit your prediction for P(|001⟩) — then run it.