theorem
proved
master_lattice_regularity
show as:
view math explainer →
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
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