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

Has Weak Partial Deriv of cont Diff

DeGiorgi.HasWeakPartialDeriv.of_contDiff

Plain-language statement

Classical derivatives give weak derivatives on open sets.

Exact Lean statement

theorem HasWeakPartialDeriv.of_contDiff {Ω : Set E} (hΩ : IsOpen Ω)
    {i : Fin d} {f : E → ℝ} (hf : ContDiff ℝ 1 f) :
    HasWeakPartialDeriv i (fun x => (fderiv ℝ f x) (EuclideanSpace.single i 1)) f Ω

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem HasWeakPartialDeriv.of_contDiff {Ω : Set E} (hΩ : IsOpen Ω)    {i : Fin d} {f : E  } (hf : ContDiff  1 f) :    HasWeakPartialDeriv i (fun x => (fderiv  f x) (EuclideanSpace.single i 1)) f Ω := by  let _ :=  intro φ hφ hφ_supp hφ_sub  let v := EuclideanSpace.single i (1 : )  have h_fderiv_supp : tsupport (fun x => (fderiv  φ x) v)  Ω :=    (tsupport_fderiv_apply_subset  v).trans hφ_sub  have hf_diff : Differentiable  f := hf.differentiable one_ne_zero  have hφ_diff : Differentiable  φ := hφ.differentiable (by simp)  have hf_cont : Continuous f := hf_diff.continuous  have hφ_cont : Continuous φ := hφ_diff.continuous  have hfderiv_φ_cont : Continuous (fun x => (fderiv  φ x) v) :=    (hφ.continuous_fderiv (by simp)).clm_apply continuous_const  have hfderiv_f_cont : Continuous (fun x => (fderiv  f x) v) :=    (hf.continuous_fderiv one_ne_zero).clm_apply continuous_const  have hφ_fderiv_supp : HasCompactSupport (fun x => (fderiv  φ x) v) :=    hφ_supp.fderiv_apply (𝕜 := ) v  rw [setIntegral_eq_integral_of_forall_compl_eq_zero, setIntegral_eq_integral_of_forall_compl_eq_zero]  ·    exact integral_mul_fderiv_eq_neg_fderiv_mul_of_integrable      ((hfderiv_f_cont.mul hφ_cont).integrable_of_hasCompactSupport hφ_supp.mul_left)      ((hf_cont.mul hfderiv_φ_cont).integrable_of_hasCompactSupport hφ_fderiv_supp.mul_left)      ((hf_cont.mul hφ_cont).integrable_of_hasCompactSupport hφ_supp.mul_left)      (fun x _ => hf_diff x) (fun x _ => hφ_diff x)  ·    intro x hx    have : x  tsupport φ := fun h => hx (hφ_sub h)    simp only [mul_eq_zero]    right    by_contra hf'    exact this (subset_tsupport φ (mem_support.mpr hf'))  ·    intro x hx    have : x  tsupport (fun x => (fderiv  φ x) v) := fun h => hx (h_fderiv_supp h)    simp only [mul_eq_zero]    right    by_contra hf'    exact this (subset_tsupport _ (mem_support.mpr hf'))
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/SobolevSpace/WeakDerivatives.lean:97-135

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