Theorems · Theorem · sequences and series
TFAE_exists_lt_isLittleO_pow
∀ (f : ℕ → ℝ) (R : ℝ),
[∃ a ∈ Set.Ioo (-R) R, f =o[Filter.atTop] fun x => a ^ x, ∃ a ∈ Set.Ioo 0 R, f =o[Filter.atTop] fun x => a ^ x,
∃ a ∈ Set.Ioo (-R) R, f =O[Filter.atTop] fun x => a ^ x, ∃ a ∈ Set.Ioo 0 R, f =O[Filter.atTop] fun x => a ^ x,
∃ a < R, ∃ C, (0 < C ∨ 0 < R) ∧ ∀ (n : ℕ), |f n| ≤ C * a ^ n,
∃ a ∈ Set.Ioo 0 R, ∃ C > 0, ∀ (n : ℕ), |f n| ≤ C * a ^ n, ∃ a < R, ∀ᶠ (n : ℕ) in Filter.atTop, |f n| ≤ a ^ n,
∃ a ∈ Set.Ioo 0 R, ∀ᶠ (n : ℕ) in Filter.atTop, |f n| ≤ a ^ n].TFAEVarious statements equivalent to the fact that f n grows exponentially slower than R ^ n.
* 0: $f n = o(a ^ n)$ for some $-R < a < R$;
* 1: $f n = o(a ^ n)$ for some $0 < a < R$;
* 2: $f n = O(a ^ n)$ for some $-R < a < R$;
* 3: $f n = O(a ^ n)$ for some $0 < a < R$;
* 4: there exist a < R and C such that one of C and R is positive and $|f n| ≤ Ca^n$
for all n;
* 5: there exists 0 < a < R and a positive C such that $|f n| ≤ Ca^n$ for all n;
* 6: there exists a < R such that $|f n| ≤ a ^ n$ for sufficiently large n;
* 7: there exists 0 < a < R such that $|f n| ≤ a ^ n$ for sufficiently large n.
NB: For backwards compatibility, if you add more items to the list, please append them at the end of
the list.
- Defined in
- Mathlib.Analysis.SpecificLimits.Normed
- Cited by
- 4 results in Mathlib
- Foundations
- Depth 159 from the axioms · uses propext, Classical.choice, Quot.sound
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites44
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- Setstatement · cited by 53,352
- Realstatement and proof · cited by 25,697
- Norm.normproof · cited by 5,413
- LE.le.transproof · cited by 3,151
- Filter.Eventuallystatement and proof · cited by 3,134
- one_mulproof · cited by 2,841
- Filter.atTopstatement and proof · cited by 2,405
- LT.lt.leproof · cited by 2,189
- absstatement and proof · cited by 1,814
- MulZeroClass.zero_mulproof · cited by 1,625
- LT.lt.ne'proof · cited by 1,417
- Set.Ioostatement and proof · cited by 1,214
Cited by4
Results whose statement or proof uses this declaration.
- FormalMultilinearSeries.norm_mul_pow_le_mul_pow_of_lt_radiusproof · cited by 5
- FormalMultilinearSeries.isLittleO_of_lt_radiusproof · cited by 3
- FormalMultilinearSeries.radius_eq_liminfproof · cited by 2
- FormalMultilinearSeries.lt_radius_of_isBigOproof · cited by 0