All proofs
Project-declaredLean 4.30.0 · mathlib@c5ea00351c28

Wkp U deriv To Lp sub

WkpU.derivToLp_sub

Plain-language statement

The projection of the weak derivative of f - g to Lp equals the difference of the projections of the weak derivatives of f and g.

Exact Lean statement

lemma WkpU.derivToLp_sub
    (f g : WkpU d k p U hU)
    (n : ℕ+) (hn : n ≤ k) (s : Fin n → Fin d) :
    WkpU.derivtoLp (f - g) n hn s =
      WkpU.derivtoLp f n hn s - WkpU.derivtoLp g n hn s

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma WkpU.derivToLp_sub    (f g : WkpU d k p U hU)    (n : +) (hn : n  k) (s : Fin n  Fin d) :    WkpU.derivtoLp (f - g) n hn s =      WkpU.derivtoLp f n hn s - WkpU.derivtoLp g n hn s := by  apply Lp.ext  obtain h_neg, eq_neg := WeakmultiDerivU_smul U hU s g.val (-1) (WkpU.hasWeakDeriv g n hn s)  obtain h_add, eq_add := WeakmultiDerivU_add U hU s f.val _ (WkpU.hasWeakDeriv f n hn s) h_neg  have his : IsWeakMultiDerivU U s (f - g).val      (WeakmultiderivU U (f.val + (-1 : ) • g.val) s h_add) := by      have hfg : (f - g).val = f.val + (-1 : ) • g.val := by        ext1; simp [sub_eq_add_neg]      rw [hfg]; exact Classical.choose_spec h_add  have key : (WkpU.weakDeriv (f - g) n hn s : (Fin d  )  ) =ᵐ[μU d U]      (WkpU.weakDeriv f n hn s : (Fin d  )  ) - WkpU.weakDeriv g n hn s := by      have step := WeakmultiderivU_unique hU s _ (WkpU.hasWeakDeriv (f - g) n hn s) _ his      filter_upwards [step, eq_add, eq_neg,        AEEqFun.coeFn_add (WeakmultiderivU U f.val s (WkpU.hasWeakDeriv f n hn s) : (Fin d  ) ₘ[μU d U] )                          (WeakmultiderivU U ((-1 : ) • g.val) s h_neg : (Fin d  ) ₘ[μU d U] ),        AEEqFun.coeFn_smul (-1 : ) (WeakmultiderivU U g.val s (WkpU.hasWeakDeriv g n hn s) : (Fin d  ) ₘ[μU d U] ),        AEEqFun.coeFn_sub (WkpU.weakDeriv f n hn s : (Fin d  ) ₘ[μU d U] )                          (WkpU.weakDeriv g n hn s : (Fin d  ) ₘ[μU d U] )]        with x h1 h2 h3 h4 h5 h6      simp only [Pi.add_apply, Pi.smul_apply, smul_eq_mul, Pi.sub_apply, WkpU.weakDeriv] at *      linarith  filter_upwards [    (WkpU.weakDeriv_memLp (f - g) n hn s).coeFn_toLp,    (WkpU.weakDeriv_memLp f n hn s).coeFn_toLp,    (WkpU.weakDeriv_memLp g n hn s).coeFn_toLp,    Lp.coeFn_sub (WkpU.weakDeriv_memLp f n hn s).toLp                 (WkpU.weakDeriv_memLp g n hn s).toLp,    key] with x h1 h2 h3 h4 h5  simp only [WkpU.derivtoLp, Pi.sub_apply] at *  linarith
Project
PDE
License
Apache-2.0
Commit
0ab5d79a0d7a
Source
PDE/SobolevSpace/SobolevSpaces.lean:527-560

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