Residue Theorem
Statement
Let be meromorphic inside and on a simple closed contour (traversed counterclockwise), with isolated poles inside . Then:
For a simple pole at , the residue is .
Visualization
Example 1: , contour .
Example 2: , contour .
Poles at and , both inside .
| Pole | Residue | |
|---|---|---|
| <span class="math-inline" data-latex="\frac{1}{z+i}\big | _{z=i} = \frac{1}{2i}"> | |
| <span class="math-inline" data-latex="\frac{1}{z-i}\big | _{z=-i} = \frac{1}{-2i}"> |
Sum of residues , so:
Example 3: , contour .
Pole at of order 2. Residue , so the integral .
Proof Sketch
- Isolate each pole with a small disk of radius ; deform to avoid them.
- On the deformed region, is holomorphic, so the integral is unchanged and equals the sum of integrals over small circles .
- For a simple pole, Laurent expand: where is holomorphic. The circle integral of vanishes; the integral of is .
- Sum over all poles.
Connections
The Residue Theorem is the Cauchy Integral Formula applied iteratively — it extends Cauchy Integral FormulaCauchy Integral FormulaA holomorphic function's value at any interior point is determined by its values on the boundary circle.Read more → to meromorphic functions. It connects to Liouville's TheoremLiouville's TheoremA bounded entire function on ℂ must be constant — complex differentiability is far more rigid than real differentiabilityRead more →: an entire function with a "residue at infinity" forces non-constancy.
Lean4 Proof
import Mathlib.Analysis.Complex.CauchyIntegral
open Complex MeasureTheory
/-- **Residue formula for a simple pole**: the circle integral of f(z)/(z - a)
equals 2πi · f(a) when f is holomorphic on the closed disk.
This is the Residue Theorem for a single simple pole, derived directly
from the Cauchy Integral Formula in Mathlib. -/
theorem residue_simple_pole {R : ℝ} {c a : ℂ} {f : ℂ → ℂ}
(hf : DiffContOnCl ℂ f (Metric.ball c R))
(ha : a ∈ Metric.ball c R) :
∮ z in C(c, R), (z - a)⁻¹ • f z = (2 * π * Complex.I) • f a :=
hf.circleIntegral_sub_inv_smul haReferenced by
- Argument PrincipleComplex Analysis