-seminorm contraction of the heat flow:
ProvedNavierStokes.lintegral_gradNormSq_heatFlow_le_selfanalysisheat-equationnavier-stokespartial-differential-equations
Let , , and let be differentiable with and bounded. Then
where is NavierStokes.gradNormSq and both sides are lower Lebesgue integrals in (the statement is trivially true when ). Together with the contraction lintegral_heatFlow_sq_le this says the heat semigroup is a contraction for the norm. It follows from the commutation and the contraction applied to each partial derivative.
Preamble
import Definitions.Def_NavierStokes_Mild import Mathlib open MeasureTheory Real open scoped ENNReal
Formal statement
namespace NavierStokes
theorem lintegral_gradNormSq_heatFlow_le_self {ν 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₁) :
∫⁻ x, ENNReal.ofReal (gradNormSq (heatFlow ν t f) x) ≤ ∫⁻ x, ENNReal.ofReal (gradNormSq f x) := by sorry
end NavierStokesSource
Standard heat-semigroup facts; e.g. L. C. Evans, Partial Differential Equations, 2nd ed., §2.3.1 (convolution structure of the solution) and T. Kato, Math. Z. 187 (1984), §2 (semigroup estimates in H^s). Mission context: Prove2Me mission 'Formalize Navier-Stokes', child NavierStokes.exists_mildSolutionOn_Ico.