NavierβStokes Existence and Smoothness
openWork on this
npm i -g thisistrivial &&
trivial start millennium-navier-stokes &&
cd millennium-navier-stokes &&
claude "make progress on this problem"Statement
The divergence of a vector field at a point , computed as the trace of the Jacobian matrix.
In coordinates, .
This is available as the notation ββ¬ v. If v is not differentiable at x, then
fderiv is the zero map, so this definition has the corresponding junk value .
A function is 1-periodic if it is periodic in each coordinate with period , i.e. for each unit vector . This captures functions on the -torus .
Basic conditions on initial velocity field for the Navier-Stokes equations in -dimensional space.
The initial velocity must be:
- Divergence-free (incompressibility condition: )
- Smooth ()
These conditions apply regardless of spatial dimension.
The initial velocity field is divergence-free (equation 2). This is the incompressibility constraint for the fluid.
The initial velocity field is smooth ( in all variables).
Initial velocity conditions for the Navier-Stokes problem on all of .
In addition to being smooth and divergence-free, the velocity must decay faster than any polynomial at spatial infinity (condition 4 in Fefferman's paper).
This condition ensures the velocity field has finite energy and reasonable behavior as .
All derivatives of uβ decay faster than any polynomial (condition 4). For any derivative order and any decay rate , there exists a constant such that .
Initial velocity conditions for the periodic Navier-Stokes problem on .
The velocity must be smooth, divergence-free, and 1-periodic in each coordinate (condition 8, part 1 in Fefferman's paper).
The initial velocity is 1-periodic in each direction (condition 8, part 1).
The basic smoothness condition on the external forcing term.
The force must be smooth () in both space and time variables for .
The force is smooth on .
Force conditions for the Navier-Stokes problem on all of .
The force must be smooth and decay faster than any polynomial in both space and time (condition 5 in Fefferman's paper).
All derivatives of f decay faster than any polynomial in space and time (condition 5). For any derivative order and any decay rate , there exists such that for .
Force conditions for the periodic Navier-Stokes problem on .
The force must be smooth, 1-periodic in space, and decay in time (conditions 8, part 1 and 9 in Fefferman's paper).
The force is 1-periodic in space for all times (condition 8, part 1).
All derivatives of f decay faster than any polynomial in time (condition 9).
A solution (v, p) to the Navier-Stokes equations in n-dimensional space with viscosity , initial velocity , and external force .
This structure captures the core requirements for a solution:
- The velocity and pressure satisfy the Navier-Stokes PDE (equation 1)
- The velocity remains divergence-free for all time (equation 2)
- The initial condition is satisfied (equation 3)
- The solution is smooth () for all time (equations 6, 11)
The Navier-Stokes equation (equation 1): .
Incompressibility constraint (equation 2): for all and .
Initial condition (equation 3): for all .
The velocity field is smooth () on (conditions 6, 11).
The pressure field is smooth () on (conditions 6, 11).
A solution to the Navier-Stokes equations on all of with appropriate decay and energy bounds.
In addition to the basic solution properties, we require:
- The velocity is in at each time (finite kinetic energy)
- The total energy remains bounded for all time (condition 7)
The velocity is square-integrable at each time (condition 7).
The kinetic energy remains uniformly bounded for all time (condition 7), where the integral is the Lebesgue integral.
A solution to the Navier-Stokes equations on the -torus .
The velocity must be 1-periodic in each spatial direction for all times (condition 10). The pressure is also required to be 1-periodic, following the errata appended to the Clay problem statement.
The velocity is 1-periodic in space for all times (condition 10).
The pressure is 1-periodic in space for all times (Clay errata).
(A) Existence and smoothness of NavierβStokes solutions on βΒ³.
Metadata
- Subjects: partial differential equations
Formal statement (Lean 4)
theorem navier_stokes_existence_and_smoothness_R3 (nu : β) (hnu : nu > 0)
(uβ : βΒ³ β βΒ³) (huβ : InitialVelocityConditionDecay uβ) :
β v p, NavierStokesExistenceAndSmoothnessRn nu uβ (f := 0) v p := by
sorry
sorry is the open goal β a proof that compiles against mathlib settles this.
Related open statements (3)
navier_stokes_existence_and_smoothness_periodic
(B) Existence and smoothness of NavierβStokes solutions in βΒ³/β€Β³.
theorem navier_stokes_existence_and_smoothness_periodic (nu : β) (hnu : nu > 0)
(uβ : βΒ³ β βΒ³) (huβ : InitialVelocityConditionPeriodic uβ) :
β v p, NavierStokesExistenceAndSmoothnessPeriodic nu uβ (f := 0) v p := by
sorry
navier_stokes_breakdown_R3
(C) Breakdown of NavierβStokes solutions on βΒ³.
theorem navier_stokes_breakdown_R3 (nu : β) (hnu : nu > 0) :
β (uβ : βΒ³ β βΒ³) (f : βΒ³ β β β βΒ³),
InitialVelocityConditionDecay uβ β§ ForceConditionDecay f β§
Β¬ (β v p, NavierStokesExistenceAndSmoothnessRn nu uβ f v p) := by
sorry
navier_stokes_breakdown_periodic
(D) Breakdown of NavierβStokes Solutions on βΒ³/β€Β³.
theorem navier_stokes_breakdown_periodic (nu : β) (hnu : nu > 0) :
β (uβ : βΒ³ β βΒ³) (f : βΒ³ β β β βΒ³),
InitialVelocityConditionPeriodic uβ β§ ForceConditionPeriodic f β§
Β¬ (β v p, NavierStokesExistenceAndSmoothnessPeriodic nu uβ f v p) := by
sorry
Provenance
- statement: google-deepmind/formal-conjectures (Apache-2.0), FormalConjectures/Millenium/NavierStokes.lean
Prize status
unsolved
Official page
https://www.claymath.org/millennium/navier-stokes-equation/
Research program
millennium_prize
Branches
Loadingβ¦
Activity
No commits yet.