Variational Quantum Algorithms (VQAs) represent a powerful hybrid approach, blending the capabilities of quantum computation with classical optimization techniques. As mentioned earlier, this structure makes them particularly well-suited for execution on current and near-future quantum hardware. The foundation upon which these algorithms are built is the variational principle of quantum mechanics.
In quantum mechanics, the variational principle provides a pathway to estimate the ground state energy, E0, of a quantum system described by a Hamiltonian H. The principle states that for any well-behaved trial wavefunction ∣ψ⟩, the expectation value of the Hamiltonian with respect to this state provides an upper bound to the true ground state energy. Mathematically, this is expressed via the Rayleigh-Ritz quotient:
E[ψ]=⟨ψ∣ψ⟩⟨ψ∣H∣ψ⟩If the trial state ∣ψ⟩ is normalized (meaning ⟨ψ∣ψ⟩=1), this simplifies to:
E[ψ]=⟨ψ∣H∣ψ⟩The core statement of the variational principle is:
E[ψ]≥E0Equality holds if and only if the trial state ∣ψ⟩ is exactly the ground state eigenvector ∣ψ0⟩ corresponding to E0. This principle is immensely useful: it means we can search through a family of possible quantum states, calculate the expectation value of the Hamiltonian for each, and the state yielding the minimum expectation value will be our best approximation of the true ground state (and its energy) within that family. The "better" our family of trial states represents the actual ground state, the closer our minimum expectation value will be to E0.
VQAs ingeniously adapt this principle for quantum computers. Instead of arbitrary trial wavefunctions, we use quantum states ∣ψ(θ)⟩ that can be prepared by a quantum computer using a Parameterized Quantum Circuit (PQC), often denoted as U(θ). Here, θ=(θ1,θ2,…,θM) represents a set of adjustable parameters, typically rotation angles within the quantum gates of the circuit. The PQC acts on some initial state, usually the all-zero state ∣0…0⟩:
∣ψ(θ)⟩=U(θ)∣0…0⟩The Hamiltonian H now represents the problem we aim to solve. In quantum chemistry, it might be the molecular Hamiltonian whose ground state energy we seek. In machine learning, H is often constructed such that its expectation value corresponds to a classical cost function C(θ) that we want to minimize (e.g., classification error, regression loss).
The task then becomes finding the optimal set of parameters θ∗ that minimizes the expectation value of H with respect to the PQC's output state:
C(θ)=⟨ψ(θ)∣H∣ψ(θ)⟩=⟨0…0∣U†(θ)HU(θ)∣0…0⟩The goal is to find:
θ∗=argθminC(θ)This minimization is achieved through an iterative, hybrid loop involving both a quantum processor and a classical optimizer:
A schematic of the hybrid quantum-classical loop characteristic of Variational Quantum Algorithms. The quantum processor prepares and measures parameterized states, while a classical optimizer adjusts the parameters based on the measurement results to minimize a cost function.
This iterative process leverages the quantum computer for tasks believed to be hard classically (preparing and measuring complex quantum states) while relying on established classical algorithms for the optimization task. The variational principle guarantees that by minimizing the measurable cost function C(θ), we are finding the best approximation to the solution of the problem representable by our chosen PQC architecture. The effectiveness of the VQA depends significantly on the expressivity of the PQC (its ability to generate states close to the true solution) and the efficiency of the classical optimization process. We will explore PQC design, cost functions, gradient calculations, and optimization strategies in the following sections.
© 2025 ApX Machine Learning