Plain-language statement
For two -times continuously differentiable functions and , the th iterated derivative distributes over subtraction:
Exact Lean statement
lemma iteratedDeriv_sub {f g : ℝ → E} (hf : ContDiff ℝ n f) (hg : ContDiff ℝ n g) :
iteratedDeriv n (f - g) = iteratedDeriv n f - iteratedDeriv n gFormal artifact
Lean source
lemma iteratedDeriv_sub {f g : ℝ → E} (hf : ContDiff ℝ n f) (hg : ContDiff ℝ n g) : iteratedDeriv n (f - g) = iteratedDeriv n f - iteratedDeriv n g := by induction n generalizing f g with | zero => rfl | succ n ih => have hf' : ContDiff ℝ n (deriv f) := hf.iterate_deriv' n 1 have hg' : ContDiff ℝ n (deriv g) := hg.iterate_deriv' n 1 have hfg : deriv (f - g) = deriv f - deriv g := by ext x ; apply deriv_sub · exact (hf.differentiable (by simp)).differentiableAt · exact (hg.differentiable (by simp)).differentiableAt simp_rw [iteratedDeriv_succ', ← ih hf' hg', hfg]- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/Sobolev.lean:144-155
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Admissible bound mono
admissible_bound.mono
Plain-language statement
For positive parameters , the classical error-bound function is nonincreasing once .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero
AnalyticOn_divRemovable_zero
Plain-language statement
Let be analytic on an open set containing , and suppose . Define for and . Then the apparent singularity at is removable and is analytic throughout .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero closed Ball
AnalyticOn_divRemovable_zero_closedBall
Plain-language statement
Suppose and is analytic on the closed disc with . Define for and . Then is analytic on the entire closed disc, including at the removed singularity.
Source project: Prime Number Theorem and More
Person-level attribution pending.