Zero Weakmulti Deriv U
zeroWeakmultiDerivU
Project documentation
Any weak multi-derivative Df on U agrees a.e. with the canonical choice. -/ theorem WeakmultiderivU_unique {d : ℕ+} {n : ℕ} {U : Set (Fin d → ℝ)} (hU : IsOpen U) (s : Fin n → Fin d) (f : Lp_locU d 1 U) (h : HasWeakMultiDerivU U f s) (Df : Lp_locU d 1 U) (hDf : IsWeakMultiDerivU U s f Df) : (WeakmultiderivU U f s h : (Fin d → ℝ) →ₘ[μU d U] ℝ) =ᵐ[volume...
Exact Lean statement
lemma zeroWeakmultiDerivU {d : ℕ+} {n : ℕ} (U : Set (Fin d → ℝ)) (hU : IsOpen U)
(s : Fin n → Fin d) :
∃ h : HasWeakMultiDerivU U (0 : Lp_locU d 1 U) s,
WeakmultiderivU U (0 : Lp_locU d 1 U) s h
=ᵐ[μU d U] (0 : (Fin d → ℝ) →ₘ[μU d U] ℝ)Formal artifact
Lean source
lemma zeroWeakmultiDerivU {d : ℕ+} {n : ℕ} (U : Set (Fin d → ℝ)) (hU : IsOpen U) (s : Fin n → Fin d) : ∃ h : HasWeakMultiDerivU U (0 : Lp_locU d 1 U) s, WeakmultiderivU U (0 : Lp_locU d 1 U) s h =ᵐ[μU d U] (0 : (Fin d → ℝ) →ₘ[μU d U] ℝ) := by classical have hzero : IsWeakMultiDerivU U s (0 : Lp_locU d 1 U) 0 := by rw [isWeakMultiDerivU_iff] intro ψ hψ have h0_ae : ∀ᵐ x ∂μU d U, ((0 : Lp_locU d 1 U) : (Fin d → ℝ) → ℝ) x = 0 := by rw [show ((0 : Lp_locU d 1 U) : (Fin d → ℝ) →ₘ[μU d U] ℝ) = 0 from rfl, show (0 : (Fin d → ℝ) →ₘ[μU d U] ℝ) = AEEqFun.mk 0 aestronglyMeasurable_zero from rfl] exact AEEqFun.coeFn_mk 0 aestronglyMeasurable_zero rw [integral_eq_zero_of_ae (h0_ae.mono fun x hx => by rw [hx, zero_smul, Pi.zero_apply]), integral_eq_zero_of_ae (h0_ae.mono fun x hx => by rw [hx, smul_zero, Pi.zero_apply]), smul_zero] let h0 : HasWeakMultiDerivU U (0 : Lp_locU d 1 U) s := ⟨0, hzero⟩ exact ⟨h0, WeakmultiderivU_unique hU s 0 h0 0 hzero⟩- Project
- PDE
- License
- Apache-2.0
- Commit
- 0ab5d79a0d7a
- Source
- PDE/SobolevSpace/WeakDerivative.lean:176-194
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
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.
Source project: PDE
Person-level attribution pending.
Heat from convolution heat Kernel
heat_from_convolution_heatKernel
Project documentation
Swap the second spatial derivative with the integral . -/ 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...
Source project: PDE
Person-level attribution pending.
Deriv exp heat Kernel
Heat.deriv_exp_heatKernel
Plain-language statement
Derivative of the exponential term exp(-(x²)/(4αt)) with respect to x.
Source project: PDE
Person-level attribution pending.