This commit is contained in:
Stefan Kebekus
2024-05-15 15:31:57 +02:00
parent 4ff9c41ae3
commit 1c34aee7be
2 changed files with 10 additions and 3 deletions

View File

@@ -254,11 +254,10 @@ theorem logabs_of_holomorphic_is_harmonic
rfl
rw [this]
have : ContDiff 2 (Complex.log f) := by sorry
have : Complex.laplace (Complex.imCLM f) = Complex.imCLM Complex.laplace (f) := by
apply laplace_compContLin
have : Complex.laplace (Complex.conjCLE f) = Complex.conjCLE Complex.laplace (f) := by
sorry
rw [laplace_compContLin this]
sorry

View File

@@ -72,3 +72,11 @@ theorem laplace_compContLin {f : → F} {l : F →L[] G} (h : ContDiff
exact h.differentiable one_le_two
exact (partialDeriv_contDiff h 1).differentiable le_rfl
exact h.differentiable one_le_two
theorem laplace_compCLE {f : F} {l : F L[] G} (h : ContDiff 2 f) :
Complex.laplace (l f) = l (Complex.laplace f) := by
let l' := (l : F L[] G)
have : Complex.laplace (l' f) = l' (Complex.laplace f) := by
exact laplace_compContLin h
exact this