Create comparingDerivatives.lean

This commit is contained in:
Stefan Kebekus 2024-05-06 15:33:00 +02:00
parent e5383eff34
commit b03954eee9
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import Mathlib.Data.Fin.Tuple.Basic
import Mathlib.Analysis.Complex.Basic
import Mathlib.Analysis.Complex.TaylorSeries
import Mathlib.Analysis.Calculus.LineDeriv.Basic
import Mathlib.Analysis.Calculus.ContDiff.Defs
import Mathlib.Analysis.Calculus.FDeriv.Basic
import Mathlib.Analysis.Calculus.FDeriv.Symmetric
lemma l₁ (f : × ) (h : ContDiff 2 f) :
∀ z a b : × , (fderiv (fun w => fderiv f w) z) a b = iteratedFDeriv 2 f z ![a, b] := by
sorry
lemma l₂ (f : × ) (h : ContDiff 2 f) :
∀ z a b : × , (fderiv (fun w => fderiv f w) z) a b = (fderiv (fun w ↦ (fderiv f w) a) z) b := by
sorry