What problem does it solve? Computing exact gradients and Quantum Geometric Tensor entries for parameterized quantum circuits typically requires many extra circuit evaluations with parameter-shift or finite-difference methods. This Skill provides reverse-mode statevector differentiation using Qiskit's ReverseEstimatorGradient and ReverseQGT, delivering exact analytic gradients in a single reverse sweep for small circuits. ## Core Features & Use Cases - Exact Gradient Computation: Uses ReverseEstimatorGradient to compute expectation value gradients with O(P) scaling in the number of parameterized gates, with no truncation error. - QGT Computation: Uses ReverseQGT with configurable phase-fix and derivative type (REAL, IMAG, COMPLEX) for natural gradient optimization workflows. - Reference Implementation: Includes a manual NumPy-based reverse-sweep implementation with known test cases validated against finite differences and analytic solutions. - Use Case: A researcher training a variational quantum eigensolver on a 2-qubit RY+CX ansatz needs exact gradients of the ZZ expectation value; this Skill generates runnable Qiskit code and validates results against finite-difference baselines. ## Quick Start Ask the assistant to compute the gradient of the ZZ observable for a two-qubit RY parameterized circuit using reverse-mode differentiation in Qiskit.