06.11.06 · riemann-surfaces / open-surfaces

Extremal length and the modulus of curve families

shipped3 tiersLean: none

Anchor (Master): Ahlfors-Beurling 1950 *Conformal invariants and function-theoretic null-sets* (Acta Math. 83); Ahlfors-Sario *Riemann Surfaces* Ch. II; Ahlfors *Conformal Invariants*; Lehto-Virtanen *Quasiconformal Mappings in the Plane*

Intuition Beginner

Imagine a flat region of the plane and a whole family of routes that cross it from one side to the other. Extremal length is a single number that measures how hard it is, on the whole, to get any route across. A wide and short channel is easy to cross, and gets a small extremal length. A long and thin corridor is hard to cross, and gets a large extremal length. The number rises with difficulty.

What makes this number special is that it ignores the artist who drew the region and keeps only its true shape. If you take the region and bend it with a conformal map — a map that preserves angles and small circles — the picture changes, the routes change, and yet the extremal length reads exactly the same. It is a ruler that bends along with the region but never changes its readings.

A useful picture is a river delta. The water has many channels to flow through. Where the delta is wide and the channels are short and fat, water crosses with ease, and the crossing has small extremal length. Where the delta narrows into one long thin run, water struggles, and the extremal length is large. The modulus is just the same information read upside down: it is one divided by the extremal length, so it is large where crossing is easy and small where crossing is hard.

Visual Beginner

A schematic of an annular region (a disc with a smaller disc removed from its centre) with several curves drawn going around the central hole, like rings on a tree stump. Beside it the same region is shown after a conformal map has straightened it into a rectangle, with the rings now horizontal lines and the radial direction the height of the rectangle. An arrow between the two pictures is labelled "same modulus": both pictures encode the one number that measures how thick the ring is.

Worked example Beginner

Take a flat rectangle that is units wide and unit tall. Consider the family of routes that cross it from the left edge to the right edge. The honest way to measure these routes is to use the rectangle's own flat ruler, with the metric weight set to everywhere.

The shortest such route is a straight horizontal segment, with length . The area of the rectangle is width times height, which is . The extremal length of the crossing family is the shortest length squared, divided by the area: , divided by , which is . So the left-to-right extremal length equals .

Now try the routes that go the other way, from the bottom edge to the top edge. The shortest is a vertical segment of length , the area is still , and the extremal length is divided by , which is .

What this tells us: the long way across (left to right, through the width ) is hard and scores ; the short way across (bottom to top, through the height ) is easy and scores . The two numbers multiply to . A rectangle's two crossing problems are reciprocals of each other, and the number is exactly the rectangle's aspect ratio.

Check your understanding Beginner

Formal definition Intermediate+

Let be a plane region and let be a family of (locally rectifiable) curves in . A conformal metric on is a Borel-measurable function , interpreted as the length element . For such a define the -length of the family and the -area by

The metric is admissible when . The extremal length of is the conformally invariant ratio

and the modulus is its reciprocal . The quotient is unchanged when is multiplied by a positive constant, so one may normalise either or without affecting the supremum. The definition follows Ahlfors-Sario Ch. II [Ahlfors and Sario Riemann Surfaces].

The construction follows the originating treatment of Ahlfors and Beurling, who isolated extremal length as the first systematically conformally invariant length-area functional [Ahlfors and Beurling 1950]. Two ordering relations organise the calculus of curve families. Write , and say overflows , when every curve contains a curve as a subcurve. The families are combined in series when each overflows one curve from every supported in disjoint subregions, and in parallel when the live in disjoint subregions and each lies in a single .

Counterexamples to common slips

  • The supremum is over all admissible , not over the flat metric alone; using only gives a lower bound for , never the value. The extremal-length number is attained by a specific extremal metric that is rarely constant.
  • is an infimum over the family before the supremum over metrics, so enlarging (adding more, possibly shorter, curves) can only decrease and hence decrease . A larger family is easier to cross, not harder.
  • The modulus and the extremal length are reciprocals, so the qualitative readings are opposite: easy-to-cross families have small and large . Mixing the two conventions inverts every inequality.

Key theorem with proof Intermediate+

Theorem (conformal invariance of extremal length). Let be a conformal (biholomorphic) map, and let be a curve family in with image family in . Then .

Proof. Let be any admissible metric on . Define a metric on by the pullback rule

For a curve with image , the change-of-variables formula for the line integral gives

so the two metrics assign equal lengths to corresponding curves, and therefore . For the areas, the Jacobian of the conformal map is , so

