Maximum principle for the heat flow:
ProvedNavierStokes.norm_heatFlow_leanalysisheat-equationnavier-stokespartial-differential-equations
Let and let be any vector field bounded pointwise by , i.e. for all . Then for every time and point the heat flow (NavierStokes.heatFlow) satisfies
For this is because is the convolution of with the positive, unit-mass kernel (so ); for the heat flow is itself by convention. No measurability of is assumed: if the defining integral does not converge, Mathlib's convention makes it , and the bound holds trivially. This is the contraction (maximum principle) for the heat semigroup.
Preamble
import Definitions.Def_NavierStokes_Mild import Mathlib open MeasureTheory Real
Formal statement
namespace NavierStokes
theorem norm_heatFlow_le {ν : ℝ} (hν : 0 < ν) (t : ℝ) {f : Vec 3 → Vec 3} {M : ℝ}
(hM : ∀ y, ‖f y‖ ≤ M) (x : Vec 3) : ‖heatFlow ν t f x‖ ≤ M := by sorry
end NavierStokesSource
Standard heat-kernel facts on ℝ³; see e.g. L. C. Evans, Partial Differential Equations, 2nd ed., AMS GSM 19 (2010), §2.3.1 (fundamental solution, Lemma p. 46: unit mass) and §2.3.3; for the Kato route: T. Kato, Math. Z. 187 (1984), §2 eq. (2.1)–(2.3) (semigroup estimates ‖∇e^{tΔ}f‖₂ ≤ C t^{-1/2}‖f‖₂). Mission context: Prove2Me mission 'Formalize Navier-Stokes', child NavierStokes.exists_mildSolutionOn_Ico (Kato local existence).