A Harmonic replacement unique
DeGiorgi.aHarmonic_replacement_unique
Plain-language statement
A-harmonic replacements are unique up to a.e. equality.
Exact Lean statement
theorem aHarmonic_replacement_unique
{Ω : Set E} (hd : 2 ≤ d)
(hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω)
{u h₁ h₂ : E → ℝ}
(A : EllipticCoeff d Ω)
(hu : MemW1p 2 u Ω)
(hh₁ : IsHomogeneousWeakSolution A h₁)
(hdiff₁ : MemW01p 2 (fun x => h₁ x - u x) Ω)
(hh₂ : IsHomogeneousWeakSolution A h₂)
(hdiff₂ : MemW01p 2 (fun x => h₂ x - u x) Ω) :
h₁ =ᵐ[volume.restrict Ω] h₂Formal artifact
Lean source
theorem aHarmonic_replacement_unique {Ω : Set E} (hd : 2 ≤ d) (hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω) {u h₁ h₂ : E → ℝ} (A : EllipticCoeff d Ω) (hu : MemW1p 2 u Ω) (hh₁ : IsHomogeneousWeakSolution A h₁) (hdiff₁ : MemW01p 2 (fun x => h₁ x - u x) Ω) (hh₂ : IsHomogeneousWeakSolution A h₂) (hdiff₂ : MemW01p 2 (fun x => h₂ x - u x) Ω) : h₁ =ᵐ[volume.restrict Ω] h₂ := by have hF0 : MemLp (fun _ : E => (0 : E)) 2 (volume.restrict Ω) := by exact MeasureTheory.MemLp.zero' (p := (2 : ENNReal)) (μ := volume.restrict Ω) have hs₁ : IsDirichletWeakSolutionOfDivergenceData A u (fun _ : E => (0 : E)) h₁ := by refine ⟨hh₁.left, hdiff₁, ?_⟩ intro hh φ hφ hφw simpa [divergenceRHSOfField, divergenceRHSIntegrandOfField] using hh₁.right hh φ hφ hφw have hs₂ : IsDirichletWeakSolutionOfDivergenceData A u (fun _ : E => (0 : E)) h₂ := by refine ⟨hh₂.left, hdiff₂, ?_⟩ intro hh φ hφ hφw simpa [divergenceRHSOfField, divergenceRHSIntegrandOfField] using hh₂.right hh φ hφ hφw exact dirichletProblem_unique_of_divergenceData hd hΩ hΩ_bdd A hu hF0 hs₁ hs₂- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/WeakFormulation/ExistenceTheory.lean:1236-1257
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Ae eq of tendsto e Lp Norm sub
BareFunction.ae_eq_of_tendsto_eLpNorm_sub
Plain-language statement
Lp limit uniqueness: if f_n → g₁ and f_n → g₂ in eLpNorm, then g₁ =ᵐ g₂.
Source project: DeGiorgi
Person-level attribution pending.
E Lp Norm pi le sum component
BareFunction.eLpNorm_pi_le_sum_component
Plain-language statement
Vector eLpNorm ≤ sum of component eLpNorms for Pi-valued functions. Uses eLpNorm_mono_real for the pointwise bound together with eLpNorm_sum_le for ℝ-valued functions, avoiding Pi instance synthesis.
Source project: DeGiorgi
Person-level attribution pending.
Mem Lp of tendsto e Lp Norm
BareFunction.memLp_of_tendsto_eLpNorm
Plain-language statement
If f n → g in eLpNorm and each f n ∈ Lp, then g ∈ Lp, provided g is AEStronglyMeasurable. Avoids the Lp type entirely. The key observation: eLpNorm (f n - g) → 0 means eLpNorm (f N - g) < 1 for some N. Then eLpNorm g ≤ eLpNorm (f N - g) + eLpNorm (f N) < ∞.
Source project: DeGiorgi
Person-level attribution pending.