“Nature isn’t classical, dammit, and if you want to make a simulation of nature, you’d better make it quantum mechanical” ~Richard Feynman

LEVEL 1:

Quantum Computing is a new frontier in the world of computational sciences, which makes use of quantum mechanical phenomena observed in nature, like superposition and entanglement. To understand this, we first need to know how classical computation works. Classical computers are the devices you see and use everyday like your cellphones, calculators and laptops. They embrace the use of bits (0 and 1) to program the device, and any and all processes that a classical computer does can be reduced down to operations on these bit strings. Because these bits are binary, they are either high (1) or low (0) at any instant of time and do not assume any other arbitrary value. So fundamentally, the classical computer describes a deterministic device. On the other hand, a quantum computer uses quantum bits or qubits. A qubit can be visualized as being a unit sphere with a vector pointing from its body center to a point on its surface. This sphere is called the Bloch Sphere.

Bloch Sphere

The state of the qubit is defined by the direction in which the vector is pointing. Now unlike classical bits, the qubit is not limited to just two states, but instead has an infinite number of different states. This is because as you are aware, there are an infinite number of points on the surface of a sphere, any of which the state vector can point to. I like to think of the Bloch Sphere as a locus of states of the qubit. From this we can say that changing the statevector changes the state of the qubit. In fact, quantum mechanics tells us that any operation that we do to this qubit are just rotations of the state vector. This is because all the operations that we do are norm-preserving. Norm-preserving means that the total probability of finding the qubit in that state is equal to one. This makes sense, because if the operation that we did were also to change the length of the statevector, then it would no longer point to the surface of the Bloch sphere!

LEVEL 2:

It is impossible to enumerate all the states that a qubit can exist in. To simplify things, we can define a finite number of states called basis states, with which we can represent any other state. For a single qubit, there are two basis states. These states are conventionally named |0⟩ and |1⟩. They are located along the Z axis of the sphere ( with |0⟩ on the north pole and |1⟩ on the south pole). Here is where things get interesting. Apart from these two points, every other point on the Bloch Sphere is a linear combination of |0⟩ and |1⟩. Which means they exist both in |0⟩ state and |1⟩ state simultaneously, in some probabilities. This phenomenon is called superposition.

A general superposition state of a qubit is shown as |ψ⟩= a|0⟩ + b|1⟩, where ‘a’ and ‘b’ are complex numbers. Now if we were to measure the qubit in this state, its superposition will break down to either the|0⟩ or |1⟩ state. Depending on its superposition, the probability with which it falls to the bases states change. In fact, the square of the complex coefficients of the bases states (|a|² and |b|²) gives the probability of the qubit falling to that state (|0⟩ and |1⟩ respectively).

Example: Suppose I rotate my state-vector such that the qubit now exists in the state (|0⟩ + |1⟩)/√2. The coefficients of both |0⟩ and |1⟩ are same, and their squares give probabilities of 1/2 each. We can show this through a sufficiently large number of measurements, the same way we flip a coin a hundred times to experimentally show the probability of landing heads and tails (Obviously we may not get an exact 50–50, but it will be close).

Note: You may have noticed that the probabilities of the basis states in superposition are related to the rotations we make, specifically the angles of rotations. In fact, the coefficients are the probability amplitudes defined by the angles(as shown in the Bloch sphere diagram):

a = cos(θ/2) and b = e^{i*φ }*sin(θ/2)

This implies that every gate (operation) we apply on the qubit are just rotations of θ which changes its superposition state. This intuition is very important because it helps us understand how these gates are defined.

Let us now see two important single qubit gates.

The quantum gates that we apply are unitary in nature. That is, they are reversible. In case of Hadamard gate, applying it twice gives back the same state we started with! There are many more important gates and interesting properties regarding them, which I encourage you to discover for yourselves!

LEVEL 3:

Qubit states can be represented as vectors in an n dimensional Hilbert space. For a single qubit, the Hilbert space is two dimensional. The basis states |0⟩ and |1⟩ have the following vector representations:

This allows us to do mathematical operations on the qubit states, since our gates are unitary matrices. Qubit gates and Quantum circuits are beyond the scope our discussion.

Multiqubit states: Suppose that we have two qubits. Like a classical two bit system which has possible states 00, 01, 10 and 11, the basis states of the two qubit system can be defined as |00⟩, |01⟩, |10⟩ and |11⟩. Here we note that an arbitrary two qubit system is a linear combination of these four basis states. Multiqubit states cannot be represented as Bloch spheres.

To describe the multiqubit statevectors, we must familiarize ourselves with tensor products (or Kronecker product). Without going into much detail, tensor products multiply two vectors of dimensions m and n to produce a higher m*n dimensional vector.

The two qubit state |10⟩ can be explained as:

Similarly we can show that all the four bases states are Kronecker products of |0⟩ and |1⟩.

Now as I said, an arbitrary 2 qubit system will look like:

a|00⟩ + b|01⟩ + c|10⟩ + d|11⟩ , where a, b, c and d are the probability amplitudes of the respective bases states. This is a fundamental property of qubits which separate it from classical bits: a two qubit system needs four parameters to define its state. Generally, an n qubit system requires ₂ⁿ parameters to define it, meaning (theoretically) that it carries more information.

n qubit system with set of all possible bases states. Each state can be decomposed as a tensor product of single qubit states belonging to the 2 dimensional complex plane C²

“Spooky Action at a Distance”

There are situations when the two qubit system may only exist in some of the above mentioned bases states. For example:|00⟩ and |11⟩. This state is called a Bell State, and it represents the simplest (and maximal) example of Quantum Entanglement. Entangled particles share a bond such that actions on one particle reflect on the other. An implication of entanglement in the example of Bell State is that measuring the first qubit as say |0⟩ will instantly tell us that the other qubit is also |0⟩, irrespective of where it is. Its superposition breaks down the moment we measure its entangled pair. We cannot represent entangled states as tensor products of single qubit states. Entanglement is a property exhibited solely by quantum systems, and gave many scientists of the 20th century some serious headaches!

LEVEL ZERO:

Quantum computation holds the key to solving many challenging problems — that may require exponentially more time to solve on classical computers. It also finds applications in the fields of cryptography, chemistry, finance and machine learning. The IBM Quantum introduced me to quantum computing through their online quantum circuit composer IBMQ Experience and programming framework Qiskit. IBM also provides access to real quantum devices via the cloud for anyone interested to get a hands-on experience with a quantum computer.

IBM | Quantum Computing

Qiskit provides an online textbook for learning more about quantum computation, the programming involved and its applications, so do check it out.

https://qiskit.org/textbook/preface.html

Qubits are the building blocks of a quantum computer. We now know what qubits are conceptually, but are yet to see how they are implemented in the real world. Let’s save that one for another day! However, you now have enough knowledge to explore the intricacies of Quantum Computing yourselves. So get out there, and make your own discoveries!