VQE, Ansatzes, and ADAPT¶
VQE uses the variational objective (2) from the theory overview. The sections below cover the core VQE loop, ansatz choices, optimizers, fermion-to-qubit mappings, and adaptive ansatz growth.
The Variational Quantum Eigensolver couples:
parameterized quantum circuits
classical optimization
Workflow:
prepare ansatz state
measure expectation value
update parameters
iterate to convergence
optimizer → parameters → circuit → expectation → update
Performance depends on:
ansatz expressibility
optimization landscape
Hamiltonian structure
Ansatz Families¶
Ansätze define the accessible variational manifold.
Tradeoffs:
physical structure
circuit depth
parameter count
trainability
UCCSD¶
Unitary Coupled Cluster Singles and Doubles:
with
Properties:
chemistry motivated
interpretable excitation structure
strong performance for small molecules
Hardware-efficient ansätze¶
Example: RY–CZ layered circuits.
Motivations:
shallow depth
tunable expressibility
hardware compatibility
useful for benchmarking optimizer behaviour
Minimal ansätze¶
Low-parameter circuits used for:
visualization
pedagogical examples
landscape analysis
Optimizers¶
Optimization minimizes:
Supported optimizers:
Adam
Gradient Descent
RMSProp
Adagrad
Momentum / NesterovMomentum
Differences:
adaptive learning-rate scaling
momentum accumulation
noise robustness
Implementation uses a unified optimizer interface shared across ansätze.
Fermion-to-Qubit Mappings¶
Mapping choice affects circuit structure and optimization behaviour.
Jordan–Wigner¶
direct occupation encoding
simple construction
longer Pauli strings
Bravyi–Kitaev¶
balanced parity/occupation encoding
shorter average Pauli strings
Parity mapping¶
parity-based encoding
can expose symmetries
may reduce circuit depth
ADAPT-VQE¶
Adaptive ansatz construction.
Instead of fixing the ansatz size, operators are added iteratively.
Ansatz:
Operators selected by gradient magnitude.
Workflow:
optimize current parameters
evaluate gradients for operator pool
append best operator
repeat until convergence
Advantages:
compact circuits
interpretable operator growth
convergence diagnostics