Skip to main content

Asymptotic Estimates

We will gradually develop an understanding on asymptotic estimates over the course. For now, we will deal with the most basic definitions. Let {an}\{a_n\} be a sequence of real numbers. We write limnan=c\lim_{n \rightarrow \infty} a_n = c (or anca_n \rightarrow c) if

(ϵ>0)(n0N)(nn0)(ancϵ)(\forall \epsilon >0) (\exists n_0 \in {\mathbb N}) (\forall n \ge n_0) (|a_n - c| \leq \epsilon)

Such a sequence is said to converge (when it has such a finite limit cc), otherwise it is said to diverge (when such a finite limit does not exist).

We say that {an}\{a_n\} is bounded if (C,n0)(nn0)anC(\exists C, n_0)(\forall n \ge n_0)|a_n| \leq C. One can naturally define the notion of sequences that are bounded from above and bounded from below. From this, it follows that every convergent sequence is bounded.

Example 19

Find a divergent sequence {an}\{a_n\} for which {(an)2}\{(a_n)^2\} is convergent.

Proof:

We can define an=(1)na_n = (-1)^n, which alternates between 1-1 and 11, while an2a_n^2 is all ones.

Notice that, in the above example, {an}\{a_n\} is bounded, so boundedness does not necessarily imply convergence (while convergence implies boundedness). However, with an additional property, one can guarantee convergence.

Theorem 20

If {an}\{a_n\} is non-decreasing and bounded from above, then {an}\{a_n\} converges.

Exercise 50

Suppose anKa_n \rightarrow K and bnLb_n \rightarrow L. Show that

  • an+bnK+La_n + b_n \rightarrow K+L
  • anbnKLa_n \cdot b_n \rightarrow K \cdot L
  • If L0L \neq 0, an/bnK/La_n/b_n \rightarrow K/L
  • If an0a_n \geq 0, then anK\sqrt{a_n} \rightarrow \sqrt{K}

An important relation about limits (that we would state here without proof) is the following:

Proposition 1

limn(1+1/n)n=e\lim_{n \rightarrow \infty} (1+1/n)^n = e

Notice that one can also see this as a definition. The sequence an=(1+1/n)na_n = (1+1/n)^n is strictly increasing and bounded, so from Theorem 20, the limit exists, and we call it ee.

Example 20

Define the sequence {an}\{a_n\} by a0=1a_0 = 1 and an+1=(2)ana_{n+1} = (\sqrt{2})^{a_n}. Prove that ana_n converges.

Proof:

We will show that ana_n is increasing and bounded from above by 22. First, we show that {an}\{a_n\} is less than 22 by induction. The base case when n=0n=0 is true. Now assume that it is true for all nn0n \leq n_0 and consider an0+1=2an0/2a_{n_0+1} = 2^{a_{n_0}/2}. Since an0<2a_{n_0} < 2 by induction hypothesis, we have that an0+1<22/2=2a_{n_0+1} < 2^{2/2} = 2. To show that ana_n is increasing, we first need the fact that 2x>x22^x > x^2 for all x[1,2)x \in [1,2) (well, just plot the curve and it will be clear 😊). Next, we have an+12=2an>an2a_{n+1}^2 = 2^{a_n} > a_n^2 (since an[1,2)a_n \in [1,2)1). This implies that an+1>ana_{n+1} > a_n for all nn.

With some more effort, one can show that the sequence in the above example converges to 22. This is left as an exercise.

Exercise 51

Prove that the above sequence converges to two.

We say that ana_n is asymptotically equal to bnb_n if limnan/bn=1\lim_{n \rightarrow \infty} a_n/b_n =1. When two sequences are asymptotically equal, it means that the two numbers are practically the same for every purpose, as long as nn is sufficiently large. This is denoted by anbna_n \sim b_n.

Exercise 52

Prove:

  • 3n+103n3n +10 \sim 3n
  • n210n+1n2n^2 - 10n +1 \sim n^2
Exercise 53

Let XX be the set of sequences that have only positive values. Prove that \sim defines an equivalence relation on XX, i.e., prove that:

  • anana_n \sim a_n for all {an}\{a_n\}.
  • anbna_n \sim b_n if and only if bnanb_n \sim a_n
  • anbna_n \sim b_n and bncnb_n \sim c_n implies that ancna_n \sim c_n.

A concept similar to asymptotic equality is that of eventually true statements. We say that a predicate P(n)P(n) eventually holds if it holds for sufficiently large nn. That is,

(n0)(nn0)P(n)(\exists n_0)(\forall n \ge n_0) P(n)

For instance, the sequence 2,3,2,1,1,1,2,3,2,1,1,1,\ldots is eventually constant (at some point, they are all ones).

Exercise 54

If a sequence {an}\{a_n\} is eventually constant, then it converges.

The converse of the above exercise is false, e.g., the sequence an=1+1/na_n = 1+1/n converges to one, but it is not eventually constant.

Footnotes

  1. Previously we proved that an<2a_n < 2. Analogously we can prove that an1a_n \ge 1.