Integrals of -forms depend only on the alternation of the coefficients
ProvedRudin.ch10_integral_alternationanalysisdifferential-forms
Rudin presents a -form in by a family of coefficient functions indexed by all tuples , the indices ranging independently from to , and defines its integral over a -surface with parameter domain by
Because a Jacobian changes sign when two of its rows are interchanged, and vanishes when an index is repeated, this number depends on the coefficients only through their alternations
The statement asserts precisely this: if two -forms have, at every point of a set and for every index tuple , the same alternating sum , then for every -surface whose parameter simplex is mapped into . No continuity or integrability hypothesis is needed: the two integrands coincide at every point of the parameter domain.
Preamble
import Mathlib import Definitions.Def_Rudin_ch10_forms open Filter Topology MeasureTheory
Formal statement
namespace Rudin
/-- Rudin, Chapter 10, equations (35) and (38)–(39): the integral of a `k`-form over a
`k`-surface depends on the coefficients only through their alternations. If two `k`-forms have,
at every point of a set `E`, the same alternating sum
`∑_σ (sgn σ) a_{i∘σ}` for every index tuple `i`, then they have the same integral over every
`k`-surface whose parameter simplex is mapped into `E`. -/
theorem ch10_integral_alternation (k n : ℕ) (E : Set (Fin n → ℝ)) (ω₁ ω₂ : KForm k n)
(halt : ∀ x ∈ E, ∀ i : Fin k → Fin n,
∑ σ : Equiv.Perm (Fin k), (Equiv.Perm.sign σ : ℝ) * ω₁.coeff (fun r => i (σ r)) x
= ∑ σ : Equiv.Perm (Fin k), (Equiv.Perm.sign σ : ℝ) * ω₂.coeff (fun r => i (σ r)) x)
(Φ : SimplexSurface k n) (hΦ : ∀ u ∈ stdSimplex k, Φ.map u ∈ E) :
integralOverSimplex ω₁ Φ = integralOverSimplex ω₂ Φ := by sorry
end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 10, Definition 10.11 (equation (35)) and Sections 10.12-10.13 (the anticommutation relations), pp. 254-256