Quantum Entanglement Explained
What entanglement actually is, why Einstein hated it, and why it's essential for quantum computing and quantum communication.
Einstein famously called entanglement “spooky action at a distance.” He used the phrase as a criticism, believing it proved quantum mechanics was incomplete. While he was mistaken, the name remains attached to the concept.
What Entanglement Actually Is
Two particles are entangled when their quantum states are correlated in a way that cannot be explained by treating each particle independently. Measuring one particle instantly reveals information about the other, regardless of the distance separating them.
Here is the key intuition: before you measure either particle, neither one has a definite value. They exist in a shared, combined state. The moment you measure one, both particles acquire definite values simultaneously. This is not like opening a box and finding a glove, then knowing the other glove is left-handed. In the glove case, the handedness was fixed before you opened the box. With entanglement, the outcomes are genuinely undetermined until measurement.
Think of it like this: two entangled coins, when flipped simultaneously, always land on the same side. Not because someone pre-arranged them, but because their outcomes are linked at a fundamental physical level. That linkage, with no hidden pre-arrangement, is what makes entanglement strange and useful.
The Bell State
The simplest entangled states are called Bell states. The most famous one looks like this:
|Φ+⟩ = (|00⟩ + |11⟩) / √2
Breaking this down: the notation |00⟩ means qubit A is 0 and qubit B is 0. The notation |11⟩ means both are 1. The expression says the system is in an equal superposition of both possibilities at once, with each possibility carrying probability amplitude 1/√2.
When you square those amplitudes to get probabilities, you get (1/√2)² = 1/2 for each outcome. So there is a 50% chance of measuring 00 and a 50% chance of measuring 11.
Why You Get 00 and 11, But Never 01 or 10
The Bell state above contains no |01⟩ term and no |10⟩ term. They are not present because the entangled state was constructed without them. When the H gate and CNOT gate create this state (described below), the mathematics guarantees that only the |00⟩ and |11⟩ components survive.
When you measure qubit A and get 0, the state of the system collapses to |00⟩. Qubit B is immediately determined to be 0 as well, even if it is on the other side of the planet. If you measure A and get 1, the system collapses to |11⟩ and B is 1. There is no mechanism by which you could ever observe 01 or 10, because those terms were never part of the state.
This perfect correlation is not a coincidence or a statistical tendency. It is exact, every single time, for every measurement.
How to Create Entanglement: H Gate + CNOT
Entanglement does not require exotic equipment. You can create a Bell state from two qubits starting in |0⟩ using just two gates:
- Apply a Hadamard gate (H) to qubit 0. This puts qubit 0 into an equal superposition:
(|0⟩ + |1⟩) / √2. - Apply a CNOT gate with qubit 0 as the control and qubit 1 as the target. CNOT flips the target qubit when the control qubit is
1.
After step 1, the two-qubit state is (|0⟩ + |1⟩)/√2 ⊗ |0⟩ = (|00⟩ + |10⟩)/√2. After the CNOT, the |10⟩ term becomes |11⟩ (qubit 1 gets flipped), and |00⟩ stays as |00⟩ (qubit 1 is not flipped). The result is (|00⟩ + |11⟩)/√2, which is exactly the Bell state.
Here is how to do this in Qiskit:
from qiskit import QuantumCircuit
from qiskit_aer import AerSimulator
# Create a circuit with 2 qubits and 2 classical bits
qc = QuantumCircuit(2, 2)
# Step 1: Put qubit 0 into superposition
qc.h(0)
# Step 2: Entangle qubit 0 and qubit 1 with a CNOT
qc.cx(0, 1)
# Measure both qubits
qc.measure([0, 1], [0, 1])
# Run the simulation
simulator = AerSimulator()
job = simulator.run(qc, shots=1000)
result = job.result()
counts = result.get_counts()
print(counts)
# Example output: {'00': 503, '11': 497}
# You will never see '01' or '10'
Run this and you will see only 00 and 11 in the output, split roughly 50/50 across however many shots you run. The 01 and 10 outcomes are absent every time.
The Three Main Applications
Quantum Teleportation
Quantum teleportation transfers the complete quantum state of one qubit to another qubit at a different location, using a shared entangled pair and a classical communication channel. No physical particle moves. The sender performs a measurement on their qubit and the entangled qubit they hold, then sends the two classical bits of measurement result to the receiver. The receiver applies a correction operation based on those bits, and their qubit ends up in exactly the original state. Crucially, the classical bits must be sent through ordinary channels, so teleportation cannot transfer information faster than light. It is useful in quantum networks for linking quantum computers or distributing quantum information over long distances.
Superdense Coding
Superdense coding is in some sense the reverse of teleportation: it uses one shared entangled pair and one physical qubit transmission to send two classical bits of information. The sender encodes two classical bits by applying one of four operations to their half of the entangled pair, then sends that single qubit to the receiver. The receiver performs a Bell measurement on the two qubits together and recovers both bits. Without the pre-shared entanglement, sending two bits would require sending two physical bits. Entanglement effectively doubles the classical communication capacity of a single qubit channel.
Quantum Key Distribution
Quantum key distribution (QKD) uses entanglement to let two parties share a secret encryption key while detecting any eavesdropping attempt. In entanglement-based QKD protocols such as E91, pairs of entangled qubits are distributed to two parties. Each party measures their qubit along a randomly chosen basis. Because eavesdropping disturbs entangled states in a detectable way, any interception shows up as unexpected correlations in the measurement results. The two parties can test for this and discard compromised bits before using the remaining bits as a key. The security guarantee comes from physics, not computational difficulty.
What Entanglement Is NOT
Entanglement does not allow faster-than-light communication. When you measure your entangled qubit and instantly know the state of the distant qubit, you cannot use this to send a message. The outcome you observe is random. Your colleague observing the distant qubit also sees a random outcome. Only when you compare notes through a classical channel do the correlations become visible. There is no way to deliberately influence which random outcome you get, so no information travels faster than light.
Entanglement is also not telepathy, not a hidden connection through space, and not evidence that particles are secretly coordinating. It is a consequence of quantum mechanics treating a multi-particle system as a single mathematical object rather than a collection of independent objects.
The Ebit: A Unit of Entanglement
Just as a bit measures classical information, an ebit (entanglement bit) measures entanglement. One ebit is the amount of entanglement in a single Bell state shared between two parties, for example the |Φ+⟩ state with one qubit held by each party.
Ebits are a resource. Teleporting one qubit costs one ebit plus two classical bits. Superdense coding produces two classical bits and consumes one ebit. When quantum information theorists analyze protocols, they track ebits the same way classical engineers track bandwidth.
Common Misconceptions
Misconception: Entanglement lets you communicate instantly. It does not. The measurement outcomes are random, and comparing them requires a classical channel.
Misconception: Entangled particles are physically connected. They are not connected by any physical link. The correlation is in the mathematics of their joint quantum state.
Misconception: Entanglement only works at short distances. Entanglement has been demonstrated over hundreds of kilometers via satellite. Distance does not degrade the correlation, though maintaining the entangled state against decoherence is a practical challenge.
Misconception: Measuring one particle disturbs the other. Nothing physically reaches out and touches the distant particle. The correlation is built into the shared state from the moment the particles interact. Measurement reveals information about the whole system simultaneously.
Misconception: Entanglement means the particles are identical. They are correlated, not identical. In the Bell state |Φ+⟩, both particles give the same result when measured in the same basis. In other Bell states, measuring in the same basis always gives opposite results.
Further Reading
- Bell State - the mathematical definition and all four Bell states
- Quantum Teleportation - how the teleportation protocol works step by step
- Quantum Key Distribution - how QKD protocols use entanglement to secure communication
Was this tutorial helpful?