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

Mem W1p Witness weak Grad ae eq zero on zero Set

DeGiorgi.MemW1pWitness.weakGrad_ae_eq_zero_on_zeroSet

Project documentation

Stampacchia's zero-set theorem for Sobolev witnesses: each weak-gradient component vanishes a.e. on the zero set of the function.

Exact Lean statement

theorem MemW1pWitness.weakGrad_ae_eq_zero_on_zeroSet
    {Ω : Set E} (hΩ : IsOpen Ω) {u : E → ℝ}
    (hw : MemW1pWitness 2 u Ω) :
    ∀ i : Fin d, ∀ᵐ x ∂(volume.restrict Ω), u x = 0 → hw.weakGrad x i = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem MemW1pWitness.weakGrad_ae_eq_zero_on_zeroSet    {Ω : Set E} (hΩ : IsOpen Ω) {u : E  }    (hw : MemW1pWitness 2 u Ω) :     i : Fin d, ᵐ x ∂(volume.restrict Ω), u x = 0  hw.weakGrad x i = 0 := by  intro i  let uMk : E   := AEMeasurable.mk u hw.memLp.aemeasurable  have hu_meas : Measurable uMk := hw.memLp.aemeasurable.measurable_mk  have hu_ae : u =ᵐ[volume.restrict Ω] uMk := hw.memLp.aemeasurable.ae_eq_mk  have hGMk :       j : Fin d, HasWeakPartialDeriv' (d := d) j (fun x => hw.weakGrad x j) uMk Ω := by    intro j    exact stampacchia_congr_ae      (HasWeakPartialDeriv.toStampacchia (hw.isWeakGrad j)) hu_ae  have huMk_memW1p : MemW1p 2 uMk Ω := by    refine hw.memLp.ae_eq hu_ae, ?_    intro j    exact fun x => hw.weakGrad x j, hw.weakGrad_component_memLp j, by      simpa [HasWeakPartialDeriv'] using hGMk j  have hzero_mk :      ᵐ x ∂(volume.restrict Ω), uMk x = 0  hw.weakGrad x i = 0 :=    DeGiorgi.weakGrad_ae_eq_zero_on_zeroSet hΩ huMk_memW1p hGMk i      (hw.weakGrad_component_memLp i) hu_meas  filter_upwards [hu_ae, hzero_mk] with x hx hzero hx_zero  exact hzero (by simpa [hx] using hx_zero)
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/PositivePart.lean:61-84

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