|q⟩ Bad Qubits

intermediate · Physics · Entanglement & the EPR/Bell Inequalities

Measurement Settings and Correlations

A correlation function condenses the joint statistics of a two-particle measurement into a single number between 1-1 and +1+1. It is the object that Bell and CHSH inequalities constrain, so we need to know how to compute it from quantum mechanics.

Definition

Alice and Bob each record an outcome ±1\pm 1. For fixed settings aa and bb, the correlation is the expectation value of the product of their outcomes:

E(a,b)=AB=A,B{±1}AB  P(A,Ba,b).E(a, b) = \langle A\, B \rangle = \sum_{A, B \in \{\pm 1\}} A\,B\;P(A, B \mid a, b).

Because AB=+1A B = +1 when the outcomes agree and 1-1 when they disagree,

E(a,b)=P(same)P(opposite).E(a, b) = P(\text{same}) - P(\text{opposite}).

So E=+1E = +1 means perfect correlation, E=1E = -1 perfect anticorrelation, and E=0E = 0 no correlation.

The singlet's joint probabilities

For the singlet Ψ=12( ⁣ ⁣)|\Psi^-\rangle = \tfrac{1}{\sqrt2}(|\!\uparrow\downarrow\rangle - |\!\downarrow\uparrow\rangle), suppose Alice measures along an axis and Bob along an axis making angle θ\theta with hers. The Born rule gives

P(opposite)=cos2 ⁣(θ2),P(same)=sin2 ⁣(θ2).P(\text{opposite}) = \cos^2\!\Big(\frac{\theta}{2}\Big), \qquad P(\text{same}) = \sin^2\!\Big(\frac{\theta}{2}\Big).

At θ=0\theta = 0 (same axis), P(opposite)=1P(\text{opposite}) = 1 — the spins are always opposite, the hallmark of the singlet. At θ=π\theta = \pi (opposite axes), P(same)=1P(\text{same}) = 1.

The correlation

Combine the two pieces:

E(θ)=sin2 ⁣(θ2)cos2 ⁣(θ2)=cosθ,E(\theta) = \sin^2\!\Big(\frac{\theta}{2}\Big) - \cos^2\!\Big(\frac{\theta}{2}\Big) = -\cos\theta,

using the identity cosθ=cos2(θ/2)sin2(θ/2)\cos\theta = \cos^2(\theta/2) - \sin^2(\theta/2). This is the singlet correlation we have been quoting. Equivalently it is the expectation value of the joint spin operator, E(a^,b^)=Ψ(a^σ)(b^σ)Ψ=a^b^E(\hat a, \hat b) = \langle \Psi^- | (\hat a \cdot \boldsymbol\sigma) \otimes (\hat b \cdot \boldsymbol\sigma) | \Psi^- \rangle = -\,\hat a \cdot \hat b.

Worked example

Take θ=π/3=60\theta = \pi/3 = 60^\circ. Then θ/2=π/6\theta/2 = \pi/6, so cos2(π/6)=3/4\cos^2(\pi/6) = 3/4 and sin2(π/6)=1/4\sin^2(\pi/6) = 1/4. The correlation is

E=1434=12=cos(π3).E = \tfrac14 - \tfrac34 = -\tfrac12 = -\cos\big(\tfrac{\pi}{3}\big).

Try it

This is a numerical exercise — your code should return a number. For θ=π/3\theta = \pi/3, build the two probabilities P(same)=sin2(θ/2)P(\text{same}) = \sin^2(\theta/2) and P(opposite)=cos2(θ/2)P(\text{opposite}) = \cos^2(\theta/2), then return the correlation E=P(same)P(opposite)E = P(\text{same}) - P(\text{opposite}). You should get 12-\tfrac12.

Run your code to see the quantum state.

Sign in on the full site to ask questions and join the discussion.