Zulip Chat Archive
Stream: Is there code for X?
Topic: Iterated derivative of product
Vincent Beffara (Apr 08 2024 at 08:11):
Do we have this (under the right assumptions of course)?
theorem blo (f g : ℝ → ℂ) (n : ℕ) : iteratedDeriv n (fun x => f x * g x) = fun x =>
∑ k in Finset.Icc 0 n, ((n.choose k) * iteratedDeriv k f x * iteratedDeriv (n - k) g x) := by sorry
It is kind of hidden in the proof of docs#ContinuousLinearMap.norm_iteratedFDerivWithin_le_of_bilinear_aux
Sébastien Gouëzel (Apr 08 2024 at 08:31):
I don't think we have it, and we definitely should (for a general bilinear form, then specialized to multiplication). Note however that if you just need to bound some integrals, a bound (like the one you mention or the one given by docs#norm_iteratedFDeriv_mul_le) could be enough for your needs.
Last updated: May 02 2025 at 03:31 UTC