All proofs
Project-declaredLean 4.30.0 · mathlib@c5ea00351c28

Wkp U deriv ELp Norm add le

WkpU.derivELpNorm_add_le

Plain-language statement

Triangle inequality for a single weak-derivative eLpNorm.

Exact Lean statement

lemma WkpU.derivELpNorm_add_le {d : ℕ+} {k : ℕ} {p : ℝ≥0∞}
    {U : Set (Fin d → ℝ)} {hU : IsOpen U} (hp1 : 1 ≤ p)
    (f g : WkpU d k p U hU) (n : ℕ) (s : Fin n → Fin d) :
    WkpU.derivELpNorm (f + g) n s ≤
      WkpU.derivELpNorm f n s + WkpU.derivELpNorm g n s

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma WkpU.derivELpNorm_add_le {d : +} {k : } {p : 0∞}    {U : Set (Fin d  )} {hU : IsOpen U} (hp1 : 1  p)    (f g : WkpU d k p U hU) (n : ) (s : Fin n  Fin d) :    WkpU.derivELpNorm (f + g) n s       WkpU.derivELpNorm f n s + WkpU.derivELpNorm g n s := by  match n with  | 0 =>    simp only [WkpU.derivELpNorm]    have hcoe : ((f + g).val : (Fin d  )  )        =ᵐ[μU d U]        (f.val : (Fin d  )  ) + (g.val : (Fin d  )  ) :=      AEEqFun.coeFn_add f.val.1 g.val.1    rw [eLpNorm_congr_ae hcoe]    exact eLpNorm_add_le      (WkpU.aestronglyMeasurable f)      (WkpU.aestronglyMeasurable g) hp1  | n + 1 =>    simp only [WkpU.derivELpNorm]    split_ifs with hn    · set nm : + := n + 1, Nat.succ_pos n      obtain _, eq_add := WeakmultiDerivU_add U hU s f.val g.val        (WkpU.hasWeakDeriv f nm hn s) (WkpU.hasWeakDeriv g nm hn s)      have heq :          (WkpU.weakDeriv (f + g) nm hn s : (Fin d  )  )          =ᵐ[μU d U]          (WkpU.weakDeriv f nm hn s : (Fin d  )  )            + (WkpU.weakDeriv g nm hn s : (Fin d  )  ) :=        eq_add.trans (AEEqFun.coeFn_add _ _)      rw [eLpNorm_congr_ae heq]      exact eLpNorm_add_le        (WkpU.weakDeriv_memLp f nm hn s).aestronglyMeasurable        (WkpU.weakDeriv_memLp g nm hn s).aestronglyMeasurable hp1    · exact le_self_add
Project
PDE
License
Apache-2.0
Commit
0ab5d79a0d7a
Source
PDE/SobolevSpace/SobolevSpaces.lean:252-284

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.30.0

Fderiv Ccinfty

FderivCcinfty

Plain-language statement

The Fréchet derivative x ↦ (∂ˢψ(x))(unitSeq s) of a test function ψ ∈ Cc^∞(U) again lies in Cc^∞(U). This is used to compose the weak derivative definition with itself.

partial differential equationsSobolev spacesanalysis

Source project: PDE

Person-level attribution pending.

View proof record
Project-declaredLean 4.30.0

Heat from convolution heat Kernel

heat_from_convolution_heatKernel

Project documentation

Swap the second spatial derivative xx\partial_{xx} with the integral \int. -/ lemma swap_xx_heatKernel {α : ℝ} {x t : ℝ} (g : ℝ → ℝ) (ht : 0 < t) (hα : 0 < α) (hg : Integrable g) : HasDerivAt (fun x' => ∫ y, HKx α (x' - y) t * g y ∂volume) (∫ y, HKxx α (x - y) t * g y ∂volume) x := by have mem_nhds : Metric.ball x 1 ∈ 𝓝 x := Metric.ball_mem_nhds x (by...

partial differential equationsSobolev spacesanalysis

Source project: PDE

Person-level attribution pending.

View proof record
Project-declaredLean 4.30.0

Deriv exp heat Kernel

Heat.deriv_exp_heatKernel

Plain-language statement

Derivative of the exponential term exp(-(x²)/(4αt)) with respect to x.

partial differential equationsSobolev spacesanalysis

Source project: PDE

Person-level attribution pending.

View proof record