Use this file to discover all available pages before exploring further.
View on GitHub
Open this notebook in GitHub to run it yourself
The swap test is a quantum function that checks the overlap between two quantum states.The inputs of the function are two quantum registers of the same size, ∣ψ1⟩,∣ψ2⟩, and it returns as output a single test qubit whose state encodes the overlap between the two inputs: ∣q⟩test=α∣0⟩+1−α2∣1⟩, withα2=21(1+∣⟨ψ1∣ψ2⟩∣2).Thus, the probability of measuring the test qubit at state ∣0⟩ is 1 if the states are identical (up to a global phase) and 0.5 if the states are orthogonal to each other.The quantum model starts with an H gate on the test qubit, followed by swapping between the two states controlled on the test qubit (a controlled-SWAP gate for each of the qubits in the two states) and a final H gate on the test qubit.A general scheme of the swap test algorithm:Prepare two random states:
import numpy as npnp.random.seed(12)NUM_QUBITS = 3amps1 = 1 - 2 * np.random.rand( 2**NUM_QUBITS) # vector of 2^3 numbers in the range [-1,1]amps2 = 1 - 2 * np.random.rand(2**NUM_QUBITS)amps1 = amps1 / np.linalg.norm(amps1) # normalize the vectoramps2 = amps2 / np.linalg.norm(amps2)
Using the expected probability of measuring the state ∣0⟩ as defined above,α2=21(1+∣⟨ψ1∣ψ2⟩∣2),we extract the overlap ∣⟨ψ1∣ψ2⟩∣=2P(qtest=∣0⟩)−1.The exact overlap is computed with the dot product of the two state vectors.Note that for the sake of this demonstration we execute this circuit 100,000 times to improve the precision of the probability estimate.This is usually not required in actual programs.
print("States overlap from Swap-Test result:", overlap_from_swap_test)print("States overlap from classical calculation:", exact_overlap)
Output:
States overlap from Swap-Test result: 0.4762352359916262 States overlap from classical calculation: 0.46972037234759095
RTOL = 0.05assert np.isclose( overlap_from_swap_test, exact_overlap, RTOL), f"""The quantum result is too far from the classical one by a relative tolerance of {RTOL}.Please verify your parameters"""