Theorem 10.20 —
ProvedRudin.ch10_dd_zeroIf is a -form of class , then : the integral of over every -surface is zero.
import Mathlib import Definitions.Def_Rudin_ch10_forms open Filter Topology MeasureTheory
namespace Rudin
/-- Rudin, Theorem 10.20: `d(dω) = 0` for every form `ω` of class `C''`; as forms are
functionals on surfaces, this says that the integral of `d(dω)` over every surface vanishes. -/
theorem ch10_dd_zero (k n : ℕ) (ω : KForm k n) (hω : ∀ i, ContDiff ℝ 2 (ω.coeff i))
(Φ : SimplexSurface (k + 2) n) (hΦ : ContDiff ℝ 1 Φ.map) :
integralOverSimplex (extDeriv (extDeriv ω)) Φ = 0 := by sorry
end RudinRead-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let and let be a -form in (a coefficient function for every index tuple ) all of whose coefficients are twice continuously differentiable on all of . Let be a simplex -surface, i.e. a map , which is continuously differentiable of order . Then
that is, the number
is zero, the sum running over all index tuples , the integral being over the standard simplex , and being the exterior derivative that differentiates each coefficient in the direction named by the first index.
The vanishing is asserted for this one surface integral (for every such , since is universally quantified), not as an identity of coefficient functions.
Confirmed by the mission captain (proposal self-audit).