theorem
proved
term proof
master_lattice_regularity
show as:
view Lean formalization →
formal statement (Lean)
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
proof body
Term-mode proof.
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