Additive operations on derivatives #
For detailed documentation of the FrΓ©chet derivative,
see the module docstring of Analysis/Calculus/FDeriv/Basic.lean
.
This file contains the usual formulas (and existence assertions) for the derivative of
- sum of finitely many functions
- multiplication of a function by a scalar constant
- negative of a function
- subtraction of two functions
Derivative of a function multiplied by a constant #
Version of fderivWithin_const_smul
written with c β’ f
instead of fun y β¦ c β’ f y
.
Version of fderiv_const_smul
written with c β’ f
instead of fun y β¦ c β’ f y
.
Derivative of the sum of two functions #
Version of fderivWithin_add
where the function is written as f + g
instead
of fun y β¦ f y + g y
.
Version of fderiv_add
where the function is written as f + g
instead
of fun y β¦ f y + g y
.
Derivative of a finite sum of functions #
Derivative of the negative of a function #
Version of fderivWithin_neg
where the function is written -f
instead of fun y β¦ - f y
.
Version of fderiv_neg
where the function is written -f
instead of fun y β¦ - f y
.
Derivative of the difference of two functions #
Version of fderivWithin_sub
where the function is written as f - g
instead
of fun y β¦ f y - g y
.
Version of fderiv_sub
where the function is written as f - g
instead
of fun y β¦ f y - g y
.