🔬 Dark Mode

Ambient Light

Illuminance: Unknown

What is a quantum algorithm?

Quantum Algorithms

An algorithm is a step-by-step procedure to perform a calculation, or a sequence of instructions to solve a problem, where each step can be performed on a computer. Therefore, an algorithm is a quantum algorithm when it can be performed on a quantum computer. In principle it is possible to run all classical algorithms on a quantum computer. However, the term quantum algorithm is applied to algorithms of which at least one of the steps is distinctly ‘quantum’, using superposition or entanglement.

Quantum circuits

Quantum algorithms are most commonly described by a quantum circuit, of which a simple example is shown in the figure below. A quantum circuit is a model for quantum computation, where the steps to solve the problem are quantum gates performed on one or more qubits. A quantum gate is an operation applied to a qubit that changes the quantum state of the qubit. Quantum gates can be divided into single-qubit gates and two-qubit gates, depending on the number of qubits on which they are applied at the same time. Three-qubit gates and other multi-qubit gates can also be defined. A quantum circuit is concluded with a measurement on one or more qubits.

When your algorithm is executed on a simulator backend, instead of a hardware backend, it is usually very beneficial in terms of execution time, to omit the measurement at the end of the algorith. This is eplained in more detail in the section on simulation optimization

q[0]
 
 
 
 
q[1]
 
 
 
 

Reversibility of quantum circuits

A difference with a classical algorithm is that a quantum algorithm is always reversible. This means that if measurements are not a part of the circuit, a reverse traversal of the quantum circuit will undo the operations brought about by a forward traversal of that circuit.

The power of quantum algorithms

Problems that are fundamentally unsolvable by classical algorithms (so called undecidable problems) cannot be solved by quantum algorithms either. The added value of quantum algorithms is that they can solve some problems significantly faster than classical algorithms. The best known examples are Shor’s algorithm and Grover’s algorithm. Shor’s algorithm is a quantum algorithm for integer factorization. Simply put, when given a integer N, it will find its prime factors. It can solve this problem exponentially faster than the best known classical algorithm can. Grover’s algorithm can search an unstructured database or unordered list quadratically faster then the best classical algorithm with this purpose.