Hence . The pullback is a bijection between admissible metrics on the two regions (its inverse is the pullback along , using ), and it preserves the ratio term by term. Taking the supremum over admissible metrics on each side, the two suprema agree: .

Bridge. Conformal invariance is the foundational reason extremal length earns the name conformal invariant and builds toward the type problem for open Riemann surfaces, where the prerequisite exhaustion machinery of 06.11.03 feeds a divergent extremal-length series into a parabolicity criterion. The same pullback computation appears again in the proof that the modulus of a ring domain is the unique conformal invariant of an annulus, which is exactly the statement that biholomorphic annuli have equal radius ratios. The length-area exchange under the Jacobian generalises to the modulus of a quadrilateral, the quasiconformal distortion bound, and ultimately the Teichmüller extremal problem, where the extremal length of a measured foliation becomes a coordinate on Teichmüller space. Putting these together, the bridge is that a single length-area ratio, invariant under the maps of 06.01.06, simultaneously measures crossing difficulty, classifies ring domains, and detects the type of a surface; this is exactly the unifying role Ahlfors and Beurling assigned to the invariant when they introduced it.

Exercises Intermediate+

Lean formalization Intermediate+

Mathlib does not currently name conformal metrics on a plane region, the extremal-length functional, or the modulus of a ring domain. A proposed signature, in Lean 4 / Mathlib syntax, sketching the conformal-invariance target:

-- Sketch only; no current Mathlib coverage. See lean_mathlib_gap.
import Mathlib.MeasureTheory.Integral.Bochner
import Mathlib.Analysis.SpecialFunctions.Complex.Analytic

namespace Codex.RiemannSurfaces.OpenSurfaces

