What is limit superior and limit inferior?

42.3k Views Asked by At

I've looked at the Wikipedia article, but it seems like gibberish. The only thing I was able to pick out of it was the concept of infimum (greatest lower bound) and supremum (least upper bound), as I had learned them previously in an intro discrete math course.

The limit inferior of a sequence ($x_n$) is defined by

$\displaystyle\liminf_{n\to\infty}x_n := \lim_{n\to\infty}\Big(\inf_{m\geq n}x_m\Big)$

or

$\displaystyle\liminf_{n\to\infty}x_n := \sup_{n\geq 0}\,\inf_{m\geq n}x_m=\sup\{\,\inf\{\,x_m:m\geq n\,\}:n\geq 0\,\}.$

Similarly, the limit superior of ($x_n$) is defined by

$\displaystyle\limsup_{n\to\infty}x_n := \lim_{n\to\infty}\Big(\sup_{m\geq n}x_m\Big)$

or

$\displaystyle\limsup_{n\to\infty}x_n := \inf_{n\geq 0}\,\sup_{m\geq n}x_m=\inf\{\,\sup\{\,x_m:m\geq n\,\}:n\geq 0\,\}.$

Can anybody provide any examples of its use, and why it's used in that context?

4

There are 4 best solutions below

1
On BEST ANSWER

A very prominent application of $\limsup$ is the Cauchy-Hadamard formula for the radius of convergence: Given a power series $\sum_{n=0}^\infty a_n x^n$, its radius f convergence $R$ can be obtained from $$\frac1R=\limsup_{n\to\infty}\sqrt[n]{|a_n|}.$$ Without going into details why that is so, let's ask:

  • Why not the $\lim$? Because it may not even exist (e.g. if $a_n=1+(-1)^n$).

  • Why not the $\sup$? Because a single large $|a_n|$ would then spoil the value whereas a single summand $a_nx^n$ does not influence the convergence.

