How to Solve a Problem with Quantum Computing
Learn problem-solving skills using quantum computing.
Quantum computing comes with quite a few caveats.
- When transforming qubits, we have to ensure reversibility.
- We can’t copy a qubit in an arbitrary state.
- Most importantly, we can’t measure a qubit without collapsing its state of superposition.
A qubit can do things a classical bit can’t. A qubit is not restricted to 0
or 1
. It can be a combination of both states. Moreover, we can entangle two qubits so that they share a state of superposition.
With these characteristics, qubits are a powerful tool, if used properly. Of course, we can treat qubits like ordinary bits and solve a problem the same way you solve other computational problems. We wouldn’t benefit from the advantage a quantum computer promises, though. When solving a problem classically, we won’t see any quantum speedup. The algorithm will be much slower because a quantum computer is prolonged (in terms of clock frequency) and minimal (the number of qubits).
This lesson teaches us how to solve a problem through an algorithm faster than a classical one. By that, we mean that the quantum algorithm will solve a problem in fewer steps than a classical algorithm requires. If both computers were equal in speed and size, the quantum computer would solve the problem faster. However, a classical computer might compensate for the larger number of steps by its sheer speed and size. With the increasing complexity of the problem to solve, speed and size will no longer suffice. There are problems, such as the factorization problem, that are too complex for a classical computer, regardless of its speed and size, but not too complex for a quantum computer, at least theoretically.
The problem we use as our example is not one of these problems. A classical computer solves it in a split second, but the example allows us to demonstrate how to solve a problem the quantumic way.
Let’s assume we have a function . It takes a single bit as input–either 0
or 1
, and provides a single bit as its output, too. Again, either 0
or 1
.
There are four different possible functions.
- The function always returns
0
. - The function returns
0
if the input is0
, and returns1
if the input is1
. - The function returns
1
if the input is0
, and returns0
if the input is1
. - The function always returns
1
.
The functions and provide balanced outputs because for half of the inputs, they return 0
( if the input is 0
and if the input is 1
), and for the other half, they return 1
( if the input is 1
and if the input is 0
).
If we’re given one of these functions at random, how can we determine whether the function is constant ( or ) or balanced ( or )? We don’t care about the specific function we got. We only care about whether it is constant or balanced.
Classically, we’ll have to run the function twice. We’ll run it with the input 0
. Suppose you then get 0
. As a result, the function at hand could be the constant function that always returns 0
. It could be the balanced function that returns 0
if the input is 0
. We’ll have to rerun the function with input 1
to decide whether the function is constant or balanced. The constant function still returns 0
, but the balanced function returns 1
for input 1
.
The same situation applies if we get 1
because of running the function for the input 0
. We would need to distinguish between the balanced function and the constant function .
It doesn’t help to run the function with the input 1
first, either. With either result, 0
and 1
, the function at hand could be constant or balanced. We need to rerun the function with input 0
.
In quantum computing, we only need to run the function once.
We start with a new quantum gate, the gate . This gate should represent our four functions . Mathematically, this would be:
It transforms an arbitrary quantum state into the quantum state , the output of the function given the input .
Given that is a quantum transformation gate, it must be reversible. Therefore, it must have the same size of input and output, and each output must uniquely identify the input it originates from.
But that’s a problem. The constant functions always return the same value regardless of their inputs. Given their output, we can’t tell what the input was.
We can deal with this problem with a little trick. We add a second qubit , and we use the exclusive or (XOR, ) operator to track the function’s result .
Mathematically, the refined gate is:
Get hands-on with 1200+ tech skills courses.