Diagonal cutoff scales from actual logarithmic limits #
This module proves the numerical cutoff-selection step in Lemma 11.3 of the candidate manuscript. The decay of powers times logarithms is proved using Mathlib's exponential asymptotic, not assumed as a cutoff-schedule hypothesis. The resulting schedule enforces every requested finite collection of jet bounds. It does not construct the analytic increments or prove their PDE estimates.
Any positive real power beats any fixed real logarithmic power at zero.
Absorbing half the positive power into the chosen small coefficient gives exactly the stage bound used in the manuscript's tail estimate.
A recursive integer sequence dominating prescribed local scales and at least doubling on every step.
Equations
- NavierStokes.DiagonalScale.doublingEnvelope b 0 = max 1 (b 0)
- NavierStokes.DiagonalScale.doublingEnvelope b n.succ = max (b (n + 1)) (2 * NavierStokes.DiagonalScale.doublingEnvelope b n)
Instances For
Consequently only finitely many cutoff supports can reach a fixed q > 0.
The indices whose numerical cutoff support reaches a fixed positive scale form a finite set. This is the local-finiteness input, before introducing fields.
The numerical cutoff schedule of Lemma 11.3. Stage zero is exempt from a positive decay exponent, as in the source. Every positive stage enforces all jet requirements m ≤ j+2, with one schedule shared by all those requirements. The optional integer B gives an arbitrary lower bound on the initial scale.
If the prescribed order gains increase without bound, a single tail index
works for an arbitrary target power and for every q in the unit interval.
This concerns scalar majorants; it does not assert flatness of a PDE residual.