Nevertheless, if $L:=\lim_{n\to\infty}\sqrt[n]{|a_n|}$ happens to exist, we see that the power series is dominated by $\sum |L' x|^n$ for any $L'>L$, and this converges (to $\frac1{1-|L'x|}$) provided $|L'x|<1$, and by suitable choice of $L'$ we obtain convergence whenever $|Lx|<1$. But if the limit does not exist, we must use the $\limsup$, so we have a sub-sequence converging to some $L$ and can choose the subsequence so large that all other terms $\sqrt[n]{|a_n|}$ are less than $L$. These small terms don't hurt the convergence if $|xL|<1$. And yet, since our subsequence has infinitely many terms, this is enough to spoil convergence when $|xL|>1$.

2
On

The following are answers of mine which use $\liminf$ and $\limsup$ [1] [2] [3] [4]

Maybe this helps.

DEF Given a sequence of real numbers $\langle a_n\rangle$, we say that $\ell \in \Bbb R^*=\Bbb R\cup\{+\infty,-\infty\}$ is a limit point of the sequence if there exists a subsequence $\langle a_{n_k}\rangle$ of $\langle a_n\rangle$ such that $$\lim_{k\to\infty}a_{n_k}=\ell $$

Now let's prove the

PROP Fix a sequence of real numbers $\langle a_n\rangle$, and define $$\mathscr L=\{x\in\Bbb R^*:x\text{ is a limit point of }\langle a_n\rangle\}$$ Then $\mathscr L$ is nonempty for any choice of $\langle a_n\rangle$.

P First suppose $\langle a_n\rangle$ is bounded. By Bolzano Weierstrass, there exists a convergent subsequence $\langle a_{n_k}\rangle$ of $\langle a_n\rangle$ such that $\lim\limits_{k\to\infty}a_{n_k}=\ell $ for some $\ell\in\Bbb R$. Thus $\ell\in\mathscr L$. Now assume $\langle a_n\rangle$ is unbounded. We can assume it is unbounded from above. Then, by definition, for each $k\in \Bbb N$ there exists $n_k$ such that $a_{n_k}\geq k$. It follows $\lim\limits_{k\to\infty}a_{n_k}=+\infty$, so $+\infty\in\mathscr L$.

Assume from now on the sequence is bounded.

DEF Let $\langle a_k\rangle$ be a sequence in $\Bbb R$. We define for each $n\in \Bbb N$ the associated sequences $$\overline{a_n}=\sup \langle a_k:k\geq n\rangle$$ $$\underline{a_n}=\inf \langle a_k:k\geq n\rangle$$ and subsequently the closed intervals $$A_n=\left[\underline{a_n},\overline{a_n}\right]$$

Observe that for each $n$, $$A_{n+1}\subseteq A_n$$

DEF For each sequence $\langle a_n\rangle$, define the intersection $$\bigcap_{n\in \Bbb N}A_n=[\zeta,\eta]$$This is nonempty courtesy of Cantor's intersection theorem.

Observe that $\zeta=\lim\limits_{n\to\infty} \underline{a_n}$ and $\eta=\lim\limits_{n\to\infty} \overline{a_n}$ are just the $\limsup$ and $\liminf$ of $\langle a_n\rangle $.

Prove

$1.$ If $\ell$ is a limit point of $\langle a_n\rangle $, then $\ell \in [\zeta,\eta]$. That is $\mathscr L\subseteq [\zeta,\eta]$.

$2.$ $\eta,\zeta$ are limit points of $\langle a_n\rangle $, thus conclude that $\eta,\zeta$ are the smallest and largest limit points of $\langle a_n\rangle $. Thus $\zeta=\sup\mathscr L=\max \mathscr L\; ,\; \eta=\inf\mathscr L=\min \mathscr L$.

$3.$ Observe that if $\zeta=\eta$, the interval degenerates to a single point $p=\zeta=\eta$, which means that the trivial subsequence $\langle a_n\rangle $ converges to $p=\zeta=\eta$. Conversely, if $\lim\limits_{n\to\infty} a_n=p$, all subsequences converge to $p$, so the interval $[\zeta,\eta]$ degenerates to the single point $p=\eta=\zeta$.

NOTE If the sequence is unbounded from above (resp. below) then $$\limsup_{n\to\infty}a_n=+\infty\;\;\left( \liminf_{n\to\infty}a_n=-\infty\right)$$

0
On

I've found that some students have difficulty understanding the usual definitions of limit superior and inferior because these definitions combine the notions of limits, of suprema, and of infima, all of which the student may have learned only recently and not fully internalized. For such students, I like to give the following alternative definitions, equivalent to the usual ones but not containing the words "limit", "supremum", and "infimum". (Nor are there absolute values or visible $\varepsilon$'s.)

A number $t$ is the limit superior of a sequence $\langle a_n\rangle$ if the following two conditions are both satisfied:

  • For every $s<t$ we have $s<a_n$ for infinitely many $n$'s.

  • For every $s>t$ we have $s<a_n$ for only finitely many $n$'s (possibly none).

Similarly, a number $t$ is the limit inferior of a sequence $\langle a_n\rangle$ if the following two conditions are both satisfied:

  • For every $s>t$ we have $s>a_n$ for infinitely many $n$'s.

  • For every $s<t$ we have $s>a_n$ for only finitely many $n$'s (possibly none).

Two additional remarks may be useful:

  1. The definition of lim inf is gotten from the definition of lim sup by simply reversing all inequalities.

  2. The definitions can be easily extended to $\pm\infty$ in place of numbers $t$. Just adopt the convention that, even then, $s$ refers to actual numbers, all of which are $>-\infty$ and $<+\infty$.

1
On

Limit supremum (of a sequence of numbers)

I will try to give intuition only using words, without using mathematical symbols.

  • What is the smallest number which is greater than or equal to infinitely many members of a sequence? --> limit supremum

Story: To be a candidate for the limit supremum, a number has to be greater than or equal to infinitely many members of the sequence. For this, we need to consider tails of the sequence. Why tails? Why not heads? Because given any member, all the members to the left of it (head) are finite in number as the sequence starts on the left and the starting point is known ([avoiding bi-infinite sequences for now] a sequence is a mapping from the set of natural numbers which starts at 1, so the starting side is known. You can tell the first natural number, the first 2 natural numbers, etc. but cannot tell the last 2 natural numbers), only the right side is infinite. So, where there is talk of infinitely many members, you have to consider a tail. Any tail of the sequence is infinitely long. Hence, the supremum of any tail is greater than or equal to infinitely many members of the sequence. Thus, the supremum of any tail is a candidate for limit supremum. Further, as successive tails are subsets of the previous ones, the corresponding supremums form a monotonically decreasing sequence of candidates for the limit supremum. However, the infimum (= limit, in this case) of this sequence of candidates is the smallest number which already bounds infinitely many members of the original sequence from above--which is precisely the purpose. So, we reject all larger candidates, and this infimum, as the best/most parsimonious candidate, is elected as the limit supremum of the original sequence.

Limit infimum (of a sequence of numbers)

  • What is the largest number which is smaller than or equal to infinitely many elements of the sequence? --> limit infimum

You can write the story now.