Messing around

This commit is contained in:
Stefan Kebekus 2024-04-23 10:03:36 +02:00
parent a5ce6034de
commit e37ef6da16
1 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,17 @@
import Mathlib.Topology.Basic import Mathlib.Analysis.Complex.CauchyIntegral
#check TopologicalSpace #check DiffContOnCl.circleIntegral_sub_inv_smul
theorem CauchyIntegralFormula :
{R : } -- Radius of the ball
{w : } -- Point in the interior of the ball
{f : }, -- Holomorphic function
DiffContOnCl f (Metric.ball 0 R)
→ w ∈ Metric.ball 0 R
→ (∮ (z : ) in C(0, R), (z - w)⁻¹ • f z) = (2 * Real.pi * Complex.I) • f w := by
exact DiffContOnCl.circleIntegral_sub_inv_smul
#check CauchyIntegralFormula