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

Sobolev of mem W01p univ

DeGiorgi.sobolev_of_memW01p_univ

Plain-language statement

Whole-space Sobolev inequality specialized to the MemW₀^{1,p} data already stored in the MemW₀^{1,p} witness predicate.

Exact Lean statement

theorem sobolev_of_memW01p_univ
    {p : ℝ} (hp : 1 ≤ p) (hpd : p < (d : ℝ))
    {u : E → ℝ}
    (hu : MemW01p (ENNReal.ofReal p) u Set.univ volume) :
    ∃ hw : MemW1pWitness (ENNReal.ofReal p) u Set.univ volume,
      eLpNorm u (ENNReal.ofReal ((d : ℝ) * p / ((d : ℝ) - p))) volume ≤
        ENNReal.ofReal (C_gns d p) *
          eLpNorm (fun x => ‖hw.weakGrad x‖) (ENNReal.ofReal p) volume

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem sobolev_of_memW01p_univ    {p : } (hp : 1  p) (hpd : p < (d : ))    {u : E  }    (hu : MemW01p (ENNReal.ofReal p) u Set.univ volume) :     hw : MemW1pWitness (ENNReal.ofReal p) u Set.univ volume,      eLpNorm u (ENNReal.ofReal ((d : ) * p / ((d : ) - p))) volume         ENNReal.ofReal (C_gns d p) *          eLpNorm (fun x =>hw.weakGrad x‖) (ENNReal.ofReal p) volume := by  rcases hu with _, hw, φ, hφ_smooth, hφ_cpt, _hφ_sub, hφ_fun, hφ_grad  refine hw, ?_  have hu_aesm : AEStronglyMeasurable u volume := by    simpa using hw.memLp.aestronglyMeasurable  have hG_comp_aesm :  i : Fin d,      AEStronglyMeasurable (fun x => hw.weakGrad x i) volume := by    intro i    simpa using (hw.weakGrad_component_memLp i).aestronglyMeasurable  have hφ_fun_univ :      Tendsto (fun n => eLpNorm (fun x => φ n x - u x) (ENNReal.ofReal p) volume)        atTop (nhds 0) := by    simpa using hφ_fun  have hφ_grad_univ :  i : Fin d, Tendsto      (fun n => eLpNorm        (fun x => (fderiv  (φ n) x) (EuclideanSpace.single i 1) - hw.weakGrad x i)        (ENNReal.ofReal p) volume)      atTop (nhds 0) := by    intro i    simpa using hφ_grad i  simpa [eLpNorm_norm] using    sobolev_of_approx hp hpd hu_aesm hG_comp_aesm φ      hφ_smooth hφ_cpt hφ_fun_univ hφ_grad_univ
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/SobolevSpace/Approximation.lean:1507-1536

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