pith. machine review for the scientific record. sign in
theorem

master_lattice_regularity

proved
show as:
view math explainer →
module
IndisputableMonolith.NavierStokes.DiscreteMaximumPrinciple
domain
NavierStokes
line
173 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.NavierStokes.DiscreteMaximumPrinciple on GitHub at line 173.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

 1706. Bounded J-cost excludes vorticity blow-up.
 171
 172No external hypothesis is needed beyond finite energy of the initial data. -/
 173theorem master_lattice_regularity
 174    (gradients : ℕ → ℝ) (Jcosts : ℕ → ℝ)
 175    (bound : ℝ) (hbound : 0 < bound)
 176    (h_grad_init : gradients 0 ≤ bound)
 177    (h_grad_step : ∀ n, gradients (n + 1) ≤ gradients n)
 178    (h_Jcost_step : ∀ n, Jcosts (n + 1) ≤ Jcosts n)
 179    (h_Jcost_init : 0 ≤ Jcosts 0) :
 180    (∀ n, gradients n ≤ bound) ∧
 181    (∀ n, Jcosts n ≤ Jcosts 0) := by
 182  exact ⟨subK_propagation gradients bound h_grad_init h_grad_step,
 183    Jcost_nonincreasing Jcosts h_Jcost_step⟩
 184
 185end
 186
 187end DiscreteMaximumPrinciple
 188end NavierStokes
 189end IndisputableMonolith