Formal derivatives of univariate power series #
This file defines PowerSeries.derivative, the formal derivative of a univariate
power series, as a Derivation R R⟦X⟧ R⟦X⟧.
See also MvPowerSeries.pderiv for the multivariate setting.
Main definitions #
PowerSeries.derivative: the formal derivative, as a derivation.
Main results #
PowerSeries.coeff_derivative: coefficient formulacoeff n (d⁄dX R f) = coeff (n + 1) f * (n + 1).PowerSeries.derivative_coe: compatibility withPolynomial.derivative.PowerSeries.trunc_derivative: truncation commutes with differentiation.PowerSeries.derivative.ext: a power series is determined by its constant term and derivative.PowerSeries.derivative_pow: power rule.PowerSeries.derivative_inv,PowerSeries.derivative_inv': derivative of an inverse.PowerSeries.derivative_subst: chain rule for power series substitution.
The formal derivative of a formal power series
Equations
Instances For
Abbreviation of PowerSeries.derivative, the formal derivative on R⟦X⟧
Equations
- PowerSeries.«termD⁄dX» = Lean.ParserDescr.node `PowerSeries.«termD⁄dX» 1024 (Lean.ParserDescr.symbol "d⁄dX")
Instances For
The k-th coefficient of the n-th formal derivative: differentiating n times multiplies the
(k + n)-th coefficient by the ascending factorial (k + 1)(k + 2) ⋯ (k + n).
Specialisation of coeff_iterate_derivative at k = 0: the constant term of the n-th formal
derivative recovers n ! times the n-th coefficient, constantCoeff (Dⁿ f) = n ! * coeff n f.
The derivative of g^n equals n * g^(n-1) * g'.
If f and g have the same constant term and derivative, then they are equal.
The formal derivative of a power series in one variable.
This is defined here as a function, but will be packaged as a
derivation derivative on R⟦X⟧.
Equations
- f.derivativeFun = (↑(PowerSeries.derivative R)).toFun f
Instances For
Alias of PowerSeries.derivative_C.
Alias of PowerSeries.coeff_derivative.
Alias of PowerSeries.derivative_coe.
Alias of PowerSeries.trunc_derivative.