Kato: local existence of a mild solution on for smooth decaying data
OpenNavierStokes.exists_mildSolutionOn_IcoKato's local existence theorem, in mild form. Let and let be admissible initial data (IsInitialData: , divergence-free, with all derivatives decaying faster than any power of ). Then there is a time and a velocity field which is a mild solution of the Navier–Stokes equations on (IsMildSolutionOn ν u₀ u (Set.Ico 0 T)): , is jointly on , divergence-free, with kinetic energy bounded on and every bounded on for each , and satisfies Kato's integral equation
with an integrable integrand.
This is the fixed-point half of the Kato–Fujita theory (Fujita–Kato 1964, Theorem 4.1; Kato 1984, Theorem 1 with ), specialised to smooth rapidly decaying data: a contraction argument in (or ) gives a unique mild solution for , and the standard bootstrap shows it lies in for every and and is jointly smooth up to . Together with isSolutionOn_of_isMildSolutionOn it yields the mission milestone local_existence_R3 (Fefferman, p. 2: statement (A) on a small time interval).
import Definitions.Def_NavierStokes_Mild import Mathlib
namespace NavierStokes
theorem exists_mildSolutionOn_Ico (ν : ℝ) (hν : 0 < ν) (u₀ : Vec 3 → Vec 3)
(h₀ : IsInitialData u₀) :
∃ T : ℝ, 0 < T ∧ ∃ u : ℝ → Vec 3 → Vec 3, IsMildSolutionOn ν u₀ u (Set.Ico 0 T) := by sorry
end NavierStokes