Leray: global mild solution when
OpenNavierStokes.exists_mildSolutionOn_Ici_of_smallLeray's small-data global existence theorem, in mild form. There is an absolute constant such that for every viscosity and every admissible initial datum (IsInitialData) satisfying the scaling-invariant smallness condition
there is a velocity field that is a mild solution on the whole half-line (IsMildSolutionOn ν u₀ u (Set.Ici 0)): , jointly on , divergence-free, with kinetic energy bounded uniformly in time and every bounded on each bounded time interval , and satisfying Kato's integral equation with integrable integrand for all .
This is Leray's theorem (Leray 1934, §§21–23, eq. (4.4): the solution is global when is small compared with ), the result Fefferman cites on p. 2 ("(A) holds if is small in a suitable sense"). The mechanism: the energy inequality gives , and the differential inequality (via the Gagliardo–Nirenberg inequality) shows is non-increasing once , so the local solution never loses its control and extends for all time. Together with isSolutionOn_of_isMildSolutionOn it yields the mission milestone small_data_global_existence_R3.
import Definitions.Def_NavierStokes_Mild import Mathlib open MeasureTheory
namespace NavierStokes
theorem exists_mildSolutionOn_Ici_of_small :
∃ c : ℝ, 0 < c ∧ ∀ (ν : ℝ), 0 < ν → ∀ (u₀ : Vec 3 → Vec 3), IsInitialData u₀ →
(∫ x, ‖u₀ x‖ ^ 2) * (∫ x, gradNormSq u₀ x) ≤ c * ν ^ 4 →
∃ u : ℝ → Vec 3 → Vec 3, IsMildSolutionOn ν u₀ u (Set.Ici 0) := by sorry
end NavierStokes