Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Basic quantum information

In quantum computing, the fundamental unit of information is the quantum bit or qubit. A qubit can exist in a superposition of states, represented as:

ψ=α0+β1,\ket{\psi} = \alpha\ket{0} + \beta\ket{1},

where α\alpha and β\beta are complex numbers satisfying the normalization condition α2+β2=1|\alpha|^2 + |\beta|^2 = 1. The states 0\ket{0} and 1\ket{1} are the computational basis states. Another important concept is the density matrix, which provides a more general description of quantum states, especially for mixed states. The density matrix ρ\rho for a pure state ψ\ket{\psi} is given by:

ρ=ψψ.\rho = \ket{\psi}\bra{\psi}.

The density matrix must satisfy the properties of being Hermitian, having a trace equal to one, and being positive semi-definite.

Entanglement

Entanglement is a unique quantum phenomenon where the states of two or more qubits become correlated such that the state of one qubit cannot be described independently of the others. For example, the Bell state is an example of a maximally entangled state:

Φ+=12(00+11).\ket{\Phi^+} = \frac{1}{\sqrt{2}}\left(\ket{00} + \ket{11}\right).

Entangled states are crucial for various quantum computing protocols, including quantum teleportation and superdense coding.

Quantum gates

Quantum gates are the building blocks of quantum circuits, manipulating qubits through unitary operations. Common single-qubit gates include the Pauli-X, Pauli-Y, and Pauli-Z gates, represented by the following matrices:

X=[0110],Y=[0ii0],Z=[1001].X = \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}, \quad Y = \begin{bmatrix} 0 & -i \\ i & 0 \end{bmatrix}, \quad Z = \begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}.

Two-qubit gates, such as the CNOT gate, are essential for creating entanglement between qubits. The CNOT gate is represented by the matrix:

CNOT=[1000010000010010].\text{CNOT} = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 1 & 0 \end{bmatrix}.

Test the citation management system Nielsen & Chuang (2010).

References
  1. Nielsen, M. A., & Chuang, I. L. (2010). Quantum Computation and Quantum Information: 10th Anniversary Edition. Cambridge University Press.