Is Weak Solution sub Datum of dirichlet Problem
DeGiorgi.isWeakSolution_subDatum_of_dirichletProblem
Plain-language statement
A Dirichlet solution lifts to a zero-boundary weak solution for the shifted unknown u - u₀.
Exact Lean statement
theorem isWeakSolution_subDatum_of_dirichletProblem
{Ω : Set E}
(hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω)
(A : EllipticCoeff d Ω)
{u₀ : E → ℝ} (hu₀ : MemW1p 2 u₀ Ω)
{F : E → E} {u : E → ℝ}
(hu : IsDirichletWeakSolutionOfDivergenceData A u₀ F u) :
IsWeakSolution (d := d)
⟨Ω, hΩ, hΩ_bdd, A,
weakProblemRHSOfFieldAndDatum (A := A) (Ω := Ω) F
(DeGiorgi.MemW1p.someWitness hu₀)⟩
(fun x => u x - u₀ x)Formal artifact
Lean source
theorem isWeakSolution_subDatum_of_dirichletProblem {Ω : Set E} (hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω) (A : EllipticCoeff d Ω) {u₀ : E → ℝ} (hu₀ : MemW1p 2 u₀ Ω) {F : E → E} {u : E → ℝ} (hu : IsDirichletWeakSolutionOfDivergenceData A u₀ F u) : IsWeakSolution (d := d) ⟨Ω, hΩ, hΩ_bdd, A, weakProblemRHSOfFieldAndDatum (A := A) (Ω := Ω) F (DeGiorgi.MemW1p.someWitness hu₀)⟩ (fun x => u x - u₀ x) := by let hu₀w : MemW1pWitness 2 u₀ Ω := DeGiorgi.MemW1p.someWitness hu₀ let huu : MemW1pWitness 2 u Ω := DeGiorgi.MemW1p.someWitness hu.left let hsub_add : MemW1pWitness 2 (fun x => u x + (-1) * u₀ x) Ω := huu.add (hu₀w.smul (-1)) let hsub : MemW1pWitness 2 (fun x => u x - u₀ x) Ω := { memLp := by simpa [sub_eq_add_neg, Pi.smul_apply] using hsub_add.memLp weakGrad := hsub_add.weakGrad weakGrad_component_memLp := by intro i simpa [sub_eq_add_neg, Pi.smul_apply] using hsub_add.weakGrad_component_memLp i isWeakGrad := by intro i simpa [sub_eq_add_neg, Pi.smul_apply] using hsub_add.isWeakGrad i } refine ⟨hu.2.1, ?_⟩ intro hw' v hv0 hv calc bilinFormOfCoeff A hw' hv = bilinFormOfCoeff A hsub hv := by exact bilinFormOfCoeff_eq_left hΩ A hw' hsub hv _ = bilinFormOfCoeff A hsub_add hv := by rfl _ = bilinFormOfCoeff A huu hv + bilinFormOfCoeff A (hu₀w.smul (-1)) hv := by simpa [hsub_add] using bilinFormOfCoeff_add_left A huu (hu₀w.smul (-1)) hv _ = bilinFormOfCoeff A huu hv + (-1) * bilinFormOfCoeff A hu₀w hv := by rw [bilinFormOfCoeff_smul_left (-1) A hu₀w hv] _ = divergenceRHSOfField F hv + (-1) * bilinFormOfCoeff A hu₀w hv := by rw [hu.2.2 huu v hv0 hv] _ = divergenceRHSOfField F hv - bilinFormOfCoeff A hu₀w hv := by ring _ = weakProblemRHSOfFieldAndDatum (A := A) (Ω := Ω) F hu₀w v := by symm exact weakProblemRHSOfFieldAndDatum_eq_of_memH01 hΩ A hu₀w hv0 hv- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/WeakFormulation/ExistenceTheory.lean:1100-1143
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.