Copyright (C) 2011 and later, Paul D. Nation & Robert J. Johansson
This notebooks demonstrates how a toffoli gate can be rewritten in terms of CNOT gates and single qubit gates, and verifies the equivalence of the two gate sequences by comparing their matrix representations. For more information about the toffoli decomposition, see Nielsen & Chuang, Sec. 4.3, p178.
Note: The circuit image visualizations require ImageMagick for display.
ImageMagick can be easily installed with the command conda install imagemagick
if you have conda installed.
Otherwise, please follow the installation instructions on the ImageMagick documentation.
from qutip import *
from qutip_qip.operations import *
from qutip_qip.circuit import QubitCircuit, Gate
q = QubitCircuit(3, reverse_states=False)
q.add_gate("TOFFOLI", controls=[0, 2], targets=[1])
q.png
U = gate_sequence_product(q.propagators())
U.tidyup()
q2 = q.resolve_gates()
q2.png
U2 = gate_sequence_product(q2.propagators())
U2.tidyup()
U == U2
from qutip.ipynbtools import version_table
version_table()