The CCNOT-gate
Get introduced to the CCNOT-gate and its implementation.
What if we wanted to apply a certain gate if and only if two other qubits are in-state ? If you’ve read this course carefully so far, you may object that AND
is not a valid qubit gate. A brief look at the truth table discloses that the AND
operator is not reversible. If we get false
as its output, we can’t tell what the input was. It could be one of three different states.
The -gate provides a way out. Remember, when we constructed the -gate, we used the -gate to switch the amplitudes of the controlled qubit in the middle of a rotation about the first half and a backward rotation about the second half of the overall rotation. A similar pattern allows us to create a controlled-controlled gate. Such a gate contains an AND
relationship because it has two control qubits, and it only changes the target qubit if both control qubits are in-state .
The following figure depicts the circuit of the -gate a controlled-controlled-NOT-gate.
The CCNOT-gate is also known as the Toffoli gate. The Toffoli gate has a different algorithm than this one. The Toffoli gate uses qubit phases. Phases are concepts we cover later in this course. The implementation we presented here is not optimal, but it provides a vivid explanation of the underlying concept.
The following listing depicts the code of this -gate sequence. We define a reusable function ccnot
in line 4. It starts with the controlled rotation with qubit as the control qubit in line 6. It rotates the controlled qubit about , the value we defined earlier in line 2.
We have another controlled rotation with the same qubit as the control qubit in line 11 encapsulated into -gates in lines 10 and 12. It’s important to note that this encapsulated -gate has as a parameter. It denotes a rotation in the opposite direction.
Finally, we have another controlled rotation of about . Here, qubit is the control qubit.
Let’s go through the circuit one by one. First, we define our in line 2. The value represents the rotation about a quarter of the circle. This is half of the overall rotation we want to apply. The rotation about half of the circle () switches the amplitudes from to and vice versa.
In the first step, we rotate the controlled qubit about a quarter circle if qubit is in state through a -gate in line 15.
The CCNOT‐function
from math import pitheta = pi/2def ccnot(qc):# Apply the first half of the rotationeqc.cry(theta, 1,2)# This sequence has no effect if both control qubits# are in state |1>qc.cx(0,1)qc.cry(-theta,1,2)qc.cx(0,1)# Apply the second half of the rotationqc.cry(theta, 0,2)# execute the qcreturn execute(qc,Aer.get_backend('statevector_simulator')).result().get_counts()
If both control qubits are in-state , the result of this gate is as the following figure depicts.
Both control qubits (the upper ones, read right to the left) are in state per our initialization. Then, half the time, as per rotation about , the controlled qubit is in state .
Next, we apply a sequence of a gate with as the control qubit and as the target qubit. For is in state , it changes the state of from to . The following controlled rotation with as the control qubit has no effect because is now in state and the ...