bloch-sphere-0

Entanglement

We've studied how we can represent multiple qubits using the tensor product.

Sometimes, these multi-qubit systems are what we call "seperable". This means that the whole system can be represented as a tensor product of it's component qubits.

For example, the following state is seperable:

1200+1210=(120+121)0\frac{1}{\sqrt{2}}\ket{00} + \frac{1}{\sqrt{2}}\ket{10} = \Bigl(\frac{1}{\sqrt{2}}\ket{0} + \frac{1}{\sqrt{2}}\ket{1}\Bigr) \otimes \ket{0}

Because we can represent this 2-qubit state as the tensor product of two single qubits it is seperable.

A great question is: do non-separable separable states exist? If so, what do they look like?

Let's examine the following circuit:

We know how to work with these! We start in the state00\ket{00}. We'll then apply the Hadamard gate to the first bit while leaving the second bit alone (i.e. applying the identity operation):

(HI)00=(120+121)0=1200+1210(H \otimes I)\ket{00} = \Bigl(\frac{1}{\sqrt{2}}\ket{0} + \frac{1}{\sqrt{2}}\ket{1}\Bigr) \otimes \ket{0} \\[3ex] = \frac{1}{\sqrt{2}}\ket{00} + \frac{1}{\sqrt{2}}\ket{10}

And then we apply the CNOT\text{CNOT} gate. Remember that the CNOT\text{CNOT} gate flips the second qubit only when the first qubit is in the state 1\ket{1}, so we have:

CNOT(1200+1210)=12CNOT00+12CNOT101200+1211\text{CNOT}\Bigl(\frac{1}{\sqrt{2}}\ket{00} + \frac{1}{\sqrt{2}}\ket{10}\Bigr) = \frac{1}{\sqrt{2}}\text{CNOT}\ket{00} + \frac{1}{\sqrt{2}}\text{CNOT}\ket{10} \\[3ex] \frac{1}{\sqrt{2}}\ket{00} + \frac{1}{\sqrt{2}}\ket{11}

So we've ended in a 2-qubit state that is in the even superposition of 00\ket{00} and 11\ket{11}. Is this seperable? Give it a go! See if you can find two single qubit states that can be tensored together to give this state.

Hopefully you don't find any, because this state is in fact non-separable! Because the two qubits have different values in both kets, we can't represent this state as a tensor product of two single qubit states.

Just take a moment to ponder what this means. In classical computation, we could have many bits, but we could always pick out a single bit and describe it's state independantly. This is not the case in quantum computation. The state of a qubit can be dependent on the state of another qubit. This is a very powerful concept that we will exploit in many quantum algorithms.

These 2-qubit entangled states are called EPR pairs, named after the three physicists who first described them in a famous paper in 1935: Einstein, Podolsky, and Rosen.

There are 4 of these pairs:

β00=1200+1211β10=12001211β01=1201+1210β11=12011210\ket{\beta_{00}} = \frac{1}{\sqrt{2}}\ket{00} + \frac{1}{\sqrt{2}}\ket{11} \\[3ex] \ket{\beta_{10}} = \frac{1}{\sqrt{2}}\ket{00} - \frac{1}{\sqrt{2}}\ket{11} \\[3ex] \ket{\beta_{01}} = \frac{1}{\sqrt{2}}\ket{01} + \frac{1}{\sqrt{2}}\ket{10} \\[3ex] \ket{\beta_{11}}=\frac{1}{\sqrt{2}}\ket{01} - \frac{1}{\sqrt{2}}\ket{10}

Hopefully you can see by what we've discussed before, that these states are all indeed, non-separable.

They have a slightly more succinct representation:

βxy=120y+12(1)x1yˉ\ket{\beta_{xy}} = \frac{1}{\sqrt{2}}\ket{0y} + \frac{1}{\sqrt{2}}(-1)^x\ket{1\bar{y}}

where xx and yy are either 00 or 11 and yˉ\bar{y} is the "not" of yy.

Also note the (1)x(-1)^x. This might seem a bit weird at first, but it's essentially saying: 11 when xx is even (in our case just 00) and 1-1 when xx is odd (in our case just 11). I'm drawing special attention to this now, since things like this are quite common and will pop-up a lot with quantum algorithms. Take a second to familiarise yourself with it.

Taking a step back from the maths for a second, what could we achieve with this entanglement property? Although we draw it as a circuit, there is nothing that actually says the two qubits need to be nearby. This means that two entangled qubits could be many many light years apart.

Let's devise a hypothetical scenario where Alice and Bob get together to create an entangled pair β00\ket{\beta_{00}}, Alice takes the first qubit, Bob takes the other and then they travel far apart:

If Alice measures her qubit as 0\ket{0} then the system of both their qubits collapses to 00\ket{00} since the other possibility, 11\ket{11}, is not possible.

This means that Bob has a 100% chance to measure 0\ket{0}. But the outcome of Bob's measurement was decided by Alice's measurement, so did her measurement somehow influence Bob's? Did her measurement cause some information to be sent to Bob's qubit to tell it the measurement result? If Alice and Bob were light years apart, did this information travel faster than the speed of light?

The answer to all these questions is no. Them measuring the same value was a consequence of quantum correlation that isn't so intuitive in the normal classical world. We will see later on that this phenomenon doesn't let communication happen faster than the speed of light.

There are many people who have done a better job of explaining this phenomenon. It is a deep philosophical topic in the world of quantum mechanics and we won't get to side-tracked down that rabbit hole for now.

When dealing with unintuitive quantum effects like this, just remember one thing: "trust the math". As long as the math checks out, you can be confident that the quantum effects are real and can be exploited in quantum algorithms.

Exercises

Exercise 1

Look again at the circuit diagram above that generates the first EPR pair. How could we re-use the same circuit the generate the other 3 EPR pairs?

Show solution

Exercise 2

Three qubit entanglement

  1. Give a possible state for a "maximally entangled" three qubit system. "Maximally entangled" here means that measuring any one of the qubits completely defines what the other qubits should be.
  2. Give a quantum circuit that creates this state.
  3. Show a 3-qubit system state in which measuring a 0\ket{0} for any of the qubits leaves the other 2 qubits entagled, but measuring a 1\ket{1} leaves the other 2 qubits separable.
Show solution
> Next Article (Teleportation)