Sponsored Links
-->

Friday, June 29, 2018

Quantum gate - YouTube
src: i.ytimg.com

In quantum computing and specifically the quantum circuit model of computation, a quantum logic gate (or simply quantum 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, often at the cost of having to use ancillary bits. The Toffoli 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. As matrices, quantum gates can be described by 2 n × 2 n {\displaystyle 2^{n}\times 2^{n}} sized unitary matrices, where n {\displaystyle n} is the number of qubits that the gate act on. The variables that the gates act upon, the quantum states, are vectors in 2 n {\displaystyle 2^{n}} complex dimensions, where n {\displaystyle n} again is the number of qubits of the variable: The base vectors are the possible outcomes if measured, and a quantum state is a linear combination of these outcomes.


Video Quantum logic gate



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 gate on a specific quantum state is found by multiplying the vector which represents the state by the matrix representing the gate. In the following, the vector representation of a single qubit is:

v 0 | 0 ? + v 1 | 1 ? -> [ v 0 v 1 ] {\displaystyle 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 ? + v 01 | 01 ? + v 10 | 10 ? + v 11 | 11 ? -> [ v 00 v 01 v 10 v 11 ] {\displaystyle v_{00}|00\rangle +v_{01}|01\rangle +v_{10}|10\rangle +v_{11}|11\rangle \rightarrow {\begin{bmatrix}v_{00}\\v_{01}\\v_{10}\\v_{11}\end{bmatrix}}} ,

where | a b ? {\displaystyle |ab\rangle } is the basis vector representing a state where the first qubit is in the state | a ? {\displaystyle |a\rangle } and the second qubit in the state | b ? {\displaystyle |b\rangle } .

Hadamard (H) gate

The Hadamard gate acts on a single qubit. It maps the basis state | 0 ? {\displaystyle |0\rangle } to | 0 ? + | 1 ? 2 {\displaystyle {\frac {|0\rangle +|1\rangle }{\sqrt {2}}}} and | 1 ? {\displaystyle |1\rangle } to | 0 ? - | 1 ? 2 {\displaystyle {\frac {|0\rangle -|1\rangle }{\sqrt {2}}}} , which means that a measurement will have equal probabilities to become 1 or 0 (i.e. creates a superposition). It represents a rotation of ? {\displaystyle \pi } about the axis ( x ^ + z ^ ) / 2 {\displaystyle ({\hat {x}}+{\hat {z}})/{\sqrt {2}}} . Equivalently, it is the combination of two rotations, ? {\displaystyle \pi } about the X-axis followed by ? / 2 {\displaystyle \pi /2} about the Y-axis. It is represented by the Hadamard matrix:

H = 1 2 [ 1 1 1 - 1 ] {\displaystyle H={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&1\\1&-1\end{bmatrix}}} .

The hadamard gate is the one-qubit version of the quantum fourier transform.

Since H H * = I {\displaystyle 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 the NOT gate for classical computers (with respect to the standard basis | 0 ? {\displaystyle |0\rangle } , | 1 ? {\displaystyle |1\rangle } , which privileges the Z-direction) . It equates to a rotation of the Bloch sphere around the X-axis by ? {\displaystyle \pi } radians. It maps | 0 ? {\displaystyle |0\rangle } to | 1 ? {\displaystyle |1\rangle } and | 1 ? {\displaystyle |1\rangle } to | 0 ? {\displaystyle |0\rangle } . Due to this nature, it is sometimes called bit-flip. It is represented by the Pauli matrix:

X = [ 0 1 1 0 ] {\displaystyle 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 ? {\displaystyle \pi } radians. It maps | 0 ? {\displaystyle |0\rangle } to i | 1 ? {\displaystyle i|1\rangle } and | 1 ? {\displaystyle |1\rangle } to - i | 0 ? {\displaystyle -i|0\rangle } . It is represented by the Pauli Y matrix:

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

Pauli-Z ( R ? {\displaystyle R_{\pi }} ) gate

The Pauli-Z gate acts on a single qubit. It equates to a rotation around the Z-axis of the Bloch sphere by ? {\displaystyle \pi } radians. Thus, it is a special case of a phase shift gate (which are described in a next subsection) with ? = ? {\displaystyle \phi =\pi } . It leaves the basis state | 0 ? {\displaystyle |0\rangle } unchanged and maps | 1 ? {\displaystyle |1\rangle } to - | 1 ? {\displaystyle -|1\rangle } . Due to this nature, it is sometimes called phase-flip. It is represented by the Pauli Z matrix:

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

Squares of a Pauli Matrix Are the Identity Matrix

Note the square roots of the identity matrix

I 2 = X 2 = Y 2 = Z 2 = I {\displaystyle I^{2}=X^{2}=Y^{2}=Z^{2}=I}

Square root of NOT gate (?NOT)

The NOT gate acts on a single qubit.

X = N O T = 1 2 [ 1 + i 1 - i 1 - i 1 + i ] {\displaystyle {\sqrt {X}}={\sqrt {NOT}}={\frac {1}{2}}{\begin{bmatrix}1+i&1-i\\1-i&1+i\end{bmatrix}}} .
X = 1 4 [ 1 + i 1 - i 1 - i 1 + i ] [ 1 + i 1 - i 1 - i 1 + i ] = 1 4 [ 0 4 4 0 ] = [ 0 1 1 0 ] {\displaystyle X={\frac {1}{4}}{\begin{bmatrix}1+i&1-i\\1-i&1+i\end{bmatrix}}{\begin{bmatrix}1+i&1-i\\1-i&1+i\end{bmatrix}}={\frac {1}{4}}{\begin{bmatrix}0&4\\4&0\end{bmatrix}}={\begin{bmatrix}0&1\\1&0\end{bmatrix}}} .

.?. N O T N O T = N O T {\displaystyle {\sqrt {NOT}}\,{\sqrt {NOT}}=NOT} , so this gate is a square root of the NOT gate.

Similar squared root-gates can be constructed for all other gates by finding the unitary matrix that, multiplied by itself, yields the gate one wishes to construct the squared root gate of. All rational exponents of all gates can be created in this way. (Only approximations of irrational exponents are possible to synthesize from composite gates whose elements are not themselves irrational, since exact synthesis would result in infinite gate depth.)

Phase shift ( R ? {\displaystyle R_{\phi }} ) gates

This is a family of single-qubit gates that leave the basis state | 0 ? {\displaystyle |0\rangle } unchanged and map | 1 ? {\displaystyle |1\rangle } to e i ? | 1 ? {\displaystyle e^{i\phi }|1\rangle } . The probability of measuring a | 0 ? {\displaystyle |0\rangle } or | 1 ? {\displaystyle |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 ? {\displaystyle \phi } radians.

R ? = [ 1 0 0 e i ? ] {\displaystyle R_{\phi }={\begin{bmatrix}1&0\\0&e^{i\phi }\end{bmatrix}}}

where ? {\displaystyle \phi } is the phase shift. Some common examples are the ? 8 {\displaystyle {\frac {\pi }{8}}} gate (commonly written as T) where ? = ? 4 {\displaystyle \phi ={\frac {\pi }{4}}} , the phase gate (written S, though S is sometimes used for SWAP gates) where ? = ? 2 {\displaystyle \phi ={\frac {\pi }{2}}} and the Pauli-Z gate where ? = ? {\displaystyle \phi =\pi } .

Swap (SWAP) gate

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

SWAP = [ 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 ] {\displaystyle {\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 (?SWAP)

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. The sqrt(swap) gate is not, however maximally entangling, more than one application of it is required to produce a bell state from product states.

SWAP = [ 1 0 0 0 0 1 2 ( 1 + i ) 1 2 ( 1 - i ) 0 0 1 2 ( 1 - i ) 1 2 ( 1 + i ) 0 0 0 0 1 ] {\displaystyle {\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 (cX cY cZ) gates

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 or cX) acts on 2 qubits, and performs the NOT operation on the second qubit only when the first qubit is | 1 ? {\displaystyle |1\rangle } , and otherwise leaves it unchanged. It is represented by the matrix

CNOT = c X = [ 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 ] {\displaystyle {\mbox{CNOT}}=cX={\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 = [ u 00 u 01 u 10 u 11 ] {\displaystyle U={\begin{bmatrix}u_{00}&u_{01}\\u_{10}&u_{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.

| 00 ? ? | 00 ? {\displaystyle |00\rangle \mapsto |00\rangle }
| 01 ? ? | 01 ? {\displaystyle |01\rangle \mapsto |01\rangle }
| 10 ? ? | 1 ? ? U | 0 ? = | 1 ? ? ( u 00 | 0 ? + u 10 | 1 ? ) {\displaystyle |10\rangle \mapsto |1\rangle \otimes U|0\rangle =|1\rangle \otimes \left(u_{00}|0\rangle +u_{10}|1\rangle \right)}
| 11 ? ? | 1 ? ? U | 1 ? = | 1 ? ? ( u 01 | 0 ? + u 11 | 1 ? ) {\displaystyle |11\rangle \mapsto |1\rangle \otimes U|1\rangle =|1\rangle \otimes \left(u_{01}|0\rangle +u_{11}|1\rangle \right)}

The matrix representing the controlled U is

C ( U ) = [ 1 0 0 0 0 1 0 0 0 0 u 00 u 01 0 0 u 10 u 11 ] {\displaystyle {\mbox{C}}(U)={\begin{bmatrix}1&0&0&0\\0&1&0&0\\0&0&u_{00}&u_{01}\\0&0&u_{10}&u_{11}\end{bmatrix}}} .

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.

The CNOT gate is generally used in quantum computing to generate entangled states.

Toffoli (CCNOT) gate

The Toffoli gate, also CCNOT gate or Deutsch D ( ? / 2 ) {\displaystyle D(\pi /2)} 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 ? {\displaystyle |1\rangle } , it applies a Pauli-X (or NOT) 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. The Toffoli gate is universal when combined with the single qubit Hadamard gate.

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

Fredkin (CSWAP) gate

The Fredkin gate (also CSWAP or cS gate) is a 3-bit gate that performs a controlled swap. It is universal for classical computation. 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.

Ising (XX) gate

The Ising gate (or XX gate) is a 2-bit gate that is implemented natively in some trapped-ion quantum computers. It is defined as

X X ? = 1 2 [ 1 0 0 - i e i ? 0 1 - i 0 0 - i 1 0 - i e - i ? 0 0 1 ] = 1 2 [ 1 0 0 e i ( ? - ? / 2 ) 0 1 - i 0 0 - i 1 0 e i ( - ? - ? / 2 ) 0 0 1 ] {\displaystyle XX_{\phi }={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&0&0&-ie^{i\phi }\\0&1&-i&0\\0&-i&1&0\\-ie^{-i\phi }&0&0&1\\\end{bmatrix}}={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&0&0&e^{i(\phi -\pi /2)}\\0&1&-i&0\\0&-i&1&0\\e^{i(-\phi -\pi /2)}&0&0&1\\\end{bmatrix}}}

Deutsch ( D ? {\displaystyle D_{\theta }} ) gate

Deutsch (or D ? {\displaystyle D_{\theta }} ) gate is a three-qubit gate. It is defined as

| a , b , c ? ? { i cos ( ? ) | a , b , c ? + sin ( ? ) | a , b , 1 - c ? for  a = b = 1 | a , b , c ? otherwise. {\displaystyle |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}}}

Unfortunately, a working Deutsch gate has remained out of reach, due to lack of a protocol. However, a method was proposed to realize such a Deutsh gate with dipole-dipole interaction in neutral atoms.


Maps Quantum logic gate



Universal quantum gates

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 unitaries on a constant number of qubits, 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 {\displaystyle H} , the ? / 8 {\displaystyle \pi /8} gate R Z ( ? / 4 ) = d i a g ( 1 , e i ? 4 ) {\displaystyle R_{Z}(\pi /4)=diag(1,e^{\frac {i\pi }{4}})} , and the controlled-NOT gate c X {\displaystyle cX} .

A single-gate set of universal quantum gates can also be formulated using the three-qubit Deutsch gate D ( ? ) {\displaystyle D(\theta )} , which performs the transformation

| a , b , c ? ? { i cos ( ? ) | a , b , c ? + sin ( ? ) | a , b , 1 - c ? for  a = b = 1 | a , b , c ? otherwise. {\displaystyle |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 ( ? 2 ) {\displaystyle D({\begin{matrix}{\frac {\pi }{2}}\end{matrix}})} , thus showing that all classical logic operations can be performed on a universal quantum computer.

Another set of universal quantum gates consists of the Ising gate and the phase-shift gate. These are the set of gates natively available in some trapped-ion quantum computers.


Blueprint for a microwave trapped ion quantum computer | Science ...
src: advances.sciencemag.org


Measurement

Measurement appears as similar to a quantum gate even though it is not an irreversible gate, because measurement assigns the observed variable to a singular value. Measurement takes a quantum state and projects it to one of the base vectors, with a likelihood equal to the square of the vectors depth along that base vector. This is a non-reversible operation as it sets the quantum state equal to the base vector that represents the measured state (the state "collapses" to a definite singular value). Why and how this is so is called the measurement problem.

If two different quantum registers are entangled (they are not linearly independent), measurement of one register affects or reveals the state of the other register by partially or entirely collapsing its state too. An example of such a linearly inseparable state is the EPR pair, which can be constructed with the CNOT and the Hadamard gates (described above). This effect is used in many algorithms: if two variables A and B are maximally entangled (the bell state is the simplest example of this), a function F is applied to A such that A is updated to the value of F(A), followed by measurement of A, then B will, when measured, be a value such that F(B) = A. This way, measurement of one register can be used to assign properties to some other registers. This type of value-assignment in theory occurs instantaneously over any distance and this has as of 2018 been experimentally verified for distances of up to 1200 kilometers. That the phenomena appears to violate the speed of light is called the EPR paradox and it is an open question in physics how to resolve this. Originally it was solved by giving up the assumption of local realism, but other interpretations have also emerged. For more information see the Bell test experiments.


Three-bit quantum gate a step closer to universal quantum computer ...
src: regmedia.co.uk


Circuit composition and entangled states

If two or more qubits are viewed as a single quantum state, this combined state is equal to the tensor product of the constituent qubits. An entangled state is any state that can not be tensor-factorized (the state can not be separated into its constituent qubits). The CNOT, Ising and Toffoli gates are examples of gates that act on states constructed of multiple qubits.

The tensor product of two n-qubit quantum gates generates the gate that is equal to the two gates in parallel. This gate will act on 2 n {\displaystyle 2n} qubits. For example, the gate G = H ? H {\displaystyle G=H\otimes H} is the hadamard gate ( H {\displaystyle H} ) applied in parallel on 2 qubits. It can be written as

G = H ? H = 1 2 [ 1 1 1 - 1 ] ? 1 2 [ 1 1 1 - 1 ] = 1 2 [ 1 1 1 1 1 - 1 1 - 1 1 1 - 1 - 1 1 - 1 - 1 1 ] {\displaystyle G=H\otimes H={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&1\\1&-1\end{bmatrix}}\otimes {\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&1\\1&-1\end{bmatrix}}={\frac {1}{2}}{\begin{bmatrix}1&1&1&1\\1&-1&1&-1\\1&1&-1&-1\\1&-1&-1&1\end{bmatrix}}}

This "two-qubit parallel hadamard gate" will when applied to, for example, the two-qubit zero-vector ( | 00 ? {\displaystyle |00\rangle } ) create a quantum state that have equal probability of being observed in any of its four possible outcomes; 00, 01, 10 and 11. We can write this operation as:

G | 00 ? = 1 2 [ 1 1 1 1 1 - 1 1 - 1 1 1 - 1 - 1 1 - 1 - 1 1 ] [ 1 0 0 0 ] = 1 2 [ 1 1 1 1 ] = 1 2 | 00 ? + 1 2 | 01 ? + 1 2 | 10 ? + 1 2 | 11 ? = | 00 ? + | 01 ? + | 10 ? + | 11 ? 2 {\displaystyle G|00\rangle ={\frac {1}{2}}{\begin{bmatrix}1&1&1&1\\1&-1&1&-1\\1&1&-1&-1\\1&-1&-1&1\end{bmatrix}}{\begin{bmatrix}1\\0\\0\\0\end{bmatrix}}={\frac {1}{2}}{\begin{bmatrix}1\\1\\1\\1\end{bmatrix}}={\frac {1}{2}}|00\rangle +{\frac {1}{2}}|01\rangle +{\frac {1}{2}}|10\rangle +{\frac {1}{2}}|11\rangle ={\frac {|00\rangle +|01\rangle +|10\rangle +|11\rangle }{2}}}

Here the amplitude is 1 2 {\displaystyle {\frac {1}{2}}} and the probability is equal to the amplitude squared. The probability to observe any state is the absolute value of the amplitude squared, which in the above example means that there is one in four that we observe any one of the individual four cases. (Remember that amplitudes are complex values, so their squares are not always positive.)

If we have a set of N qubits that are entangled (their combined state can not be tensor-factorized into an expression of the individual qubits) and wish to apply a quantum gate on M < N qubits in the set, we will have to extend the gate to take N qubits. This can be done by combining the gate with an identity matrix such that their tensor product becomes a gate that act on N qubits. The identity matrix ( I {\displaystyle I} ) is a representation of the gate that maps every state to itself (i.e., does nothing at all). In a circuit diagram the identity gate or matrix will appear as just a wire.

For example, the hadamard transform ( H {\displaystyle H} ) acts on a single qubit, but if we for example feed it the second of the two qubits that constitute the entangled Bell state | 00 ? + | 11 ? 2 {\displaystyle {\frac {|00\rangle +|11\rangle }{\sqrt {2}}}} , we can not write that operation easily. We need to extend the hadamard transform with the do-nothing gate I {\displaystyle I} so that we can act on quantum states that span two qubits:

M = H ? I = 1 2 [ 1 1 1 - 1 ] ? [ 1 0 0 1 ] = 1 2 [ 1 0 1 0 0 1 0 1 1 0 - 1 0 0 1 0 - 1 ] {\displaystyle M=H\otimes I={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&1\\1&-1\end{bmatrix}}\otimes {\begin{bmatrix}1&0\\0&1\end{bmatrix}}={\frac {1}{\sqrt {2}}}{\begin{bmatrix}1&0&1&0\\0&1&0&1\\1&0&-1&0\\0&1&0&-1\end{bmatrix}}}

The gate M {\displaystyle M} can now be applied to any two-qubit state, entangled or otherwise. The M-gate will leave the first qubit untouched and apply the hadamard transform to the 2nd qubit. If applied to the Bell state in our example, we may write that as:

M | 00 ? + | 11 ? 2 = 1 2 [ 1 0 1 0 0 1 0 1 1 0 - 1 0 0 1 0 - 1 ] [ 1 0 0 1 ] = 1 2 [ 1 1 1 - 1 ] = | 00 ? + | 01 ? + | 10 ? - | 11 ? 2 {\displaystyle M{\frac {|00\rangle +|11\rangle }{\sqrt {2}}}={\frac {1}{2}}{\begin{bmatrix}1&0&1&0\\0&1&0&1\\1&0&-1&0\\0&1&0&-1\end{bmatrix}}{\begin{bmatrix}1\\0\\0\\1\end{bmatrix}}={\frac {1}{2}}{\begin{bmatrix}1\\1\\1\\-1\end{bmatrix}}={\frac {|00\rangle +|01\rangle +|10\rangle -|11\rangle }{2}}}

Because the number of elements in the matrices is 2 2 x {\displaystyle 2^{2x}} , where x is the number of qubits the gates act on, it is intractable to simulate large quantum systems using classical computers.


Scott Erholm and Bob Wall - ppt download
src: slideplayer.com


History

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


Good news everyone! Oxford has perfected a quantum logic gate gate ...
src: i.imgur.com


See also

  • Pauli matrices

What is Quantum Computation? | Quantiki
src: www.quantiki.org


Notes


A surface code quantum computer in silicon | Science Advances
src: advances.sciencemag.org


References

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

Source of the article : Wikipedia

Comments
0 Comments