|q⟩ Bad Qubits

← Question Bank

Multiple choice
For this circuit, what is the probability that measuring all 2 qubits yields exactly |11⟩ (qubit 0 leftmost)?
⚛ The apparatus
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 P(|11⟩) — then run it.