The Lie–Trotter product formula for skew-Hermitian matrices #
Category: 1-Mathlib (CSD-free, staged for upstream).
For skew-Hermitian A, B (so all exponentials are unitary),
(exp (A/n) · exp (B/n))ⁿ → exp (A + B)
in the L2 operator norm. The chain:
norm_exp_sub_one_sub_le— the quantitative second-order remainder‖exp X − 1 − X‖ ≤ ‖X‖² · e^{‖X‖}(tail of the exponential series, termwise dominated);norm_exp_mul_exp_sub_exp_add_le— the one-step defect‖exp X · exp Y − exp (X+Y)‖ ≤ (‖X‖+‖Y‖)²(3+‖X‖+‖Y‖)e^{‖X‖+‖Y‖}for skewX, Y(the algebraic four-term split, with the unitary factors at norm one);norm_pow_sub_pow_le_of_unitary— the growth-free telescoping‖Sⁿ − Tⁿ‖ ≤ n·‖S − T‖for unitaries;- ★★
trotter_skew— the product formula: the one-step defect isO(1/n²), the telescoping multiplies byn, and the totalO(1/n)squeezes to zero.
Consumed by the CSD chain as CV-12 (specs/eft-stage4-plan.md): the
interacting drive for an arbitrary Hermitian V becomes a limit of
constructible steps. No Trotter statement exists in Mathlib at the pin
(checked 2026-08-09); the skew-Hermitian case is the natural first
upstream cut, since unitarity removes all growth factors.
Provenance #
Staged as upstream Mathlib material; L2 operator norm scope, as
DuhamelBound.lean.
Skew-Hermitian exponentials are unitary (membership form).
Skew-Hermitian exponentials have unit norm.
The one-step defect for skew-Hermitian X, Y:
‖exp X · exp Y − exp (X+Y)‖ ≤ (‖X‖+‖Y‖)²·(3+‖X‖+‖Y‖)·e^{‖X‖+‖Y‖}.
★★ The Lie–Trotter product formula, skew-Hermitian case:
(exp (A/n) · exp (B/n))ⁿ → exp (A + B). The one-step defect is
O(1/n²), the unitary telescoping multiplies by n, and the total
O(1/n) squeezes to zero.