Uniqueness in the reconstruction theorem
ProvedHairer.reconstruction_uniquenessUniqueness clause of Hairer's Theorem 3.10.
In the setting of the reconstruction theorem with , let and suppose that two distributions and both satisfy the reconstruction bound: for every compact there is a constant with
uniformly over , and . Then .
This is the part of Theorem 3.10 that does not require the wavelet construction: the difference is tested against localised test functions at scale and the resulting bound, with , forces it to vanish.
import Definitions.Def_Hairer_Model set_option autoImplicit false open scoped Classical DirectSum noncomputable section
namespace Hairer
/-- **Theorem 3.10 (uniqueness clause), Hairer 2014.**
If `γ > 0`, the bound (3.3) determines the reconstruction of a modelled distribution
uniquely: two distributions that are both approximated by the jets `Π_x f(x)` to order
`δ^γ` on every compact set coincide. -/
theorem reconstruction_uniqueness
{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 : 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)
{γ : ℝ} (hγ : 0 < γ)
{f : Pt d → ModelSpace A E} (hf : IsModelled s γ Gam f)
(ξ ζ : Distrib d)
(hξ : ∀ K : Set (Pt d), IsCompact K → ∃ C : ℝ, ∀ x ∈ K, ∀ δ : ℝ, 0 < δ → δ ≤ 1 →
∀ η : Pt d → ℝ, IsTestBall s r η →
|(ξ - Pi x (f x)).eval (scaledTest s δ x η)| ≤ C * δ ^ γ)
(hζ : ∀ K : Set (Pt d), IsCompact K → ∃ C : ℝ, ∀ x ∈ K, ∀ δ : ℝ, 0 < δ → δ ≤ 1 →
∀ η : Pt d → ℝ, IsTestBall s r η →
|(ζ - Pi x (f x)).eval (scaledTest s δ x η)| ≤ C * δ ^ γ) :
ξ = ζ := by
sorry
end Hairer
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
The ambient data are as follows: a dimension and a tuple of natural numbers with for all ; a set and a family of real normed spaces, with the algebraic direct sum, its projections and its inclusions; a subgroup of linear automorphisms of and an element satisfying the regularity-structure axioms (, bounded below and finite below every level, , purely of degree , the triangularity for , and ); a natural number and maps forming a model in the sense recalled by the model axioms ( least with ; ; ; ; ; and the two uniform analytic bounds on and over compact sets). Assume also and that is modelled of order : all components of in degrees vanish, and on each compact set one constant controls both and for and .
Let and be two distributions — linear functionals on the space of smooth compactly supported functions, with no continuity requirement — and assume each of them approximates the local jets of to order : for every compact there is a real constant (depending only on and on the distribution in question) such that
for all , all and all in the class of smooth functions whose closed support lies in and whose iterated Fréchet derivatives of every order have norm at most at every point.
The conclusion is the equality of the two linear functionals.
Here is the function , the pairing of a distribution with a function returns whenever the function is not smooth with compact support, and is a real power. The constants are not required to be nonnegative, and the test class contains the zero function. The regularity exponent plays no role in this statement; only is assumed.
Confirmed by the mission captain (proposal self-audit).