Integral split near far
Heat.integral_split_near_far
Project documentation
Helper lemma for splitting integrals into near and far regions.
Exact Lean statement
lemma integral_split_near_far {α x t : ℝ} (g : ℝ → ℝ) (far : Set ℝ)
(hα : 0 < α) (ht : 0 < t)
(hg : Integrable g) (h_meas_far : MeasurableSet far):
∫ y, heatKernel α (x - y) t * (g y - g x) ∂volume =
(∫ y in farᶜ, heatKernel α (x - y) t * (g y - g x) ∂volume) +
∫ y in far, heatKernel α (x - y) t * (g y - g x) ∂volumeFormal artifact
Lean source
lemma integral_split_near_far {α x t : ℝ} (g : ℝ → ℝ) (far : Set ℝ) (hα : 0 < α) (ht : 0 < t) (hg : Integrable g) (h_meas_far : MeasurableSet far): ∫ y, heatKernel α (x - y) t * (g y - g x) ∂volume = (∫ y in farᶜ, heatKernel α (x - y) t * (g y - g x) ∂volume) + ∫ y in far, heatKernel α (x - y) t * (g y - g x) ∂volume := by have h_int : Integrable (fun y => heatKernel α (x - y) t * (g y - g x)) := by have h1 : Integrable (fun y => heatKernel α (x - y) t * g y) := integrable_heatKernel_mul_of_L1 g hα ht hg have h2 : Integrable (fun y => heatKernel α (x - y) t * g x) := (integrable_heatKernel_slice hα ht (x:= x)).mul_const (g x) have h_eq : (fun y => heatKernel α (x - y) t * (g y - g x)) = (fun y => heatKernel α (x - y) t * g y) - (fun y => heatKernel α (x - y) t * g x) := by ext y simp [mul_sub] rw [h_eq] exact Integrable.sub h1 h2 exact (integral_add_compl (s := far) h_meas_far h_int).symm.trans (by rw [add_comm])- Project
- PDE
- License
- Apache-2.0
- Commit
- 0ab5d79a0d7a
- Source
- PDE/Basics/Heat/HeatSolutionProperty.lean:204-223
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.