Is Open ae eq of integral cont Diff smul eq
IsOpen.ae_eq_of_integral_contDiff_smul_eq
Project documentation
If ∫ ψ · f = ∫ ψ · g for all ψ ∈ Cc^∞(U), then f =ᵃᵉ g on U. This is the du Bois-Reymond lemma, the key uniqueness engine for weak derivatives.
Exact Lean statement
lemma IsOpen.ae_eq_of_integral_contDiff_smul_eq {d : ℕ+} {U : Set (Fin d → ℝ)} {hU : IsOpen U}
{f : (Fin d → ℝ) →ₘ[μU d U] ℝ} {g : (Fin d → ℝ) →ₘ[μU d U] ℝ}
{hf : LocallyIntegrableOn f U volume}
{hg : LocallyIntegrableOn g U volume}
(h : ∀ ψ : (Fin d → ℝ) → ℝ, ψ ∈ Cc_inftyU d U →
∫ x, ψ x • (f : (Fin d → ℝ) → ℝ) x ∂volume
= ∫ x, ψ x • (g : (Fin d → ℝ) → ℝ) x ∂volume)
: f =ᵐ[μU d U] gFormal artifact
Lean source
lemma IsOpen.ae_eq_of_integral_contDiff_smul_eq {d : ℕ+} {U : Set (Fin d → ℝ)} {hU : IsOpen U} {f : (Fin d → ℝ) →ₘ[μU d U] ℝ} {g : (Fin d → ℝ) →ₘ[μU d U] ℝ} {hf : LocallyIntegrableOn f U volume} {hg : LocallyIntegrableOn g U volume} (h : ∀ ψ : (Fin d → ℝ) → ℝ, ψ ∈ Cc_inftyU d U → ∫ x, ψ x • (f : (Fin d → ℝ) → ℝ) x ∂volume = ∫ x, ψ x • (g : (Fin d → ℝ) → ℝ) x ∂volume) : f =ᵐ[μU d U] g := by have : ∀ᵐ (x : Fin ↑d → ℝ), x ∈ U → f x - g x = 0 := by apply IsOpen.ae_eq_zero_of_integral_contDiff_smul_eq_zero hU (hf.sub hg) intro ψ ψ_diff ψ_comp ψ_supp have Cc_psi : ψ ∈ Cc_inftyU d U := by exact ⟨ψ_comp, ψ_supp, ψ_diff⟩ simp only [Pi.sub_apply, smul_sub] rw [integral_sub, sub_eq_zero] · exact h ψ Cc_psi · exact IntMulLocalintComp U hf ψ_comp ψ_supp ψ_diff.continuous · exact IntMulLocalintComp U hg ψ_comp ψ_supp ψ_diff.continuous show f =ᵐ[volume.restrict U] g rw [Filter.EventuallyEq, ae_restrict_iff' hU.measurableSet] filter_upwards [this] with x hx simpa [sub_eq_zero] using hx- Project
- PDE
- License
- Apache-2.0
- Commit
- 0ab5d79a0d7a
- Source
- PDE/SobolevSpace/WeakDerivative.lean:78-101
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.