/- Copyright 2026 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Energy-critical NLS in three dimensions.

This file states an a priori estimate for the energy-critical nonlinear Schrödinger equation on $ℝ^3$. By 'soft' arguments, this bound implies global well-posedness in the energy space, scattering, asymptotic completeness, and uniform regularity (all of which are less elementary to state). This is remarked on p. 770 and p. 793 in the referenced article which first proved the a priori bound.

The main theorem is:

    NLS_apriori: a bound on the space-time $L^10$ norm in terms of the initial energy for local smooth solutions to the NLS equation.

References

open Set ContDiff EuclideanGeometry Laplacian MeasureTheorynamespace NLSCritical

A smooth solution to the NLS equation on the time interval $[-l, l]$. We additionally require that $x ↦ u(t,x)$ is Schwartz for all $t$ in the interval.

structure LocalSchwartzSolution (l : ) where u : ℝ^3 smooth : ContDiffOn (Function.uncurry u) (Icc (-l) l ×ˢ univ) schwartz : t Icc (-l) l, f : (SchwartzMap (ℝ^3) ), u t = f L10_loc : IntegrableOn (fun t ( x, u t x^10)) (Icc (-l) l) C0H1 : v : C(, ℝ^3 →₂[volume] ℝ^3 →L[] ), t Icc (-l) l, ∀ᵐ x, fderiv (u t ·) x = v t x solution : t Icc (-l) l, x, Complex.I * (deriv (u · x) t) + Δ (u t) x = u t x^4 * (u t x)

The Hamiltonian of the energy-critical NLS in $ℝ^3$.

noncomputable def energy (u : ℝ^3 ) : := x, (1 / 2) * fderiv u x^2 + (1 / 6) * u x^6

The space-time $L^10$ norm, restricted to the time interval $[-l,l]$.

noncomputable def L10_local (l : ) (u : ℝ^3 ) := t in Icc (-l) l, ( x, u t x^10)

The $L^10_{t,x}$ a priori estimate for local schwartz solutions.

@[category research solved, AMS 35] theorem NLS_apriori : f : , l > 0, s : LocalSchwartzSolution l, L10_local l s.u f (energy (s.u 0)) := f, l > 0, (s : LocalSchwartzSolution l), L10_local l s.u f (energy (s.u 0)) All goals completed! 🐙end NLSCritical