Existing in Mathlib · Complex analysis
Cauchy Integral Formula
For a holomorphic function on and inside a circle, every interior value is encoded by the function's values around the boundary, weighted by the reciprocal displacement from the interior point.
- holomorphic functions
- circle integrals
- Cauchy kernel
- boundary reconstruction
- complex Banach spaces
Exact theorem
Exact Mathlib statement
theorem DifferentiableOn.circleIntegral_sub_inv_smul {E : Type*} [NormedAddCommGroup E] [NormedSpace ℂ E] [CompleteSpace E] {R : ℝ} {c w : ℂ} {f : ℂ → E} (hd : DifferentiableOn ℂ f (Metric.closedBall c R)) (hw : w ∈ Metric.ball c R) : (∮ z in C(c, R), (z - w)⁻¹ • f z) = (2 * Real.pi * Complex.I : ℂ) • f wThe theorem at a glance
Cauchy Integral Formula at a glance
A visual guide to the theorem's hypotheses, structure, and conclusion; the exact statement gives the formal detail.
Cauchy Integral Formula at a glance

Detailed visual description
The poster makes the disk, interior point, oriented boundary, Cauchy kernel, and vector-valued endpoint explicit. A central equation connects the boundary integral to 2πi times the interior value, with a footer excluding higher derivatives and general-contour variants.
Statement structure
Statement and scope
Read the exact Mathlib declaration
This map summarizes the statement's structure; the exact Mathlib declaration remains authoritative.
Boundary-to-interior Cauchy reconstruction schematic

Detailed visual description
A precise gold boundary circle surrounds an emerald interior point. Ivory samples around the circumference connect through cobalt reciprocal-displacement rays that combine coherently at the interior point, emphasizing the full boundary integral and not a finite sampling rule.
Why it matters
A mathematical landmark
Cauchy's integral formula is a defining bridge in complex analysis: boundary data controls interior values and leads to analyticity, derivative formulas, and rigidity theorems. Mathlib's selected declaration gives a vector-valued circle form in a complex Banach space.
ProofAtlas record
What has been checked
Mathlib is the source of the theorem; the local Lean replay and page review are separate.
Claim boundary
No new theorem is claimed
This page indexes Mathlib's circle Cauchy-integral formula for a function from ℂ to a complex Banach space that is complex differentiable on the entire closed ball. For an interior point w, it identifies the boundary circle integral of (z-w)⁻¹ • f(z) with 2πi • f(w). It is not the higher-derivative formula, a general-contour winding-number theorem, or a statement with differentiability only on the open disk.
- Proof Atlas did not originate Cauchy's integral formula or Mathlib's declaration.
- The selected declaration is the closed-disk, circle-integral, complex-Banach-space-valued form with its exact differentiability hypothesis.
- The generated explanation and visuals are not proof evidence.
Source and local evidence
Where the theorem comes from
- Existing declaration
DifferentiableOn.circleIntegral_sub_inv_smulin mathlib- Relationship
- The checked artifact is the upstream declaration itself
- Local Lean evidence
artifact.library.mathlib.cauchy-integral-formula.v001