Entanglement is a defining characteristic of quantum mechanics, representing correlations between quantum systems that surpass anything possible in the classical domain. Where the previous sections revisited the mathematical descriptions of multi-qubit systems using tensor products and density matrices, here we analyze the specific consequences of entanglement and the related phenomenon of non-locality for quantum machine learning. Understanding these concepts is important for appreciating the potential resources QML algorithms can leverage.
Recall that a multi-qubit state is entangled if it cannot be written as a simple tensor product of individual qubit states. For instance, the Bell state ∣Φ+⟩=21(∣00⟩+∣11⟩) is entangled because the measurement outcome of the first qubit instantly determines the outcome for the second, regardless of their separation, a correlation pattern unattainable if the qubits' states were merely classically correlated (e.g., prepared independently but according to some shared probability distribution).
Formally, for a pure state ∣ψ⟩ in a bipartite Hilbert space HA⊗HB, it is separable if it can be written as ∣ψ⟩=∣ϕA⟩⊗∣ϕB⟩ for some ∣ϕA⟩∈HA and ∣ϕB⟩∈HB. Otherwise, it is entangled. For mixed states described by density matrices ρ, separability means the state can be written as a convex combination of product states: ρ=∑ipiρA(i)⊗ρB(i) where pi≥0, ∑ipi=1, and ρA(i), ρB(i) are density matrices for subsystems A and B respectively. If a mixed state cannot be expressed this way, it is entangled.
In the context of computation and machine learning, entanglement is often viewed as a resource because:
Quantum machine learning models, particularly those based on Parameterized Quantum Circuits (PQCs) used in Variational Quantum Algorithms (Chapter 4) and Quantum Neural Networks (Chapter 5), explicitly use gates that generate entanglement. Common examples include the Controlled-NOT (CNOT) gate or Controlled-Z (CZ) gate applied to qubits in superposition states.
Consider a simple PQC fragment:
# Example using Qiskit (conceptual)
from qiskit import QuantumCircuit
qc = QuantumCircuit(2)
qc.h(0) # Put qubit 0 in superposition |+>
qc.h(1) # Put qubit 1 in superposition |+>
# At this point, state is |+>|+> = 1/2 (|00> + |01> + |10> + |11>), separable.
qc.cx(0, 1) # Apply CNOT gate: generates entanglement
# Final state is 1/sqrt(2) (|00> + |11>), the Bell state |Phi+> (up to global phase)
Layers of single-qubit rotations (parameterized) and fixed two-qubit entangling gates are typical building blocks in PQC ansätze. The entangling gates distribute information encoded in one qubit across others, creating correlations that the model parameters can then shape during training to fit the target function or distribution. The structure and placement of these entanglers significantly impact the circuit's ability to represent complex functions, a property often referred to as expressivity, which we will analyze further in the context of feature maps (Chapter 2) and VQAs (Chapter 4).
The ability of quantum circuits to efficiently generate and manipulate entanglement leads to several potential implications for machine learning:
Non-locality refers to correlations predicted by quantum mechanics (and experimentally verified) that violate Bell inequalities. These inequalities define upper bounds on the strength of correlations possible under assumptions of local realism (physical properties exist independently of measurement, and influences cannot travel faster than light). Entanglement is a prerequisite for demonstrating non-locality.
While non-locality is a profound aspect of quantum theory, its direct application within typical QML algorithms is less common than the utilization of entanglement itself. QML models usually operate by preparing an entangled state within the quantum computer and then measuring local observables. The focus is often on the representational power afforded by the entangled state space rather than explicitly testing Bell inequalities during the computation. However, understanding non-locality reinforces the fundamentally non-classical nature of the correlations that entanglement enables.
Despite the theoretical potential, harnessing entanglement effectively in QML faces significant practical hurdles:
In summary, entanglement provides QML models with access to complex correlation structures and vast computational spaces beyond the reach of classical physics. While its role as a resource offers intriguing possibilities for enhancing machine learning capabilities, effectively creating, controlling, and leveraging entanglement, especially in the presence of noise, remains a central challenge and a vibrant area of ongoing research in the field. The subsequent chapters will build upon these concepts, exploring how entanglement is utilized in specific QML algorithms like quantum kernel methods, VQAs, and QNNs.
© 2025 ApX Machine Learning