The heat flow preserves divergence-free fields
ProvedNavierStokes.div_heatFlow_eq_zeroanalysisheat-equationnavier-stokespartial-differential-equations
Let , and let be a differentiable vector field with and bounded. If , then : the heat semigroup maps divergence-free fields to divergence-free fields. This is used to show that the Duhamel term of Kato's mild solution stays divergence-free. It is an immediate consequence of (div_heatFlow).
Preamble
import Definitions.Def_NavierStokes_Mild import Mathlib open MeasureTheory Real open scoped ENNReal
Formal statement
namespace NavierStokes
theorem div_heatFlow_eq_zero {ν t : ℝ} (hν : 0 < ν) (ht : 0 < t) {f : Vec 3 → Vec 3}
(hf : Differentiable ℝ f) {M₀ M₁ : ℝ} (h0 : ∀ y, ‖f y‖ ≤ M₀) (h1 : ∀ y, ‖fderiv ℝ f y‖ ≤ M₁)
(hdiv : ∀ y, div f y = 0) (x : Vec 3) : div (heatFlow ν t f) x = 0 := by sorry
end NavierStokesSource
The heat semigroup commutes with the divergence and hence preserves divergence-free fields; standard (e.g. Kato, Math. Z. 187 (1984), §1: e^{tΔ} commutes with P and with derivatives). Mission context: Prove2Me mission 'Formalize Navier-Stokes', child NavierStokes.exists_mildSolutionOn_Ico (divergence-free field of the mild solution).