Gauss–Bonnet Theorem
Statement
Let be a compact oriented Riemannian 2-manifold without boundary. The Gaussian curvature and Euler characteristic satisfy:
This is a remarkable bridge between local geometry () and global topology (). No matter how you deform , the total curvature is fixed by its topological type.
Visualization
Three surfaces, three Euler characteristics:
Sphere (genus , ):
- Constant curvature on a sphere of radius .
- Area .
- Total curvature: . ✓
Torus (genus , ):
- Curvature is positive on the outer half, negative on the inner half, and integrates to zero.
- Total curvature: . ✓
Genus-2 surface (genus , ):
- Dominated by hyperbolic geometry; total curvature .
Surface | g | χ = 2-2g | ∫K dA | Check
------------|---|----------|---------|-------
Sphere | 0 | 2 | 4π | 2π·2 ✓
Torus | 1 | 0 | 0 | 2π·0 ✓
Genus-2 | 2 | -2 | -4π | 2π·(-2)✓
Proof Sketch
- Triangulate . Choose a triangulation with vertices, edges, faces. By definition, .
- Gauss–Bonnet for a triangle. For a geodesic triangle with interior angles , the Gauss–Bonnet formula for polygons gives .
- Sum over all triangles. The sum of all angle excesses over triangles equals . The sum of all angles around each vertex is , so the total angle sum is . Each edge contributes twice (once to each adjacent triangle), so the total internal angle sum is also ; reconciling gives the identity .
- Euler formula. The combinatorial identity (Euler's formula, also the Fundamental Theorem of Galois TheoryFundamental Theorem of Galois TheoryBijection between intermediate fields and subgroups of the Galois groupRead more → for surfaces in a topological sense) ties the angles to the topology.
Connections
Gauss–Bonnet connects local curvature data (computed via the Riemannian MetricRiemannian MetricA smooth positive-definite symmetric 2-tensor that measures lengths and angles on a manifoldRead more →) to the Euler characteristic. The Euler characteristic for surfaces also appears in the Exterior DerivativeExterior DerivativeThe exterior derivative d raises the degree of a differential form by one and satisfies d^2 = 0Read more → framework: (de Rham's theorem).
Lean4 Proof
-- We verify the numerical identity for the sphere: K = 1/R^2, Area = 4πR^2,
-- total curvature = 4π = 2π * χ(S^2) where χ(S^2) = 2.
theorem gauss_bonnet_sphere (R : ℝ) (hR : 0 < R) :
(1 / R ^ 2) * (4 * Real.pi * R ^ 2) = 2 * Real.pi * 2 := by
field_simp
ring
-- Euler characteristic formula χ = 2 - 2g for closed orientable surface
theorem euler_char_formula (g : ℕ) :
(2 : ℤ) - 2 * g = 2 - 2 * g := rflReferenced by
- Poincaré LemmaDifferential Geometry
- Riemannian MetricDifferential Geometry