Calculus II Lesson 18: Describing Sequences

  1. Presentations
  2. Questions
    1. Upcoming
  3. Describing Sequences
    1. Summary
    2. Closed Forms
    3. Even and Odd
    4. Exercise
  4. Recurrences
    1. Recurrences
    2. Fibonacci
    3. Limits
  5. Continuity
    1. Theorem
    2. In other words
  6. Kinds of sequences
    1. Arithmetic Sequences
    2. Examples
    3. Limits
    4. More sequences
    5. Geometric sequences
    6. Exercise
  7. Next week

Presentations

Questions

Upcoming

Describing Sequences

For the most part, last time we worked with closed-form expressions, where a formula describes each element of the sequence, just in terms of $n$. Finding such closed-form expressions is kind of an art form.

For example, consider the following sequence:

\[0, \frac{1}{2}, \frac{3}{4}, \frac{7}{8}, \frac{15}{16}, \ldots\]

It might not be obvious what the closed form expression for this sequence would be. It really just depends on how you look at the number. Here, I’d recommend starting with the denominators: 1, 2, 4, 8, 16. These are all powers of 2, so the denominator of the term $a_n$ can be expressed as $2^n$. Then notice that the numerator is just 1 less than that, and so $a_n = \frac{2^n - 1}{2^n}$.

This can help us find the limits of such a sequence: perhaps, eyeballing it, we can tell that this sequence converges to 1, but how might we be sure? We can compute the limit of $\frac{2^n - 1}{2^n}$. To do this, notice that we can separate this fraction out to $1 - \frac{1}{2^n}$, and so, as $n \rightarrow \infty$, this approaches $1 - 0$, or just $1$.

Summary

Closed Forms

Try to find closed form expressions for the following sequences:

Even and Odd

Exercise

Find a closed form expression for the following sequences:

Recurrences

Recurrences

Fibonacci

Limits

Suppose $\lim\limits_{n \rightarrow \infty} \frac{a_{n+1}}{a_n} = L$. Then notice:

Continuity

Recall: $f$ continuous at $x = a$ if $a$ is in the domain of $f$, and

\[\lim_{x \rightarrow a} f(x) = f(a)\]

(Draw example graph)

Theorem

Suppose $a$ is in the domain of $f(x)$. Then $f$ is continuous at $x = a$ if and only if whenever $(a_n)$ is a sequence such that each $a_n$ is in the domain of $f$, and

\[\lim_{n \rightarrow \infty} a_n = a\]

then

\[\lim_{n \rightarrow \infty} f(a_n) = f(a)\]

In other words

“$f$ is continuous” means:

\[f(\lim_{n \rightarrow \infty} a_n) = \lim_{n \rightarrow \infty} f(a_n)\]

Kinds of sequences

Exercise: Find the next two terms of each of these sequences:

  1. 0, 2, 4, 6, 8, …
  2. 25, 29, 33, 37, …
  3. 1, -2, -5, -8, -11, …

What do these sequences have in common?

Arithmetic Sequences

Examples

Closed forms for:

  1. 0, 2, 4, 6, 8, …:
  2. 25, 29, 33, 37, …:
  3. 1, -2, -5, -8, -11, …:
Answers:
  1. $a_n = 2n$
  2. $b_n = 25 + 4n$
  3. $c_n = 1 - 3n$

Limits

If $a_n$ is an arithmetic sequence, then $\lim\limits_{n \rightarrow \infty} a_n = \pm \infty$. Why?

More sequences

Geometric sequences

Exercise

Come up with examples of geometric sequences with the following properties:

In each case, what is $\lim\limits_{n \rightarrow \infty} a_n$?

Next week