Theorems · Theorem · difference equations
discrete_gronwall
∀ {u b c : ℕ → ℝ} {n₀ : ℕ},
0 ≤ u n₀ →
(∀ n ≥ n₀, u (n + 1) ≤ (1 + c n) * u n + b n) →
(∀ n ≥ n₀, 0 ≤ c n) →
(∀ n ≥ n₀, 0 ≤ b n) →
∀ ⦃n : ℕ⦄, n₀ ≤ n → u n ≤ (u n₀ + ∑ k ∈ Finset.Ico n₀ n, b k) * Real.exp (∑ i ∈ Finset.Ico n₀ n, c i)Discrete Grönwall inequality, exponential form: if u (n+1) ≤ (1 + c n) * u n + b n with
b, c, and u n₀ non-negative, then u n ≤ (u n₀ + ∑ b k) * exp (∑ c i).
- Defined in
- Mathlib.Analysis.ODE.DiscreteGronwall
- Cited by
- 1 results in Mathlib
- Foundations
- Depth 153 from the axioms · uses propext, Classical.choice, Quot.sound
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites18
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- Realstatement and proof · cited by 25,697
- Finset.sumstatement and proof · cited by 5,195
- Finset.prodproof · cited by 2,356
- le_reflproof · cited by 2,061
- Real.expstatement · cited by 871
- add_le_addproof · cited by 666
- Finset.Icostatement and proof · cited by 450
- add_mulproof · cited by 363
- mul_le_mul_of_nonneg_leftproof · cited by 361
- Finset.sum_le_sumproof · cited by 182
- Finset.sum_mulproof · cited by 112
- add_nonnegproof · cited by 104
Cited by1
Results whose statement or proof uses this declaration.
- discrete_gronwall_Icoproof · cited by 0