Has Weak Partial Deriv ae eq
DeGiorgi.HasWeakPartialDeriv.ae_eq
Plain-language statement
A weak partial derivative on an open set is unique up to a.e. equality.
Exact Lean statement
theorem HasWeakPartialDeriv.ae_eq {Ω : Set E} (hΩ : IsOpen Ω)
{i : Fin d} {g₁ g₂ f : E → ℝ}
(h1 : HasWeakPartialDeriv i g₁ f Ω) (h2 : HasWeakPartialDeriv i g₂ f Ω)
(hg₁ : LocallyIntegrable g₁ (volume.restrict Ω))
(hg₂ : LocallyIntegrable g₂ (volume.restrict Ω)) :
g₁ =ᵐ[volume.restrict Ω] g₂Formal artifact
Lean source
theorem HasWeakPartialDeriv.ae_eq {Ω : Set E} (hΩ : IsOpen Ω) {i : Fin d} {g₁ g₂ f : E → ℝ} (h1 : HasWeakPartialDeriv i g₁ f Ω) (h2 : HasWeakPartialDeriv i g₂ f Ω) (hg₁ : LocallyIntegrable g₁ (volume.restrict Ω)) (hg₂ : LocallyIntegrable g₂ (volume.restrict Ω)) : g₁ =ᵐ[volume.restrict Ω] g₂ := by suffices h : ∀ᵐ x ∂(volume.restrict Ω), (g₁ - g₂) x = 0 by filter_upwards [h] with x hx simp [sub_eq_zero] at hx exact hx rw [ae_restrict_iff' hΩ.measurableSet] apply IsOpen.ae_eq_zero_of_integral_contDiff_smul_eq_zero hΩ · exact locallyIntegrableOn_of_locallyIntegrable_restrict (hg₁.sub hg₂) · intro φ hφ hφ_supp hφ_tsupport have eq1 := h1 φ hφ hφ_supp hφ_tsupport have eq2 := h2 φ hφ hφ_supp hφ_tsupport have h_eq : ∫ x in Ω, g₁ x * φ x = ∫ x in Ω, g₂ x * φ x := by linarith have h_zero : ∀ x, x ∉ Ω → φ x • (g₁ - g₂) x = 0 := by intro x hx have hφx : φ x = 0 := by by_contra h exact hx (hφ_tsupport (subset_tsupport _ h)) simp [hφx] rw [← setIntegral_eq_integral_of_forall_compl_eq_zero h_zero] simp_rw [Pi.sub_apply, smul_eq_mul, mul_sub] rw [integral_sub] · simp_rw [mul_comm (φ _)] linarith · have : Integrable (fun x => φ x • g₁ x) (volume.restrict Ω) := hg₁.integrable_smul_left_of_hasCompactSupport hφ.continuous hφ_supp simpa [smul_eq_mul] using this · have : Integrable (fun x => φ x • g₂ x) (volume.restrict Ω) := hg₂.integrable_smul_left_of_hasCompactSupport hφ.continuous hφ_supp simpa [smul_eq_mul] using this- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/SobolevSpace/WeakDerivatives.lean:57-93
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.