Theorem 10.25 — integration and pullback
ProvedRudin.ch10_pullback_integralanalysisdifferential-forms
If is a -surface in and is a -mapping into , then for every -form .
Preamble
import Mathlib import Definitions.Def_Rudin_ch10_forms open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Theorem 10.25: integrating a form over the image surface `T ∘ Φ` is the same as
integrating its pullback over `Φ`. -/
theorem ch10_pullback_integral (k m n : ℕ) (T : (Fin m → ℝ) → (Fin n → ℝ))
(hT : ContDiff ℝ 1 T) (ω : KForm k n) (Φ : SimplexSurface k m) (hΦ : ContDiff ℝ 1 Φ.map) :
integralOverSimplex ω ⟨T ∘ Φ.map⟩ = integralOverSimplex (pullback T ω) Φ := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 10, p. 265, Theorem 10.25
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let , let be continuously differentiable of order on all of , let be a -form in (arbitrary coefficient functions, no regularity assumed), and let be a simplex -surface in that is continuously differentiable of order . Then
where on the left the composite is regarded as a simplex -surface in , and on the right is the pullback form with coefficients . Both sides are integrals over the standard simplex of the corresponding sum of coefficient-times-Jacobian terms.
Human review
Confirmed by the mission captain (proposal self-audit).