-- A conformal metric is a Borel-measurable density ρ : Ω → [0,∞].
-- L ρ Γ is the family-infimum of line integrals; A ρ the area integral.
variable {Ω Ω' : Set ℂ}

noncomputable def extremalLength
    (Γ : Set (ℝ → ℂ)) (Lfun : (ℂ → ENNReal) → ENNReal)
    (Afun : (ℂ → ENNReal) → ENNReal) : ENNReal :=
  ⨆ ρ, (Lfun ρ) ^ 2 / (Afun ρ)

-- Conformal invariance: a biholomorphism f : Ω → Ω' leaves extremal length fixed.
theorem extremalLength_conformal_invariant
    (f : ℂ → ℂ) (hf : Set.InjOn f Ω)
    (Γ : Set (ℝ → ℂ)) :
    extremalLength (fun γ => f ∘ γ '' Γ) LfunImage AfunImage
      = extremalLength Γ Lfun Afun := by
  sorry

end Codex.RiemannSurfaces.OpenSurfaces

The proof depends on names that do not currently exist in Mathlib: the line-integral length functional along rectifiable curves against a measurable density, the area integral as a Lebesgue integral, the family-infimum, and the change-of-variables identity together with the Jacobian area transform . Each is a candidate Mathlib contribution; until then this unit ships with lean_status: none.

Advanced results Master

The extremal length attains its supremum at a distinguished extremal metric, and on a ring or quadrilateral that metric is the flat metric of the conformal rectangle model. For an admissible metric and the separating family of an annulus, the length-area method bounds above by exhibiting a single competitor and below by Cauchy-Schwarz against the area; equality pins to a constant multiple of almost everywhere, and the extremal metric is unique up to scale. This uniqueness is the reason the modulus is a complete conformal invariant of a ring domain: two annuli are biholomorphic if and only if their radius ratios, equivalently their moduli , coincide [Ahlfors and Sario Riemann Surfaces].

Modulus of a quadrilateral. A quadrilateral is a Jordan domain with four marked boundary points, and the Riemann map of 06.01.06 carries onto a Euclidean rectangle with the marked points at the corners. The number is the modulus of the quadrilateral, and it equals the extremal length of the family of curves joining the two sides that map to the vertical edges. Because the rectangle model is determined up to similarity, is a conformal invariant, and it is the planar archetype of every later modulus: the modulus of a ring is the cylindrical quotient of the modulus of a quadrilateral cut along a crosscut.

Composition laws as a calculus. The series inequality for families overflowing disjoint subregions in series, and the parallel inequality for families confined to disjoint subregions, are dual reformulations of one length-area estimate, with equality precisely when the extremal metrics of the pieces agree on overlaps. Combined with the overflowing/comparison principle , these laws make extremal length a genuine calculus: one bounds an unknown modulus by decomposing a region into rings and quadrilaterals whose moduli are explicit, then composing in series and parallel. The Grötzsch inequality and the Teichmüller modulus estimate are the two extremal cases of this calculus, bounding the modulus of a ring whose complementary continua are pinched to a slit or a point.

Type criterion for open surfaces. On an open Riemann surface with a bordered exhaustion from 06.11.03, let be the family separating from . The surface is parabolic (its ideal boundary has zero capacity, equivalently carries no nonconstant negative subharmonic function and lies in the class ) precisely when the series diverges, placing the ideal boundary at infinite extremal distance from any interior point. Convergence places it at finite distance and forces hyperbolicity, with a nonconstant bounded harmonic function and a Green's function. This is the extremal-length form of the type problem, and it converts a global analytic dichotomy into a single series whose terms are computable ring moduli.

Synthesis. Extremal length is the foundational reason a length-area ratio can serve as both a metric and a classifier: the conformal-invariance theorem is exactly the statement that the ratio sees only the conformal class, and putting these together with the series and parallel laws yields a calculus in which the modulus of any region is built from ring and quadrilateral moduli. The central insight is that the modulus of the round annulus, , is simultaneously the unique invariant of a ring domain, the cylindrical model behind the modulus of a quadrilateral, and the per-ring term in the parabolicity series — three readings of one extremal metric . The type criterion generalises the planar reciprocal relation to the ideal boundary of an open surface, and is dual to the capacity dichotomy of 06.11.03; what the harmonic-measure side calls zero capacity, the extremal-length side calls a divergent modulus series. This is exactly the unification Ahlfors and Beurling intended when they made conformal invariants the organising language for function-theoretic null sets, and it builds toward the Teichmüller theory of moduli, where extremal lengths of measured foliations coordinate the space of complex structures.

Full proof set Master

Proposition (modulus of the round annulus). For the annulus and the family of curves separating the two boundary circles, the extremal length is , equivalently . The supremum is attained, uniquely up to scale, by the radial metric .

Proof. First a lower bound for . Take the competitor . Every separating curve winds once around the origin, so writing and parametrising, its -length is

since the imaginary part of is the change in argument, which is for a curve separating the circles. Hence , and the round circle attains it, so . The area is

Therefore .

For the matching upper bound, let be any admissible metric, normalised so that ; concretely require for almost every radius , which holds after normalisation because each circle is a separating curve. By the Cauchy-Schwarz inequality applied on the circle of radius , with ,

Dividing by and integrating over ,

so , that is . Then . Taking the supremum over gives , matching the lower bound, so . Equality in Cauchy-Schwarz forces to be independent of for almost every , and the normalisation then forces for a constant , establishing uniqueness of the extremal metric up to scale.

Proposition (conformal invariance). Stated and proved in the Intermediate-tier Key theorem section; the pullback preserves both termwise and via the Jacobian , and is a bijection on admissible metrics, so the suprema agree.

Proposition (series law). If overflows families in disjoint subregions arranged in series, then .

Proof. For each choose an admissible on the -th subregion realising within , normalised so and hence (rescale by , which multiplies by that factor and by its square). Define to equal on the -th subregion and elsewhere. Each overflows one curve from each , so , giving . The subregions are disjoint, so . Therefore .

Proposition (parallel law). If live in disjoint subregions and , then , equivalently .

Proof. Apply the series law to the dual families. Let be admissible for and let be its restriction to the -th subregion. Since every lies in a single subregion, , while by disjointness. Normalising for all makes and by definition of extremal length, so . Choosing near-extremal makes approach , so has infimal area , giving .

Proposition (overflowing/comparison principle). If , then .

Proof. Fix any admissible . Each contains a subcurve , and the integrand , so . Taking the infimum over gives , hence . Taking the supremum over yields .

Connections Master

  • Ideal boundary and exhaustions of an open Riemann surface 06.11.03. This unit supplies the conformal invariant that turns the exhaustion machinery into a type criterion: the extremal length of the family separating an interior boundary from the ideal boundary is the sum, in series, of the ring moduli of the exhaustion. Divergence of that series is the extremal-length form of the zero-capacity condition that 06.11.03 attaches to a parabolic ideal boundary, so the two units describe the same dichotomy through capacity and through modulus respectively.

  • Riemann mapping theorem 06.01.06. Conformal invariance of extremal length is exactly the statement that the Riemann map of 06.01.06 preserves the modulus; the rectangle model of a quadrilateral and the cylinder model of a ring are both produced by the Riemann/uniformisation map, and the resulting moduli are the conformal invariants those maps cannot change. The uniqueness clause of the mapping theorem is what makes the modulus a complete invariant of a ring domain.

  • Uniformization theorem 06.03.03. The parabolic/hyperbolic dichotomy detected by the extremal-length series is the open-surface refinement of the uniformisation trichotomy: a simply connected open surface is conformally (parabolic) or (hyperbolic) exactly as the modulus series of 06.11.03 diverges or converges, so extremal length is the quantitative diagnostic behind the uniformisation type.

  • Moduli of Riemann surfaces 06.08.03. Extremal lengths of simple closed curves and measured foliations are coordinates on Teichmüller space, and the Teichmüller extremal problem — minimising the maximal conformal distortion in an isotopy class — is solved by the metric that makes a measured foliation's extremal length minimal. The modulus calculus of this unit is the planar germ of the moduli-space coordinates studied there.

Historical & philosophical context Master

The method of length and area predates its conformal-invariant formulation: it appears in the work of Grötzsch on extremal quasiconformal mappings in the late 1920s and in Teichmüller's 1930s extremal problems, where the modulus of a ring quantified the distortion of a mapping. Lars Ahlfors and Arne Beurling distilled these scattered length-area arguments into a single conformally invariant functional in their 1950 paper Conformal invariants and function-theoretic null-sets [Ahlfors and Beurling 1950] (Acta Mathematica 83, pp. 101–129), which set extremal length and the associated capacities against the problem of characterising the removable sets for bounded analytic functions. Their paper named the supremum over admissible metrics as the basic invariant and proved that its conformal invariance follows from the length-area exchange under a holomorphic Jacobian, the computation reproduced in the Key theorem above.

The systematic application to open Riemann surfaces is the work of Ahlfors and Leo Sario, whose 1960 monograph Riemann Surfaces [Ahlfors and Sario Riemann Surfaces] (Princeton University Press) organised the classification theory of non-compact surfaces around extremal length, modulus, and capacity, producing the null-classes and the parabolicity criterion through divergence of a modulus series. The quasiconformal lineage — Grötzsch 1928, Teichmüller 1939, and the modulus-of-a-quadrilateral distortion theory codified by Olli Lehto and Kalle Virtanen in Quasiconformal Mappings in the Plane [Lehto and Virtanen Quasiconformal Mappings] (Springer 1973) — established the modulus of a ring and a quadrilateral as the controlling quasiconformal invariant, the quantity whose bounded distortion defines a quasiconformal map. Ahlfors returned to the subject in his 1973 lectures Conformal Invariants [Ahlfors Conformal Invariants], which present extremal length as the unifying device of geometric function theory.

Bibliography Master

@article{AhlforsBeurling1950,
  author  = {Ahlfors, Lars and Beurling, Arne},
  title   = {Conformal invariants and function-theoretic null-sets},
  journal = {Acta Mathematica},
  volume  = {83},
  year    = {1950},
  pages   = {101--129}
}

@book{AhlforsSarioRiemannSurfaces,
  author    = {Ahlfors, Lars V. and Sario, Leo},
  title     = {Riemann Surfaces},
  series    = {Princeton Mathematical Series},
  volume    = {26},
  publisher = {Princeton University Press},
  year      = {1960}
}

@book{AhlforsConformalInvariants,
  author    = {Ahlfors, Lars V.},
  title     = {Conformal Invariants: Topics in Geometric Function Theory},
  publisher = {McGraw-Hill},
  year      = {1973}
}

@book{LehtoVirtanen1973,
  author    = {Lehto, Olli and Virtanen, K. I.},
  title     = {Quasiconformal Mappings in the Plane},
  series    = {Grundlehren der mathematischen Wissenschaften},
  volume    = {126},
  edition   = {2nd},
  publisher = {Springer},
  year      = {1973}
}

@article{Teichmuller1939,
  author  = {Teichm{\"u}ller, Oswald},
  title   = {Extremale quasikonforme Abbildungen und quadratische Differentiale},
  journal = {Abh. Preuss. Akad. Wiss. Math.-Nat. Kl.},
  volume  = {22},
  year    = {1939},
  pages   = {1--197}
}

@article{Grotzsch1928,
  author  = {Gr{\"o}tzsch, Herbert},
  title   = {{\"U}ber einige Extremalprobleme der konformen Abbildung},
  journal = {Ber. Verh. S{\"a}chs. Akad. Wiss. Leipzig Math.-Phys. Kl.},
  volume  = {80},
  year    = {1928},
  pages   = {367--376}
}

@book{Vaisala1971,
  author    = {V{\"a}is{\"a}l{\"a}, Jussi},
  title     = {Lectures on $n$-dimensional Quasiconformal Mappings},
  series    = {Lecture Notes in Mathematics},
  volume    = {229},
  publisher = {Springer},
  year      = {1971}
}