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

Weak Problem RHSOf Field eq of mem H01

DeGiorgi.weakProblemRHSOfField_eq_of_memH01

Plain-language statement

On H₀¹(Ω), the raw-function RHS agrees with the witness-dependent divergence-form functional.

Exact Lean statement

theorem weakProblemRHSOfField_eq_of_memH01
    {Ω : Set E} (hΩ : IsOpen Ω) {F : E → E} {v : E → ℝ}
    (hv0 : MemH01 v Ω) (hv : MemW1pWitness 2 v Ω) :
    weakProblemRHSOfField (Ω := Ω) F v = divergenceRHSOfField F hv

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem weakProblemRHSOfField_eq_of_memH01    {Ω : Set E} (hΩ : IsOpen Ω) {F : E  E} {v : E  }    (hv0 : MemH01 v Ω) (hv : MemW1pWitness 2 v Ω) :    weakProblemRHSOfField (Ω := Ω) F v = divergenceRHSOfField F hv := by  let _ := (inferInstance : NeZero d)  rw [weakProblemRHSOfField, dif_pos hv0]  let hw0 : MemW1pWitness 2 v Ω :=    DeGiorgi.MemW1p.someWitness (MemW01p.memW1p hv0)  have hgrad_ae : hw0.weakGrad =ᵐ[volume.restrict Ω] hv.weakGrad := by    have hp2 : (1 : ENNReal)  2 := by      norm_num    have hcomp :         i : Fin d,          (fun x => hw0.weakGrad x i) =ᵐ[volume.restrict Ω] (fun x => hv.weakGrad x i) := by      intro i      exact HasWeakPartialDeriv.ae_eq hΩ (hw0.isWeakGrad i) (hv.isWeakGrad i)        ((hw0.weakGrad_component_memLp i).locallyIntegrable hp2)        ((hv.weakGrad_component_memLp i).locallyIntegrable hp2)    filter_upwards [ae_all_iff.2 hcomp] with x hx    ext i    exact hx i  have hintegral :      ∫ x in Ω, divergenceRHSIntegrandOfField F hw0 x =        ∫ x in Ω, divergenceRHSIntegrandOfField F hv x := by    apply integral_congr_ae    filter_upwards [hgrad_ae] with x hx    simpa [divergenceRHSIntegrandOfField, hw0] using      congrArg (fun g => ⟪F x, g⟫_) hx  simpa [hw0, divergenceRHSOfField] using congrArg Neg.neg hintegral
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/WeakFormulation/BilinearForm.lean:497-525

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