Documentation

Mathlib.Analysis.Calculus.IteratedDeriv.Analytic

Iterated derivatives of analytic functions with power factors #

This file contains lemmas about the iterated derivative of a function that factors as a power of (ยท - zโ‚€) times an analytic function.

theorem iteratedDeriv_mul_pow_sub_of_analytic {๐•œ : Type u_1} [NontriviallyNormedField ๐•œ] [CharZero ๐•œ] [CompleteSpace ๐•œ] {k t : โ„•} {zโ‚€ : ๐•œ} {R Rโ‚ : ๐•œ โ†’ ๐•œ} (hf1 : โˆ€ (z : ๐•œ), AnalyticAt ๐•œ Rโ‚ z) (hRโ‚ : โˆ€ (z : ๐•œ), R z = (z - zโ‚€) ^ (k + t) * Rโ‚ z) :
โˆƒ (Rโ‚‚ : ๐•œ โ†’ ๐•œ), (โˆ€ (z : ๐•œ), AnalyticAt ๐•œ Rโ‚‚ z) โˆง โˆ€ (z : ๐•œ), iteratedDeriv k R z = (z - zโ‚€) ^ t * (โ†‘(k + t).factorial / โ†‘t.factorial * Rโ‚ z + (z - zโ‚€) * Rโ‚‚ z)

If a function R : ๐•œ โ†’ ๐•œ factors as R z = (z - zโ‚€) ^ (k + t) * Rโ‚ z, where Rโ‚ is analytic everywhere, then there exists an everywhere analytic function Rโ‚‚ : ๐•œ โ†’ ๐•œ such that the k-th iterated derivative of R is given by iteratedDeriv k R z = (z - zโ‚€) ^ t * ((k + t)! / t ! * Rโ‚ z + (z - zโ‚€) * Rโ‚‚ z).