Quantum Superposition - 2
Posted on 17 Nov 2020 by ΔΨφ
Hello !! It is very important that you read my previous post on Quantum Superposition in order to understand this.
As promised, in this post I will be guiding you on how to make a 2-qubit quantum circuit and then create superposition between the two qubits.
However, you must first understand what a qubit is. A qubit – short for quantum bit – is a unit of quantum information and has 2 orthogonal basis states i.e. it can be compared with the Hilbert space (H) with an orthonormalized basis states zero and one. Thus, in the general case, the qubit state is a superposition of states zero and one taken with complex coefficients.
\[ |0> = \begin{pmatrix} 1 \\ 0 \end{pmatrix} \]
\[ |1> = \begin{pmatrix} 0 \\ 1 \end{pmatrix} \]
These are the two states of the qubit which can be represented by Ket vectors |0> and |1>
This is the quantum state of the qubit :
\[ |\psi > = \alpha |0> + \beta |1> \]
Qubits are generally compared to polarized photons or the spin of an electron to signify the 2 levels of a qubit. However, the qubits used to make quantum computers are artificially created by isolating two energy levels.
(Make sure to download anaconda on your computer, here is the link : https://www.anaconda.com/products/individual)
I’ll be working with IBM’s Qiskit on Jupyter Notebook. Qiskit is an open source framework for working with quantum computers. Let’s start.
Open your anaconda prompt and run the following command :
pip install qiskit
Now open Jupyter Notebook and run the following commands :
We have successfully made a quantum circuit with 2 qubits and 2 bits. We can see that both these qubits have the state |0>. Let’s put a Hadamard gate on the first qubit and measure it. We already know that quantum superposition is the linear combination of 2 or more states, so let’s see that in action.
I have applied the Hadamard gate in line 6; inside the bracket we write the qubit on which the gate is to be placed. And in the next line inside the bracket we write the qubit (to be measured) and the bit (in which the measurement is to be stored). Now let’s look at our circuit once.
“H” is for the Hadamard gate and the speedometer looking thing signifies the measurement.
Now let’s execute these circuits. Instead of running these circuits on an actual quantum computer I will be running them on a simulator. The simulator can be imported from “ Aer “ and the name of the simulator is “ qasm simulator “. The name “ qasm “ comes from quantum assembly language. Then we will execute the circuit and obtain the results.
In the execute command we can also specify the number of shots i.e. the number of measurements that will be made by writing : “shots=(a number)” without the inverted commas; if you don’t specify the number of shots then by default it will run 1024 times.
How will I do that ?
You may have heard of logic gates in almost all classical programming language such as python etc. One of the most basic gate is the “NOT gate”. We have that in quantum computing too, it’s sometimes referred to as an “ X gate “. This gate changes the state of the qubit. In the same circuit, we will now work on the second qubit.
We will start by placing an X gate and then we will place a barrier. The barrier has no physical importance it’s just used for clarity when we visualize our circuit. Speaking of which here is your code and the circuit :
Now we will once again use the “qasm simulator”, execute the circuit, get the results, and visualize the probabilities though a histogram.
See in line 20 I have taken 1000000 shots, which is the maximum number of shots that an be taken, this is the reason why we are getting absolute measurements
Now you may be wondering what’s up with these 4 bars, in the previous case we only got 2 !
In this case our circuit includes 2 qubits where both the qubits, though initially in different states, are in a uniform superposition. When we execute the circuit, this entire system gets executed and we get the results for all the four possible outcomes. We can see that we get an entirely random probability : for all the four states of the system we have the probability of 0.25. The first bar, which is for the state “ 00 “, signifies that the state of the circuit in which both the qubits are in |0>; state has a probability of 0.25. Similarly, in the second bar the first qubit is in |0>; state and the second qubit is in |1>; state with 0.25 probability and the reverse of this is applicable to the third case. In the fourth case, both the qubits are in state |1>; with a probability of 0.25 . I would recommend you to make your own single qubit the circuit and perform the functions that I took in the case of the second qubit. It is necessary to understand the intuition behind this and then anyone can make a circuit and perform a variety of operations.
Please tell me how you feel about this article and if I should make any changes. Criticism is welcome.
quantum-bits quantum-computing quantum-mechanics quantum-superposition qubits