Cauchy Integral Formula
Statement
Let be holomorphic on a closed disk and let be any interior point. Then:
Equivalently, the smeared form:
holds whenever is holomorphic on the open disk and continuous on the closure.
Visualization
Take (constant), , , . The formula predicts:
Parameterize: , .
theta: 0 pi/2 pi 3pi/2 2pi
z: 1 i -1 -i 1
1/z: 1 -i -1 i 1
Dividing by gives . Confirmed.
For with and : the integrand has no residue at when , so the integral is only when . For inside the disk, the formula reconstructs from boundary values.
Proof Sketch
- For outside the contour, is holomorphic everywhere inside, so the integral vanishes by Cauchy's theorem.
- For inside, write .
- The first term extends continuously to (holomorphicity of at ), so its integral over a small circle around tends to .
- The second term contributes .
- Deformation of contour (the integral is unchanged when deforming through regions where is holomorphic) finishes the proof.
Connections
The formula is the engine behind Liouville's TheoremLiouville's TheoremA bounded entire function on ℂ must be constant — complex differentiability is far more rigid than real differentiabilityRead more → (bounded entire functions are constant) and the Fundamental Theorem of AlgebraFundamental Theorem of AlgebraEvery non-constant polynomial with complex coefficients has at least one root in ℂRead more → (non-constant polynomials have roots). It also drives Taylor's TheoremTaylor's TheoremApproximate smooth functions by polynomials with explicit error boundsRead more → for complex functions: differentiating under the integral sign yields power series coefficients.
Lean4 Proof
import Mathlib.Analysis.Complex.CauchyIntegral
open Complex MeasureTheory
/-- **Cauchy Integral Formula**: for `f` holomorphic on a closed disk,
the value at any interior point `w` is recovered from the circle integral.
Uses `DiffContOnCl.circleIntegral_sub_inv_smul` from Mathlib. -/
theorem cauchy_integral_formula {R : ℝ} {c w : ℂ} {f : ℂ → ℂ}
(hf : DiffContOnCl ℂ f (Metric.ball c R))
(hw : w ∈ Metric.ball c R) :
((2 * Real.pi * Complex.I)⁻¹ • ∮ z in C(c, R), (z - w)⁻¹ • f z) = f w :=
hf.two_pi_i_inv_smul_circleIntegral_sub_inv_smul hwReferenced by
- Schwarz LemmaComplex Analysis
- Maximum Modulus PrincipleComplex Analysis
- Morera's TheoremComplex Analysis
- Argument PrincipleComplex Analysis
- Residue TheoremComplex Analysis
- Identity Theorem (Analytic Continuation)Complex Analysis