All proofs
Project-declaredLean 4.29.0-rc6 · mathlib@5c8398df5281

Weak Problem exists of divergence Data

DeGiorgi.weakProblem_exists_of_divergenceData

Plain-language statement

Existence of zero-Dirichlet weak solutions for divergence-form right-hand side data div F.

Exact Lean statement

theorem weakProblem_exists_of_divergenceData
    {Ω : Set E}
    (hd : 2 ≤ d)
    (hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω)
    (A : EllipticCoeff d Ω)
    {F : E → E} (hF : MemLp F 2 (volume.restrict Ω)) :
    ∃ u : E → ℝ,
      IsWeakSolution (d := d)
        ⟨Ω, hΩ, hΩ_bdd, A, weakProblemRHSOfField (Ω := Ω) F⟩ u

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem weakProblem_exists_of_divergenceData    {Ω : Set E}    (hd : 2  d)    (hΩ : IsOpen Ω) (hΩ_bdd : Bornology.IsBounded Ω)    (A : EllipticCoeff d Ω)    {F : E  E} (hF : MemLp F 2 (volume.restrict Ω)) :     u : E  ,      IsWeakSolution (d := d)        Ω, hΩ, hΩ_bdd, A, weakProblemRHSOfField (Ω := Ω) F u := by  refine weakProblem_exists hd hΩ hΩ_bdd A (weakProblemRHSOfField (Ω := Ω) F) ?_ ?_ ?_  · intro u v hu0 hv0    let hu : MemW1pWitness 2 u Ω :=      DeGiorgi.MemW1p.someWitness (MemW01p.memW1p hu0)    let hv : MemW1pWitness 2 v Ω :=      DeGiorgi.MemW1p.someWitness (MemW01p.memW1p hv0)    have huv0 : MemH01 (fun x => u x + v x) Ω := MemW01p.add hu0 hv0    let huv : MemW1pWitness 2 (fun x => u x + v x) Ω := hu.add hv    calc      weakProblemRHSOfField (Ω := Ω) F (fun x => u x + v x)          = divergenceRHSOfField F huv := by              exact weakProblemRHSOfField_eq_of_memH01 hΩ huv0 huv      _ = divergenceRHSOfField F hu + divergenceRHSOfField F hv := by            exact divergenceRHSOfField_add hF hu hv      _ = weakProblemRHSOfField (Ω := Ω) F u + weakProblemRHSOfField (Ω := Ω) F v := by            rw [weakProblemRHSOfField_eq_of_memH01 hΩ hu0 hu,              weakProblemRHSOfField_eq_of_memH01 hΩ hv0 hv]  · intro c u hu0    let hu : MemW1pWitness 2 u Ω :=      DeGiorgi.MemW1p.someWitness (MemW01p.memW1p hu0)    have hcu0 : MemH01 (fun x => c * u x) Ω := by      simpa [Pi.smul_apply, smul_eq_mul] using (MemW01p.smul c hu0)    let hcu : MemW1pWitness 2 (fun x => c * u x) Ω := hu.smul c    calc      weakProblemRHSOfField (Ω := Ω) F (fun x => c * u x)          = divergenceRHSOfField F hcu := by              exact weakProblemRHSOfField_eq_of_memH01 hΩ hcu0 hcu      _ = c * divergenceRHSOfField F hu := by            exact divergenceRHSOfField_smul c hu      _ = c * weakProblemRHSOfField (Ω := Ω) F u := by            rw [weakProblemRHSOfField_eq_of_memH01 hΩ hu0 hu]  · refine (∫ x, ‖F x‖ ^ (2 : ) ∂(volume.restrict Ω)) ^ (1 / (2 : )), by positivity, ?_    intro v hv0 hv    exact weakProblemRHSOfField_bound hΩ hF v hv0 hv
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/WeakFormulation/ExistenceTheory.lean:672-714

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

Project-declaredLean 4.29.0-rc6

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₂.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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) < ∞.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record