Lemmas about liminf and limsup in an order topology. #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
Main declarations #
bounded_le_nhds_class
: Typeclass stating that neighborhoods are eventually bounded above.bounded_ge_nhds_class
: Typeclass stating that neighborhoods are eventually bounded below.
Implementation notes #
The same lemmas are true in ℝ
, ℝ × ℝ
, ι → ℝ
, euclidean_space ι ℝ
. To avoid code
duplication, we provide an ad hoc axiomatisation of the properties we need.
- is_bounded_le_nhds : ∀ (a : α), filter.is_bounded has_le.le (nhds a)
Ad hoc typeclass stating that neighborhoods are eventually bounded above.
- is_bounded_ge_nhds : ∀ (a : α), filter.is_bounded ge (nhds a)
Ad hoc typeclass stating that neighborhoods are eventually bounded below.
If the liminf and the limsup of a filter coincide, then this filter converges to their common value, at least if the filter is eventually bounded above and below.
If a filter is converging, its limsup coincides with its limit.
If a filter is converging, its liminf coincides with its limit.
If a function has a limit, then its limsup coincides with its limit.
If a function has a limit, then its liminf coincides with its limit.
If the liminf and the limsup of a function coincide, then the limit of the function exists and has the same value
If a number a
is less than or equal to the liminf
of a function f
at some filter
and is greater than or equal to the limsup
of f
, then f
tends to a
along this filter.
Assume that, for any a < b
, a sequence can not be infinitely many times below a
and
above b
. If it is also ultimately bounded above and below, then it has to converge. This even
works if a
and b
are restricted to a dense subset.
An antitone function between complete linear ordered spaces sends a filter.Limsup
to the filter.liminf
of the image if it is continuous at the Limsup
.
A continuous antitone function between complete linear ordered spaces sends a filter.limsup
to the filter.liminf
of the images.
An antitone function between complete linear ordered spaces sends a filter.Liminf
to the filter.limsup
of the image if it is continuous at the Liminf
.
A continuous antitone function between complete linear ordered spaces sends a filter.liminf
to the filter.limsup
of the images.
A monotone function between complete linear ordered spaces sends a filter.Limsup
to the filter.limsup
of the image if it is continuous at the Limsup
.
A continuous monotone function between complete linear ordered spaces sends a filter.limsup
to the filter.limsup
of the images.
A monotone function between complete linear ordered spaces sends a filter.Liminf
to the filter.liminf
of the image if it is continuous at the Liminf
.
A continuous monotone function between complete linear ordered spaces sends a filter.liminf
to the filter.liminf
of the images.