Krylov-Lie Algebras framework for Variational Quantum Algorithm (VQA) landscape analysis — provides numerically robust approximation of VQA reachable manifolds, weighted non-Haar variance formulas, and barren plateau mitigation via non-Haar corrections.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill krylov-lie-algebras-vqa --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Krylov Lie Algebras Vqa?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-krylov-lie-algebras-vqa)More formats (shields.io, HTML) on the badges page.
---
name: krylov-lie-algebras-vqa
description: "Krylov-Lie Algebras framework for Variational Quantum Algorithm (VQA) landscape analysis — provides numerically robust approximation of VQA reachable manifolds, weighted non-Haar variance formulas, and barren plateau mitigation via non-Haar corrections."
---
# Krylov-Lie Algebras for VQA Landscape Analysis
## Description
Krylov algebras provide a framework for VQA landscape theory that bridges the gap between idealized Haar-random circuit analysis and the shallow-depth regime where VQAs actually operate. By approximating VQA reachable manifolds through Krylov-Lie algebras induced by the Krylov span of finite generator sets acting on seed vectors, this methodology derives weighted non-Haar variance formulas that recover Haar formulas as a special case while isolating non-Haar effects into explicit correction terms.
## Activation Keywords
- krylov lie algebra vqa
- non-haar variance quantum
- barren plateau mitigation non-haar
- vqa landscape theory finite depth
- krylov span variational quantum
- weighted variance vqa
- vqa trainability shallow depth
- vqa reachable manifold approximation
- ergodic conditions vqa convergence
- variational quantum algorithm landscape
## Tools Used
- web_search: Search arXiv for related papers
- web_extract: Fetch paper details
- exec: Run quantum circuit simulations (Qiskit/PennyLane)
- write: Create analysis scripts
## Core Concepts
### Krylov-Lie Algebra Construction
Given a finite generator set {H_k} acting on seed vectors |ψ⟩:
1. Compute Krylov span: span{H_k, [H_i, H_j], [H_i, [H_j, H_k]], ...}
2. This forms a Lie algebra approximation of the full DLA
3. The Krylov-Lie group provides the reachable manifold
### Weighted Non-Haar Variance Formula
```
Var[loss] = Var_Haar[loss] + Δ_non-Haar
```
Where:
- `Var_Haar[loss]` is the standard Lie-algebraic Haar variance
- `Δ_non-Haar` are explicit correction terms capturing finite-depth effects
### Key Insights
1. **Haar convergence heuristic fails** without additional hypotheses — sufficiently deep circuit ensembles don't automatically converge to Haar
2. **Concrete obstructions** to naive Haar convergence identified
3. **Ergodic conditions** recovered for convergence under natural necessary and sufficient conditions
4. **Non-Haar contributions may mitigate barren plateaus** by reweighting visible sectors of the loss landscape
5. **VQAs may be more trainable** than recent literature suggests
## Usage Patterns
### Pattern 1: VQA Trainability Analysis
1. Identify generator set {H_k} of the VQA ansatz
2. Compute Krylov span up to desired depth
3. Construct Krylov-Lie algebra from span
4. Derive weighted variance formula with non-Haar corrections
5. Compare predicted variance with empirical measurements
### Pattern 2: Barren Plateau Mitigation Check
1. Compute Haar variance baseline for the ansatz
2. Compute non-Haar correction terms
3. If corrections significantly reweight loss landscape → trainability improved
4. Design ansatz to maximize beneficial non-Haar contributions
### Pattern 3: Ansatz Design for Shallow Circuits
1. Start with target problem Hamiltonian
2. Choose finite generator set appropriate for NISQ depth
3. Compute Krylov-Lie algebra to characterize reachable manifold
4. Use weighted variance to predict trainability
5. Iterate generator set to optimize trainability
## Implementation Guide
### Step 1: Generator Set Identification
```python
# For a typical hardware-efficient ansatz
generators = [
"RZ(i) RY(i) RZ(i)", # Single qubit rotations
"CNOT(i, i+1)", # Entangling gates
# ... per layer
]
```
### Step 2: Krylov Span Computation
```python
# Compute nested commutators up to depth d
def krylov_span(generators, seed_state, max_depth):
span = set(generators)
for depth in range(max_depth):
new_elements = set()
for g1 in span:
for g2 in generators:
commutator = [g1, g2] # Lie bracket
if not is_linear_dependent(commutator, span):
new_elements.add(commutator)
span.update(new_elements)
return span
```
### Step 3: Variance Formula Derivation
```python
# Haar variance (standard result)
var_haar = compute_haar_variance(krylov_lie_algebra, observable)
# Non-Haar correction
delta_non_haar = compute_non_haar_correction(
krylov_lie_algebra, # finite-depth structure
observable,
seed_state,
depth
)
# Total predicted variance
var_total = var_haar + delta_non_haar
```
### Step 4: Ergodic Condition Verification
```python
# Check if circuit ensemble satisfies ergodic conditions
def check_ergodicity(generators, krylov_algebra):
# Verify irreducibility of action
# Check mixing properties
# Return convergence guarantee status
return {
"irreducible": check_irreducibility(generators),
"mixing": check_mixing(krylov_algebra),
"converges": ergodic_condition_met
}
```
## Error Handling
### DLA Dimension Explosion
- **Problem**: Full dynamical Lie algebra grows exponentially
- **Solution**: Krylov span truncation at finite depth provides numerically robust approximation
### Numerical Instability
- **Problem**: Nested commutators become numerically unstable
- **Solution**: Use QR-based orthogonalization at each Krylov iteration
### Shallow Depth Regime
- **Problem**: Standard Haar analysis completely fails at shallow depths
- **Solution**: Krylov-Lie algebra captures finite-depth geometry faithfully
## Resources
- Paper: arXiv:2607.02626 — "Krylov-Lie Algebras for Variational Quantum Algorithms: Geometric, Depth-Aware Insights into Expressivity and Trainability"
- Author: Anzej Margeta-Cacace
- Categories: quant-ph; math-ph; math.MP
## Related Skills
- `qml-expressivity-trainability-paradox` — DLA framework for QML trainability
- `quantum-neural-barren-plateau` — Barren plateau mitigation
- `dla-trainability-by-design` — Trainability-by-design methodology
- `ravine-quantum-cost-landscape-ensemble` — VQA landscape analysis via ravine structure
- `vqa-statistical-complexity-trainability-separation` — VQA trainability analysis
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!