Approximate identity: as
ProvedNavierStokes.tendsto_heatFlowanalysisheat-equationnavier-stokespartial-differential-equations
Let , let be bounded and measurable (), and let be continuous at the point . Then
(For the heat flow NavierStokes.heatFlow is itself by convention, so the limit is over a full neighbourhood of .) This is the approximate-identity property of the Gaussian kernel: writing , the part of the integral over is at most by continuity, while the tail contributes at most , which tends to . It gives the continuity at of the linear part of Kato's mild solution.
Preamble
import Definitions.Def_NavierStokes_Mild import Mathlib open MeasureTheory Real open scoped ENNReal Topology
Formal statement
namespace NavierStokes
theorem tendsto_heatFlow {ν : ℝ} (hν : 0 < ν) {f : Vec 3 → Vec 3} (hf : AEStronglyMeasurable f volume)
{M : ℝ} (hM : ∀ y, ‖f y‖ ≤ M) {x : Vec 3} (hfx : ContinuousAt f x) :
Filter.Tendsto (fun t => heatFlow ν t f x) (𝓝 0) (𝓝 (f x)) := by sorry
end NavierStokesSource
Approximate-identity property of the heat kernel; e.g. L. C. Evans, Partial Differential Equations, 2nd ed., AMS GSM 19 (2010), §2.3.1, Theorem 1(iii) (u(x,t) → g(x⁰) as (x,t) → (x⁰,0)). Mission context: Prove2Me mission 'Formalize Navier-Stokes', children NavierStokes.exists_mildSolutionOn_Ico and isSolutionOn_of_isMildSolutionOn (continuity of the linear part at t = 0).