Alright, let's solidify our understanding of the mathematical stage where quantum computations play out, especially for Quantum Machine Learning (QML). While you likely have a background in linear algebra, we need to be precise about the structures used to describe the multi-qubit systems central to QML algorithms. This involves moving beyond single-qubit descriptions into the realm of composite systems.
Quantum states live in complex vector spaces equipped with an inner product, known as Hilbert spaces. For systems composed of n qubits, the relevant Hilbert space is typically the 2n-dimensional complex space, denoted as Hn=(C2)⊗n≅C2n.
A single qubit's state space is H1=C2, spanned by the computational basis vectors ∣0⟩=(10) and ∣1⟩=(01). Any pure state of a single qubit can be written as a complex linear combination (superposition) of these basis states: ∣ψ⟩=α∣0⟩+β∣1⟩ where α,β∈C are complex amplitudes satisfying the normalization condition ∣α∣2+∣β∣2=1. This normalization ensures that the probabilities of measuring the qubit in the ∣0⟩ or ∣1⟩ state sum to one.
The inner product (or scalar product) between two states ∣ϕ⟩=γ∣0⟩+δ∣1⟩ and ∣ψ⟩=α∣0⟩+β∣1⟩ is defined as: ⟨ϕ∣ψ⟩=(γ∗δ∗)(αβ)=γ∗α+δ∗β Here, ⟨ϕ∣ represents the conjugate transpose (Hermitian conjugate) of the column vector ∣ϕ⟩, often called a "bra" vector corresponding to the "ket" vector ∣ψ⟩. The inner product provides a way to calculate the probability amplitude of projecting one state onto another. The probability of measuring state ∣ψ⟩ in state ∣ϕ⟩ is given by ∣⟨ϕ∣ψ⟩∣2.
When dealing with multiple qubits, as is standard in QML circuits, we need a way to describe the combined state space. This is achieved using the tensor product (⊗). If we have two qubits, one in state ∣ψA⟩∈HA=C2 and the other in state ∣ψB⟩∈HB=C2, the state of the composite system lives in the tensor product space HAB=HA⊗HB≅C4.
The computational basis for this two-qubit system is formed by taking the tensor products of the single-qubit basis vectors:
These four basis vectors, ∣00⟩,∣01⟩,∣10⟩,∣11⟩, span the C4 Hilbert space. A general two-qubit state is a superposition: ∣Ψ⟩=c00∣00⟩+c01∣01⟩+c10∣10⟩+c11∣11⟩ with normalization ∑ij∣cij∣2=1.
The tensor product combines the Hilbert spaces of individual qubits (C2) into a larger Hilbert space (C4 for two qubits) that describes the composite system.
This generalizes directly: for n qubits, the Hilbert space is Hn=C2n, spanned by 2n computational basis states like ∣x1x2…xn⟩, where xi∈{0,1}. This exponential growth in the dimension of the state space is both a source of potential computational power for quantum algorithms and a significant challenge for classical simulation.
A multi-qubit state ∣Ψ⟩∈HAB is called separable if it can be written as a simple tensor product of states from the individual subsystems, i.e., ∣Ψ⟩=∣ψA⟩⊗∣ψB⟩. For example: ∣+⟩⊗∣−⟩=21(∣0⟩+∣1⟩)⊗21(∣0⟩−∣1⟩)=21(∣00⟩−∣01⟩+∣10⟩−∣11⟩) This state is fully described by specifying the states of qubit A and qubit B independently.
However, not all states in HAB can be written this way. States that cannot be factorized into a tensor product of individual qubit states are called entangled. The canonical examples are the Bell states, such as: ∣Φ+⟩=21(∣00⟩+∣11⟩) There are no single-qubit states ∣ψA⟩=α∣0⟩+β∣1⟩ and ∣ψB⟩=γ∣0⟩+δ∣1⟩ such that ∣ψA⟩⊗∣ψB⟩=∣Φ+⟩. You can see this by writing out the product: (α∣0⟩+β∣1⟩)⊗(γ∣0⟩+δ∣1⟩)=αγ∣00⟩+αδ∣01⟩+βγ∣10⟩+βδ∣11⟩ For this to equal 21(∣00⟩+∣11⟩), we would need αδ=0 and βγ=0, while αγ=1/2 and βδ=1/2. These conditions cannot be satisfied simultaneously. Entangled states exhibit correlations between the qubits that cannot be explained classically and are considered a fundamental resource in quantum computation and information, including many QML algorithms.
Linear operators acting on these composite Hilbert spaces represent quantum gates or measurements applied to multiple qubits. If UA acts on HA and UB acts on HB, their combined action on a separable state is: (UA⊗UB)(∣ψA⟩⊗∣ψB⟩)=(UA∣ψA⟩)⊗(UB∣ψB⟩) If only one qubit is acted upon, say by UA, while the other is unaffected, the operator is UA⊗IB, where IB is the identity operator on HB.
For example, the CNOT gate, a standard two-qubit gate, acts on the computational basis states as:
Its matrix representation in the ∣00⟩,∣01⟩,∣10⟩,∣11⟩ basis is: CNOT=1000010000010010 This operator cannot be written as a simple tensor product UA⊗UB, signifying its ability to create entanglement.
Understanding how to represent states and manipulate them using operators within these high-dimensional tensor product spaces is essential. QML techniques heavily rely on this formalism. Quantum feature maps, for instance, encode classical data points x into quantum states ∣ϕ(x)⟩ residing in these potentially vast Hilbert spaces. Quantum kernel methods compute inner products K(xi,xj)=∣⟨ϕ(xi)∣ϕ(xj)⟩∣2 within this space. Variational algorithms use parameterized quantum circuits, which are sequences of operators (gates) applied to these multi-qubit states, to minimize a cost function. A firm grasp of the underlying linear algebraic structure is therefore indispensable as we move forward.
© 2025 ApX Machine Learning