Quantum bound on the CHSH inequality using semidefinite relaxations

This post is available as an IPython notebook.

The Tsirelson bound on the Clauser-Horne-Shimony-Holt inequality defines the maximum value on quantum correlations in a bipartite system where the two sites have two measurements each, with two possible outcomes [1].

The problem of finding the maximum quantum violation can be cast as a polynomial optimization problem of noncommuting variables, which in turn is approximated by a hierarchy of semidefinite programming (SDP) relaxations [2]. The probabilities are described by projection operators over normalized states -- we label the projectors by E_i . They pairwise belong to measurements M_k , where M_1 and M_2 are on one site of the system, and M_3 and M_4 are on the other site. Hence, for instance, E_1, E_2\in M_1 , E_3, E_4\in M_2 , and so on. The optimization problem becomes

\max_{E,\phi} \langle \phi, \sum_{ij} c_{ij} E_i E_j\phi \rangle

subject to

\begin{split}\|\phi\| & =1,\\ E_i^\dagger & = E_i & \quad \forall i,\\ E_i E_j & = \delta_{ij}E_i & \quad E_i,E_j \in M_k, \forall k,\\ \sum_i E_i & = 1 & \quad \forall M_k,\\ \lbrack E_i,E_j\rbrack & = 0 &\quad \forall E_i \in M_1\cup M_2, E_j\in M_3\cup M_4.\end{split}

We use the latest git version of Ncpol2sdpa to translate the polynomial optimization problem to an SDP [3], and then we solve it with SDPA. To begin with, we import the necessary functions from Ncpol2sdpa:

In [1]:
from ncpol2sdpa import generate_variables, SdpRelaxation, solve_sdp,\
                       projective_measurement_constraints

We cast the problem in the form of expectation values to get the familiar value of the maximum violation, 2\sqrt{2} . This requires defining a helper function to generate the expectation values given the projectors and the outcomes:

In [2]:
def expectation_values(M, outcomes):
    exp_values = []
    for k in range(len(M)):
        exp_value = 0
        for i in range(len(M[k])):
            exp_value += outcomes[k][i]*M[k][i]
        exp_values.append(exp_value)
    return exp_values

The total number of variables is 8 (2^2 2^2 ). We generate the necessary number of Hermitian variables and divide them into the appropriate measurements:

In [3]:
n_vars = 8
E = generate_variables(n_vars, name='E', hermitian=True)
M, outcomes = [], []
for i in range(n_vars/2):
    M.append([E[2*i], E[2*i+1]])
    outcomes.append([1, -1])
A = [M[0], M[1]]
B = [M[2], M[3]]

Ncpol2sdpa has a built-in function to generate the constraints for projective measurements. With that, we define the constraints of the optimization problem:

In [4]:
inequalities= []
monomial_substitutions, equalities = projective_measurement_constraints(A, B)

The objective function uses the expectation values. We have to take the negative of it, as the SDP solver can only minimize a function. The objective for the maximum violation thus becomes:

In [5]:
C = expectation_values(M, outcomes)
objective = -(C[0]*C[2] + C[0]*C[3] + C[1]*C[2] - C[1]*C[3])

Setting the relaxation level to one, the solution already converges:

In [6]:
level = 1
sdpRelaxation = SdpRelaxation(E, verbose=2)
sdpRelaxation.get_relaxation(objective, inequalities, equalities,
                             monomial_substitutions, level)
print solve_sdp(sdpRelaxation)
Number of SDP variables: 44
Generating moment matrix...
Reduced number of SDP variables: 32
Processing 8 inequalities...
(-2.828427226880054, -2.8284273492092673)

References

[1] Clauser, J. F.; Horne, M. A.; Shimony, A. & Holt, R. A. Proposed Experiment to Test Local Hidden-Variable Theories. Physical Review Letters, 1969, 23, 880-884.

[2] Navascués, M.; Pironio, S. & Acín, A. A convergent hierarchy of semidefinite programs characterizing the set of quantum correlations. New Journal of Physics, 2008, 10, 073013.

[3] Wittek, P. Ncpol2sdpa -- Sparse Semidefinite Programming Relaxations for Polynomial Optimization Problems of Noncommuting Variables. arXiv:1308.6029, 2013.

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>