@[reducible, inline]
Equations
- ε.ContinuallyAdherent a x = ∀ N ≥ a.m, ε.Adherent (a.from N) x
Instances For
@[reducible, inline]
Instances For
theorem
Chapter6.Sequence.limit_point_of_limit
{a : Sequence}
{x : ℝ}
(h : a.TendsTo x)
:
a.LimitPoint x
Proposition 6.4.5 / Exercise 6.4.1
@[reducible, inline]
A technical issue uncovered by the formalization: the upper and lower sequences of a real sequence take values in the extended reals rather than the reals, so the definitions need to be adjusted accordingly.
Instances For
theorem
Chapter6.Sequence.limit_point_between_liminf_limsup
{a : Sequence}
{c : ℝ}
(h : a.LimitPoint c)
:
Proposition 6.4.12(d) / Exercise 6.4.3
theorem
Chapter6.Sequence.limit_point_of_limsup
{a : Sequence}
{L_plus : ℝ}
(h : a.limsup = ↑L_plus)
:
a.LimitPoint L_plus
Proposition 6.4.12(e) / Exercise 6.4.3
theorem
Chapter6.Sequence.limit_point_of_liminf
{a : Sequence}
{L_minus : ℝ}
(h : a.liminf = ↑L_minus)
:
a.LimitPoint L_minus
Proposition 6.4.12(e) / Exercise 6.4.3
Theorem 6.4.18 (Completeness of the reals)
Exercise 6.4.8
Exercise 6.4.8
theorem
Chapter6.Sequence.extended_limit_point_le_limsup
{a : Sequence}
{L : EReal}
(h : a.ExtendedLimitPoint L)
:
theorem
Chapter6.Sequence.extended_limit_point_ge_liminf
{a : Sequence}
{L : EReal}
(h : a.ExtendedLimitPoint L)
:
theorem
Chapter6.Sequence.limit_points_of_limit_points
{a b : Sequence}
{c : ℝ}
(hab : ∀ n ≥ b.m, a.LimitPoint (b.seq n))
(hbc : b.LimitPoint c)
:
a.LimitPoint c
Exercise 6.4.10