Theorem 10.39 — Poincaré's lemma
ProvedRudin.ch10_poincare_lemmaIf is convex and open and is a closed -form of class in with , then is exact: for some -form of class in . Closedness and exactness are stated through integrals over surfaces contained in .
import Mathlib import Definitions.Def_Rudin_ch10_forms open Filter Topology MeasureTheory
namespace Rudin
/-- Rudin, Theorem 10.39 (Poincaré's lemma): on a convex open set every closed form of positive
order and class `C'` is exact. Closedness and exactness are expressed through integrals over
surfaces lying in `E`, since a form is determined by those integrals. -/
theorem ch10_poincare_lemma (m n : ℕ) (E : Set (Fin n → ℝ)) (hE : IsOpen E) (hconv : Convex ℝ E)
(ω : KForm (m + 1) n) (hω : ∀ i, ContDiffOn ℝ 1 (ω.coeff i) E)
(hclosed : ∀ Φ : SimplexSurface (m + 1 + 1) n, ContDiff ℝ 1 Φ.map →
(∀ u, Φ.map u ∈ E) → integralOverSimplex (extDeriv ω) Φ = 0) :
∃ η : KForm m n, (∀ i, ContDiffOn ℝ 1 (η.coeff i) E) ∧
∀ Φ : SimplexSurface (m + 1) n, ContDiff ℝ 1 Φ.map → (∀ u, Φ.map u ∈ E) →
integralOverSimplex ω Φ = integralOverSimplex (extDeriv η) Φ := by sorry
end RudinRead-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let , let be open and convex, and let be an -form in (so of order at least ) whose coefficient functions are all continuously differentiable of order on . Assume is closed in the integral sense: for every simplex -surface that is continuously differentiable of order and whose map sends every point of into , one has .
Then there exists an -form in such that:
- all coefficients of are continuously differentiable of order on ;
- for every simplex -surface that is continuously differentiable of order with image contained in (again, the map sends all of into ),
Note that the containment condition is imposed on the whole map, not only on its restriction to the standard simplex , which restricts the class of test surfaces; exactness is asserted only through equality of integrals over such surfaces, not as an identity of coefficient functions.
Confirmed by the mission captain (proposal self-audit).