Update complexHarmonic.lean

This commit is contained in:
Stefan Kebekus
2024-05-02 17:55:26 +02:00
parent b9a973d10d
commit f239759275

View File

@@ -17,18 +17,6 @@ noncomputable def Complex.laplace : () → () := by
def Harmonic (f : ) : Prop :=
(ContDiff 2 f) ( z, Complex.laplace f z = 0)
#check contDiff_iff_ftaylorSeries.2
lemma c2_if_holomorphic (f : ) : Differentiable f ContDiff 2 f := by
intro fHyp
exact Differentiable.contDiff fHyp
lemma c2R_if_holomorphic (f : ) : Differentiable f ContDiff 2 f := by
intro fHyp
let ZZ := c2_if_holomorphic f fHyp
apply ContDiff.restrict_scalars ZZ
theorem re_comp_holomorphic_is_harmonic (f : ) :
Differentiable f Harmonic (Complex.reCLM f) := by
@@ -41,7 +29,7 @@ theorem re_comp_holomorphic_is_harmonic (f : ) :
· -- Complex.reCLM is two times real continuously differentiable
exact ContinuousLinearMap.contDiff Complex.reCLM
· -- f is two times real continuously differentiable
exact c2R_if_holomorphic f h
exact ContDiff.restrict_scalars (Differentiable.contDiff h)
· -- Laplace of f is zero
intro z