Quantum Fourier Transform
Starting from this section, we demonstrate how to use QURI Parts to implement several algorithms containing quantum Fourier transform. We will cover:
- Period finding
- Phase estimation algorithm
- The Shor's algorithm
So, in this section, we first illustrate how to use QURI Parts to build the circuit for performing quantum Fourier transform.
The purpose of this section is two fold:
- Introduce how multi-controlled gate feature is used in practice.
- Fix the convention of quantum Fourier transform.
Quick review of the quantum Fourier transform
The quantum Fourier transform is defined by the following operation:
where is the number of qubits. Written in terms of binary number notation, the above equation becomes:
where and .
The last line of eq.(2) gives a convenient form where the circuit representation of the operation can be read out straightforwardly. In our convention where the 0th qubit is positioned at the most right hand side, we need to first apply multiple SWAP gates to invert the order of the qubits:
Then, we go through the standard textbook procedure of applying multiple controlled U1 gates to translate the above equation into the one in the second line of eq(2). For example, for the 0th qubit,
where the notation denotes a controlled U1 gate with the i-th qubit as the controlled qubit and j-th qubit as the target index. The explicit matrix acting on the target qubit is
Repeating the procedure for the rest of the qubits will lead us to eq.(2).
Implement the quantum Fourier transform
Now, we start to implement the circuit for quantum Fourier transform. As discussed in the last section, we first add sequence of SWAP gates to revert the qubit order. Then Hadamard gates and controlled U1 gates are added to perform the transformation. Here we show a diagram of a 4-qubit quantum Fourier transform circuit.
The controlled U1 gates are created from U1 gates with the decomposition formula:
from quri_parts.circuit import QuantumCircuit, NonParametricQuantumCircuit, ImmutableBoundParametricQuantumCircuit
import numpy as np
def add_controlled_U1_gate(
circuit: QuantumCircuit, control: int, target: int, angle: float
) -> None:
circuit.add_U1_gate(control, angle/2)
circuit.add_CNOT_gate(control, target)
circuit.add_U1_gate(target, -angle/2)
circuit.add_CNOT_gate(control, target)
circuit.add_U1_gate(target, angle/2)
Now, we can put everything together and construct the circuit for quantum Fourier transform. The circuit for inverse Fourier tranform is also implemented by inverting the QFT circuit with quri_parts.circuit.inverse_circuit
.
from quri_parts.circuit import QuantumCircuit, ImmutableQuantumCircuit, inverse_circuit
import numpy as np
def create_qft_circuit(qubit_count: int, inverse: bool = False) -> ImmutableQuantumCircuit:
circuit = QuantumCircuit(qubit_count)
for i in range(qubit_count//2):
circuit.add_SWAP_gate(i, qubit_count-i-1)
for target in range(qubit_count):
circuit.add_H_gate(target)
for l, control in enumerate(range(target+1, qubit_count)):
angle = 2 * np.pi/2**(l+2)
add_controlled_U1_gate(circuit, control, target, angle)
if inverse:
return inverse_circuit(circuit).freeze()
return circuit.freeze()