Explicit differential-operator transformation under division by one minus X
ProvedArithmeticE.differential_operator_division_identitydifferential-equationse-functionspower-series
Let be formal differentiation, let and be complex formal power series, and let . Then
This is the explicit transformation of a scalar differential operator under division by . It applies in particular when the are polynomials, as in the classical E-function division argument. The underlying derivative identity is .
Preamble
import Mathlib open PowerSeries
Formal statement
theorem ArithmeticE.differential_operator_division_identity (p : ℕ → PowerSeries ℂ) (g : PowerSeries ℂ) (n : ℕ) :
(∑ k ∈ Finset.range (n+1), p k * (PowerSeries.derivative ℂ)^[k] ((1-PowerSeries.X)*g)) =
(1-PowerSeries.X)*(∑ k ∈ Finset.range (n+1), p k*(PowerSeries.derivative ℂ)^[k] g) -
∑ k ∈ Finset.range n, ((k+1:ℕ):PowerSeries ℂ)*p (k+1)*(PowerSeries.derivative ℂ)^[k] g := by sorry
Source
Product differentiation in the classical E-function division argument: Beukers, https://webspace.science.uu.nl/~beuke106/siegelshidlovskii.pdf, proof of Corollary 2.2, pp. 3–4.