The Bell Measurement
Quantum teleportation requires Alice to measure her two qubits in the Bell basis — the four maximally-entangled two-qubit states. Rather than building a new kind of detector, a Bell-basis measurement is simply a change of basis followed by ordinary computational-basis measurement. That change of basis is a small two-gate circuit.
The four Bell states
The Bell basis consists of
Each state is labelled by two classical bits once you measure in the Bell basis: the bit pair 00
identifies , 10 identifies , 01 identifies ,
and 11 identifies .
The Bell measurement circuit
Creating a Bell pair from takes two gates: on qubit 0, then . Both gates are their own inverse (, ), so the inverse circuit — the Bell measurement — is just the same two gates applied in reverse order:
- , then
- on qubit 0,
- measure both qubits in the computational basis.
We can verify this on . After the CNOT we get
Applying to qubit 0 maps , leaving . Measuring now always
yields the outcome 00 — exactly the label assigned to . The same calculation shows
that , , and .
Why this matters for teleportation
In the teleportation protocol, Alice holds the qubit she wants to send (qubit 0) and her half of
the shared entangled pair (qubit 1). She performs the Bell measurement on these two qubits and
obtains one of the four outcomes 00, 01, 10, or 11. Each outcome tells Bob which of four
corrections to apply to his qubit — but only once Alice sends the two classical bits over a regular
channel. No quantum information travels faster than light.
Try it
The starter code prepares by applying and . Add the
Bell measurement — CNOT then H then measure — so that the grader sees the deterministic outcome
00 with probability 1.
The probability bar for 00 should reach 100%, confirming that the Bell measurement correctly
identifies .
Sign in on the full site to ask questions and join the discussion.