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 and +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. For fixed settings a and b, the correlation is the
expectation value of the product of their outcomes:
E(a,b)=⟨AB⟩=A,B∈{±1}∑ABP(A,B∣a,b).
Because AB=+1 when the outcomes agree and −1 when they disagree,
E(a,b)=P(same)−P(opposite).
So E=+1 means perfect correlation, E=−1 perfect anticorrelation, and E=0 no correlation.
The singlet's joint probabilities
For the singlet ∣Ψ−⟩=21(∣↑↓⟩−∣↓↑⟩), suppose Alice measures along an axis and Bob along an axis making angle
θ with hers. The Born rule gives
P(opposite)=cos2(2θ),P(same)=sin2(2θ).
At θ=0 (same axis), P(opposite)=1 — the spins are always opposite, the hallmark of
the singlet. At θ=π (opposite axes), P(same)=1.
The correlation
Combine the two pieces:
E(θ)=sin2(2θ)−cos2(2θ)=−cosθ,
using the identity cosθ=cos2(θ/2)−sin2(θ/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^.
Worked example
Take θ=π/3=60∘. Then θ/2=π/6, so cos2(π/6)=3/4 and sin2(π/6)=1/4. The correlation is
E=41−43=−21=−cos(3π).
Try it
This is a numerical exercise — your code should return a number. For θ=π/3, build the two
probabilities P(same)=sin2(θ/2) and P(opposite)=cos2(θ/2), then
return the correlation E=P(same)−P(opposite). You should get −21.
Run your code to see the quantum state.
Sign in on the full site to ask questions and join the discussion.