Quantum gate

From Infogalactic: the planetary knowledge core
(Redirected from Quantum logic gate)
Jump to: navigation, search

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

In quantum computing and specifically the quantum circuit model of computation, a quantum gate (or quantum logic gate) is a basic quantum circuit operating on a small number of qubits. They are the building blocks of quantum circuits, like classical logic gates are for conventional digital circuits.

Unlike many classical logic gates, quantum logic gates are reversible. However, it is possible to perform classical computing using only reversible gates. For example, the reversible Toffoli gate can implement all Boolean functions. This gate has a direct quantum equivalent, showing that quantum circuits can perform all operations performed by classical circuits.

Quantum logic gates are represented by unitary matrices. The most common quantum gates operate on spaces of one or two qubits, just like the common classical logic gates operate on one or two bits. This means that as matrices, quantum gates can be described by 2 × 2 or 4 × 4 unitary matrices.

Commonly used gates

Quantum gates are usually represented as matrices. A gate which acts on k qubits is represented by a 2k x 2k unitary matrix. The number of qubits in the input and output of the gate have to be equal. The action of the quantum gate is found by multiplying the matrix representing the gate with the vector which represents the quantum state. In the following, the vector representation of a single qubit is:

v_0 | 0 \rangle + v_1 | 1 \rangle  \rightarrow \begin{bmatrix} v_0 \\ v_1 \end{bmatrix} ,

and the vector representation of two qubits is:

v_{00} | 00 \rangle + v_{01} | 0 1 \rangle  + v_{10} | 1 0 \rangle + v_{11} | 1 1 \rangle\rightarrow \begin{bmatrix} v_{00} \\ v_{01} \\ v_{10} \\ v_{11} \end{bmatrix} ,

where | a b \rangle is the state where the first qubit has value a and the second qubit b.

Hadamard gate

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

The Hadamard gate acts on a single qubit. It maps the basis state |0\rangle to \frac{|0\rangle + |1\rangle}{\sqrt{2}} and |1\rangle to \frac{|0\rangle - |1\rangle}{\sqrt{2}} and represents a rotation of \pi about the axis (\hat{x}+\hat{z})/\sqrt{2}. Equivalently, it is the combination of two rotations, \pi/2 about the Y-axis followed by \pi about the X-axis. It is represented by the Hadamard matrix:

File:Hadamard gate.svg
Circuit representation of Hadamard gate
 H = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & 1 \\ 1 & -1 \end{bmatrix}.

Since HH^{*}=I where I is the identity matrix, H is indeed a unitary matrix.

Pauli-X gate

The Pauli-X gate acts on a single qubit. It is the quantum equivalent of a NOT gate (with respect to the standard basis |0\rangle, |1\rangle, which privileges the Z-direction) . It equates to a rotation of the Bloch Sphere around the X-axis by π radians. It maps |0\rangle to |1\rangle and |1\rangle to |0\rangle. Due to this nature, it is sometimes called bit-flip. It is represented by the Pauli matrix:

 X = \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}.

Pauli-Y gate

The Pauli-Y gate acts on a single qubit. It equates to a rotation around the Y-axis of the Bloch Sphere by π radians. It maps |0\rangle to i|1\rangle and |1\rangle to -i|0\rangle. It is represented by the Pauli Y matrix:

 Y = \begin{bmatrix} 0 & -i \\ i & 0 \end{bmatrix}.

Pauli-Z gate

The Pauli-Z gate acts on a single qubit. It equates to a rotation around the Z-axis of the Bloch Sphere by π radians. Thus, it is a special case of a phase shift gate (next) with θ=π. It leaves the basis state |0\rangle unchanged and maps |1\rangle to -|1\rangle. Due to this nature, it is sometimes called phase-flip. It is represented by the Pauli Z matrix:

 Z = \begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}.

Phase shift gates

This is a family of single-qubit gates that leave the basis state |0\rangle unchanged and map |1\rangle to e^{i\phi}|1\rangle. The probability of measuring a |0\rangle or |1\rangle is unchanged after applying this gate, however it modifies the phase of the quantum state. This is equivalent to tracing a horizontal circle (a line of latitude) on the Bloch Sphere by \phi radians.

 R_\phi = \begin{bmatrix} 1 & 0 \\ 0 & e^{i \phi} \end{bmatrix}

where \phi is the phase shift. Some common examples are the \frac{\pi}{8} gate where \phi = \frac{\pi}{4}, the phase gate where \phi = \frac{\pi}{2} and the Pauli-Z gate where \phi = \pi.

Swap gate

File:Swap gate.svg
Circuit representation of SWAP gate

The swap gate swaps two qubits. With respect to the basis |00\rangle, |01\rangle, |10\rangle, |11\rangle, it is represented by the matrix:

 \mbox{SWAP} = \begin{bmatrix} 1&0&0&0\\0&0&1&0\\0&1&0&0\\0&0&0&1\end{bmatrix} .

Square root of Swap gate

File:Qcircuit SqrtSwap.svg
Circuit representation of \sqrt{\mbox{SWAP}} gate

The sqrt(swap) gate performs half-way of a two-qubit swap. It is universal such that any quantum many qubit gate can be constructed from only sqrt(swap) and single qubit gates.

  
\sqrt{ \mbox{ SWAP } } = 
\begin{bmatrix} 
1  &  0  &  0  &  0  \\
0  &  \frac{1}{2} (1+i)  &  \frac{1}{2} (1-i)  &  0  \\
0  &  \frac{1}{2} (1-i)  &  \frac{1}{2} (1+i)  &  0  \\
0  &  0  &  0  &  1 \\
\end{bmatrix}
.

Controlled gates

File:CNOT gate.svg
Circuit representation of controlled NOT gate

