What problem does it solve? Computing exact parameter gradients of parameterized quantum circuits without finite-difference approximation error is difficult, and many variational algorithms also need the Quantum Geometric Tensor for natural gradient optimization. This Skill provides guidance and reference implementations for analytic gradient and QGT estimation using the linear combination of unitaries (LCU) method in Qiskit. ## Core Features & Use Cases - Estimator Gradients: Compute exact expectation-value gradients with LinCombEstimatorGradient, supporting REAL, IMAG, and COMPLEX derivative types. - Sampler Gradients: Differentiate probability distributions from measured circuits using LinCombSamplerGradient. - Quantum Geometric Tensor: Build QGT matrices with LinCombQGT, including the phase-fix term required by quantum natural gradient methods. - Use Case: A researcher training a variational quantum eigensolver needs exact gradients of a 3-parameter RY/RZ circuit with respect to a ZZZ observable, plus the QGT matrix for natural gradient descent, all without numerical approximation error. ## Quick Start Ask the assistant to compute the analytic gradient of a parameterized Qiskit circuit with respect to a Pauli observable using the LCU estimator gradient method.