on is determined by (Hairer, Proposition 3.31)
ProvedHairer.pi_determined_by_gammaProposition 3.31 of Hairer (2014), determinacy statement.
Let be an element of the index set . The action of on the homogeneous component is completely determined by together with the action of on lower homogeneities: if and are two models for the same regularity structure, with the same , and if for every and every with , then for every and every .
The mechanism is that for positive homogeneity the distribution is forced to be the reconstruction of the modelled distribution minus its lower-order part, so no freedom is left once and the lower levels are fixed. Hairer states the result together with the quantitative bound (3.42) on the component of in terms of the model norms; the content formalized here is the determinacy assertion.
import Definitions.Def_Hairer_Model set_option autoImplicit false open scoped Classical DirectSum noncomputable section
namespace Hairer
/-- **Proposition 3.31, Hairer 2014.**
For `ν > 0`, the action of `Π` on `T_ν` is completely determined by its action on
`T_{<ν}` together with `Γ`: two models for the same regularity structure that share
the same `Γ` and whose `Π`-maps agree on all homogeneities strictly below `ν` also
agree on `T_ν`. -/
theorem pi_determined_by_gamma
{d : ℕ} {s : Fin d → ℕ} (hs : IsScaling s)
{A : Set ℝ} {E : A → Type} [∀ a : A, NormedAddCommGroup (E a)]
[∀ a : A, NormedSpace ℝ (E a)]
{G : Subgroup (ModelSpace A E ≃ₗ[ℝ] ModelSpace A E)} {one : ModelSpace A E}
(hT : IsRegularityStructure A E G one)
{r : ℕ} {Pi Pi' : Pt d → ModelSpace A E →ₗ[ℝ] Distrib d}
{Gam : Pt d → Pt d → ModelSpace A E ≃ₗ[ℝ] ModelSpace A E}
(hmod : IsModel s r G Pi Gam) (hmod' : IsModel s r G Pi' Gam)
{ν : ℝ} (hν : 0 < ν) (hνA : ν ∈ A)
(hlow : ∀ (b : A), (b : ℝ) < ν → ∀ (a : E b), ∀ x : Pt d,
Pi x (incl b a) = Pi' x (incl b a)) :
∀ (a : E (⟨ν, hνA⟩ : A)), ∀ x : Pt d,
Pi x (incl (⟨ν, hνA⟩ : A) a) = Pi' x (incl (⟨ν, hνA⟩ : A) a) := by
sorry
end Hairer
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Fix a dimension and a tuple of natural numbers with for every index; a set with real normed spaces and the algebraic direct sum , with inclusions ; a subgroup of the linear automorphisms of and a unit making a regularity structure (in particular , is bounded below and finite below each level, , and every fixes and satisfies the triangularity condition).
Let be a natural number, let be a single family of automorphisms , and let and be two assignments of linear maps such that both and are models with the same test order and the same : each satisfies , , , the compatibility (respectively ), and the two uniform bounds
valid on each compact set for all degrees (any ), , and test functions .
Assume a real number with and , and assume that and agree in all strictly lower degrees:
The conclusion is that they also agree in degree : for every and every point ,
as linear functionals on smooth compactly supported functions.
The equalities asserted and assumed are equalities of distributions in the sense used here, namely of arbitrary linear functionals on the space of smooth compactly supported test functions (no continuity requirement enters). Only elements of the single homogeneous component , injected into , are compared; nothing is claimed about non-homogeneous elements beyond what linearity and the lower-degree hypothesis give. The hypothesis on lower degrees ranges over all strictly below , including negative ones.
Confirmed by the mission captain (proposal self-audit).