Controlled gates act on 2 or more qubits, where one or more qubits act as a control for some operation. For example, the controlled NOT gate (or CNOT) acts on 2 qubits, and performs the NOT operation on the second qubit only when the first qubit is |1\rangle, and otherwise leaves it unchanged. It is represented by the matrix

 \mbox{CNOT} = \begin{bmatrix}1&0&0&0\\0&1&0&0\\0&0&0&1\\0&0&1&0\end{bmatrix} .

More generally if U is a gate that operates on single qubits with matrix representation

 U =  \begin{bmatrix} x_{00} & x_{01} \\ x_{10} & x_{11} \end{bmatrix} ,

then the controlled-U gate is a gate that operates on two qubits in such a way that the first qubit serves as a control. It maps the basis states as follows.

File:Controlled gate.svg
Circuit representation of controlled-U gate
 | 0 0 \rangle \mapsto | 0 0 \rangle
 | 0 1 \rangle \mapsto | 0 1 \rangle
 | 1 0 \rangle \mapsto | 1 \rangle U |0 \rangle = | 1 \rangle \left(x_{00} |0 \rangle + x_{10} |1 \rangle\right)
 | 1 1 \rangle \mapsto | 1 \rangle U |1 \rangle = | 1 \rangle \left(x_{01} |0 \rangle + x_{11} |1 \rangle\right)

The matrix representing the controlled U is

 \mbox{C}(U) =  \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & x_{00} & x_{01} \\  0 & 0 & x_{10} & x_{11} \end{bmatrix}.
controlled X-, Y- and Z- gates
controlled-X gate
controlled-Y gate
controlled-Z gate

When U is one of the Pauli matrices, σx, σy, or σz, the respective terms "controlled-X", "controlled-Y", or "controlled-Z" are sometimes used.[1]

Toffoli gate

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

File:Toffoli gate.svg
Circuit representation of Toffoli gate

The Toffoli gate, also CCNOT gate, is a 3-bit gate, which is universal for classical computation. The quantum Toffoli gate is the same gate, defined for 3 qubits. If the first two bits are in the state |1\rangle, it applies a Pauli-X on the third bit, else it does nothing. It is an example of a controlled gate. Since it is the quantum analog of a classical gate, it is completely specified by its truth table.

Truth table Matrix form
INPUT OUTPUT
 0   0   0   0   0   0 
0 0 1 0 0 1
0 1 0 0 1 0
0 1 1 0 1 1
1 0 0 1 0 0
1 0 1 1 0 1
1 1 0 1 1 1
1 1 1 1 1 0


\begin{bmatrix}
1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 \\
0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 \\
0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 \\
0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 \\
0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 \\
0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 \\
0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 \\
\end{bmatrix}

It can be also described as the gate which maps |a, b, c\rangle to |a, b, c\oplus ab\rangle.

Fredkin gate

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

File:Fredkin gate.svg
Circuit representation of Fredkin gate

The Fredkin gate (also CSWAP gate) is a 3-bit gate that performs a controlled swap. It is universal for classical computation. As with the Toffoli gate it has the useful property that the numbers of 0s and 1s are conserved throughout, which in the billiard ball model means the same number of balls are output as input.

Truth table Matrix form
INPUT OUTPUT
C I1 I2 C O1 O2
 0   0   0   0   0   0 
0 0 1 0 0 1
0 1 0 0 1 0
0 1 1 0 1 1
1 0 0 1 0 0
1 0 1 1 1 0
1 1 0 1 0 1
1 1 1 1 1 1


\begin{bmatrix}
1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 \\
0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 \\
0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 \\
0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 \\
0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 \\
0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 \\
0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 \\
\end{bmatrix}

Universal quantum gates

File:Qcircuit CNOTfromSQRTSWAP.svg
Both CNOT and \sqrt{\mbox{SWAP}} are universal two-qubit gates and can be transformed into each other.

Informally, a set of universal quantum gates is any set of gates to which any operation possible on a quantum computer can be reduced, that is, any other unitary operation can be expressed as a finite sequence of gates from the set. Technically, this is impossible since the number of possible quantum gates is uncountable, whereas the number of finite sequences from a finite set is countable. To solve this problem, we only require that any quantum operation can be approximated by a sequence of gates from this finite set. Moreover, for the specific case of single qubit unitaries the Solovay–Kitaev theorem guarantees that this can be done efficiently.

One simple set of two-qubit universal quantum gates is the Hadamard gate (H), the \pi/8 gate R(\pi / 4), and the controlled NOT gate.

A single-gate set of universal quantum gates can also be formulated using the three-qubit Deutsch gate D(\theta), which performs the transformation[2]

 |a,b,c\rangle \mapsto \begin{cases} i \cos(\theta) |a,b,c\rangle + \sin(\theta) |a,b,1-c\rangle & \mbox{for }a=b=1 \\ |a,b,c\rangle & \mbox{otherwise.}\end{cases}

The universal classical logic gate, the Toffoli gate, is reducible to the Deutsch gate, D(\begin{matrix} \frac{\pi}{2} \end{matrix}), thus showing that all classical logic operations can be performed on a universal quantum computer.

History

The current notation for quantum gates was developed by Barenco et al.,[3] building on notation introduced by Feynman.[4]

See also

Notes

  1. M. Nielsen and I. Chuang, Quantum Computation and Quantum Information, Cambridge University Press, 2000
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Phys. Rev. A 52 3457–3467 (1995), DOI:10.1103/PhysRevA.52.3457; e-print arXiv:quant-ph/9503016
  4. R. P. Feynman, "Quantum mechanical computers", Optics News, February 1985, 11, p. 11; reprinted in Foundations of Physics 16(6) 507–531

References

  • M. Nielsen and I. Chuang, Quantum Computation and Quantum Information, Cambridge University Press, 2000