CHSH Inequality
Estimated QPU usage: 4 minutes (tested on IBM Kyiv)
Background
In this tutorial, you will run an experiment on a quantum computer to demonstrate the violation of the CHSH inequality with the Estimator primitive.
The CHSH inequality, named after the authors Clauser, Horne, Shimony, and Holt, is used to experimentally prove Bell's theorem (1969). This theorem asserts that local hidden variable theories cannot account for some consequences of entanglement in quantum mechanics. The violation of the CHSH inequality is used to show that quantum mechanics is incompatible with local hidden-variable theories. This is an important experiment for understanding the foundation of quantum mechanics.
The 2022 Nobel Prize for Physics was awarded to Alain Aspect, John Clauser and Anton Zeilinger in part for their pioneering work in quantum information science, and in particular, for their experiments with entangled photons demonstrating violation of Bell’s inequalities.
Requirements
Before starting this tutorial, ensure that you have the following installed:
- Qiskit SDK 1.0 or later
- Qiskit Runtime (
pip install qiskit-ibm-runtime ) 0.22 or later - Visualization support (
'qiskit[visualization]' )
Step 1. Map classical inputs to a quantum problem
For this experiment, we will create an entangled pair on which we measure each qubit on two different bases. We will label the bases for the first qubit and and the bases for the second qubit and . This allows us to compute the CHSH quantity :
Each observable is either or . Clearly, one of the terms must be , and the other must be . Therefore, . The average value of must satisfy the inequality:
Expanding in terms of , , , and results in:
You can define another CHSH quantity :
This leads to another inequality:
If quantum mechanics can be described by local hidden variable theories, the previous inequalities must hold true. However, as is demonstrated in this notebook, these inequalities can be violated in a quantum computer. Therefore, quantum mechanics is not compatible with local hidden variable theories.
If you want to learn more theory, explore Entanglement in Action with John Watrous.
You will create an entangled pair between two qubits in a quantum computer by creating the Bell state . Using the Estimator primitive, you can directly obtain the expectation values needed (, and ) to calculate the expectation values of the two CHSH quantities and . Before the introduction of the Estimator primitive, you would have to construct the expectation values from the measurement outcomes.
You will measure the second qubit in the and bases. The first qubit will be measured also in orthogonal bases, but with an angle with respect to the second qubit, which we are going to sweep between and . As you will see, the Estimator primitive makes running parameterized circuits very easy. Rather than creating a series of CHSH circuits, you only need to create one CHSH circuit with a parameter specifying the measurement angle and a series of phase values for the parameter.
Finally, you will analyze the results and plot them against the measurement angle. You will see that for certain range of measurement angles, the expectation values of CHSH quantities or , which demonstrates the violation of the CHSH inequality.
Setup
No output produced
Output:
'ibm_kyoto'
Create a parameterized CHSH circuit
First, we write the circuit with the parameter , which we call
Output:
Create a list of phase values to be assigned later
After creating the parameterized CHSH circuit, you will create a list of phase values to be assigned to the circuit in the next step. You can use the following code to create a list of 21 phase values range from to with equal spacing, that is, , , , ..., , .
No output produced
Observables
Now we need observables from which to compute the expectation values. In our case we are looking at orthogonal bases for each qubit, letting the parameterized rotation for the first qubit sweep the measurement basis nearly continuously with respect to the second qubit basis. We will therefore choose the observables , , , and .
No output produced
Step 2. Optimize problem for quantum execution
To reduce the total job execution time, V2 primitives only accept circuits and observables that conforms to the instructions and connectivity supported by the target system (referred to as instruction set architecture (ISA) circuits and observables).
ISA Circuit
Output:
ISA Observables
Similarly, we need to transform the observables to make it backend compatible before running jobs with
No output produced
Step 3. Execute using Qiskit primitives
In order to execute the entire experiment in one call to the
We can create a Qiskit Runtime
No output produced
Step 4. Post-process, return result in classical format
The estimator returns expectation values for both of the observables, and .
No output produced
Output:
In the figure, the lines and gray areas delimit the bounds; the outer-most (dash-dotted) lines delimit the quantum-bounds (), whereas the inner (dashed) lines delimit the classical bounds (). You can see that there are regions where the CHSH witness quantities exceeds the classical bounds. Congratulations! You have successfully demonstrated the violation of CHSH inequality in a real quantum system!
Output:
'0.25.0'
Output:
'1.1.1'
Tutorial Survey
Tutorial Survey Please take one minute to provide feedback on this tutorial. Your insights will help us improve our content offerings and user experience. |
Was this page helpful?