Skip to main content

Calculus II

Key Concepts of Sequences

Study smarter with Fiveable
Get study guides, practice questions, and cheatsheets for all your subjects. Join 500,000+ students with a 96% pass rate.
Get Started

Why This Matters

Sequences are the foundation of everything you'll encounter in Calculus II, from infinite series to Taylor polynomials to convergence tests. When you're asked whether a series converges, you're really being asked about the behavior of its underlying sequence. The concepts here, convergence, boundedness, monotonicity, and limit evaluation, show up repeatedly in exam questions, often disguised as series problems or applications of specific convergence tests.

Don't just memorize definitions here. You're being tested on your ability to identify sequence behavior, apply convergence criteria, and connect sequences to series. Every concept in this guide links directly to tools you'll use later, so focus on understanding why a sequence converges or diverges, not just whether it does.


Foundational Definitions

Before analyzing sequence behavior, you need to understand what sequences are and how we describe them mathematically. A sequence is a function from the natural numbers to the real numbers, producing an ordered list of outputs.

Definition of a Sequence

  • Ordered list of numbers: each term ana_n corresponds to a natural number index nn, creating a function a:NRa: \mathbb{N} \to \mathbb{R}
  • Terms are indexed starting at n=1n = 1 (or sometimes n=0n = 0): the choice of starting index affects formulas but not convergence behavior
  • Infinite sequences are the focus in Calculus II. Finite sequences rarely appear on exams since convergence only matters when nn \to \infty

Limit of a Sequence

The limit LL is the value that terms approach as nn grows. Formally, limnan=L\lim_{n \to \infty} a_n = L means that for any ϵ>0\epsilon > 0, there exists an integer NN such that anL<ϵ|a_n - L| < \epsilon for all n>Nn > N. In plain terms: no matter how tight a band you draw around LL, the sequence eventually stays inside it permanently.

To actually evaluate limits, you have a few go-to strategies:

  • Algebraic manipulation: factor, rationalize, or divide numerator and denominator by the highest power of nn
  • L'Hôpital's Rule: when you can write an=f(n)a_n = f(n) for a differentiable function f(x)f(x) that produces an indeterminate form like \frac{\infty}{\infty} or 00\frac{0}{0}, differentiate top and bottom with respect to xx
  • Dominant term analysis: in a ratio of polynomials, the highest-degree terms in the numerator and denominator determine the limit. For example, 3n2+n5n2235\frac{3n^2 + n}{5n^2 - 2} \to \frac{3}{5}

Compare: Definition of a Sequence vs. Limit of a Sequence: the definition tells you what a sequence is, while the limit describes where it's heading. FRQs sometimes ask you to state the formal ϵ\epsilon-NN definition, so know both.


Convergence Criteria

Understanding when and why sequences converge is the core skill tested in this unit. Convergence means the terms settle toward a single finite value; divergence means they don't.

Convergence and Divergence of Sequences

  • Convergent sequences approach a finite limit LL: the terms eventually stay arbitrarily close to LL and never "escape"
  • Divergent sequences either grow without bound (±\to \pm\infty), oscillate, or fail to settle. Oscillation is a common exam trap: a sequence like (1)n(-1)^n doesn't blow up, but it still diverges because it never settles on one value
  • The bridge to series: if anLa_n \to L and L0L \neq 0, then an\sum a_n diverges by the Divergence Test. This connection appears constantly, so internalize it now

Monotonic Sequences

A sequence is monotonically increasing if an+1ana_{n+1} \geq a_n for all nn, and monotonically decreasing if an+1ana_{n+1} \leq a_n for all nn. (Strict monotonicity uses >> or << instead.)

Two reliable ways to test monotonicity:

  1. Difference test: compute an+1ana_{n+1} - a_n. If it's always positive, the sequence is increasing. If always negative, decreasing.
  2. Ratio test: for sequences with positive terms, compute an+1an\frac{a_{n+1}}{a_n}. Greater than 1 means increasing; less than 1 means decreasing.

The payoff: Monotonic + bounded = convergent. This is the Monotone Convergence Theorem, and it's a powerful tool when you can't find the limit directly. You don't need to know what the limit is to prove it exists.

Bounded Sequences

  • Bounded above means there exists MM with anMa_n \leq M for all nn; bounded below means anma_n \geq m for all nn; bounded means both
  • Boundedness alone doesn't guarantee convergence. The sequence an=(1)na_n = (-1)^n is bounded between 1-1 and 11 but diverges by oscillation
  • Combined with monotonicity, boundedness ensures convergence. This pairing is especially useful for recursive sequences where you can't easily compute the limit directly

Compare: Monotonic vs. Bounded Sequences: monotonicity describes direction (always increasing or always decreasing), while boundedness describes containment (staying within fixed walls). Neither alone implies convergence, but together they guarantee it. If an FRQ gives you a recursive sequence, check both properties.


Special Sequence Types

Certain sequence families appear so frequently that you should recognize their forms and convergence behavior on sight.

Arithmetic Sequences

An arithmetic sequence has a constant difference dd between consecutive terms, with general term an=a1+(n1)da_n = a_1 + (n-1)d.

These always diverge unless d=0d = 0 (a constant sequence), because the terms grow linearly toward ±\pm\infty. The partial sum formula Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n) is useful for finite sums but confirms that the corresponding series diverges.

Geometric Sequences

A geometric sequence has a constant ratio rr between consecutive terms, with general term an=a1rn1a_n = a_1 \cdot r^{n-1}.

Convergence depends entirely on r|r|:

  • If r<1|r| < 1: the sequence converges to 0
  • If r=1|r| = 1: the sequence is constant (r=1r = 1) or oscillates between ±a1\pm a_1 (r=1r = -1)
  • If r>1|r| > 1: the terms blow up in magnitude

This is also the foundation for geometric series: n=1a1rn1\sum_{n=1}^{\infty} a_1 r^{n-1} converges to a11r\frac{a_1}{1-r} only when r<1|r| < 1.

Recursive Sequences

Recursive sequences are defined by a recurrence relation where each term depends on previous terms, like an+1=f(an)a_{n+1} = f(a_n). The Fibonacci sequence is the classic example: Fn=Fn1+Fn2F_n = F_{n-1} + F_{n-2} with F1=F2=1F_1 = F_2 = 1.

To find the limit of a recursive sequence (when it converges):

  1. Assume the limit LL exists
  2. Since anLa_n \to L and an+1La_{n+1} \to L, substitute LL for both in the recurrence relation
  3. Solve the resulting equation for LL

This technique only finds candidate limits. To prove convergence, you still need to verify that the sequence is monotonic and bounded (or use another convergence argument).

Compare: Arithmetic vs. Geometric Sequences: arithmetic sequences grow linearly and always diverge (when d0d \neq 0), while geometric sequences grow exponentially and converge only when r<1|r| < 1. When classifying a sequence's long-term behavior, identify which type you're dealing with first.


Key Theorems and Techniques

These tools help you prove convergence when direct computation isn't straightforward.

Squeeze Theorem for Sequences

If you can trap a sequence between two others that share the same limit, the trapped sequence must converge to that limit too. Formally: if bnancnb_n \leq a_n \leq c_n for all nn beyond some point, and limnbn=limncn=L\lim_{n \to \infty} b_n = \lim_{n \to \infty} c_n = L, then limnan=L\lim_{n \to \infty} a_n = L.

This is ideal for oscillating factors. For example, an=sinnna_n = \frac{\sin n}{n}: since 1sinn1-1 \leq \sin n \leq 1, you get 1nsinnn1n\frac{-1}{n} \leq \frac{\sin n}{n} \leq \frac{1}{n}. Both bounds converge to 0, so an0a_n \to 0.

The main challenge is finding good bounding sequences. Look for terms you can replace with their maximum or minimum possible values.

Infinite Series and Their Relationship to Sequences

A series n=1an\sum_{n=1}^{\infty} a_n is defined as the limit of its partial sums SN=n=1NanS_N = \sum_{n=1}^{N} a_n. So series convergence really means the sequence {SN}\{S_N\} converges.

Two critical facts connect sequences to series:

  • If an\sum a_n converges, then limnan=0\lim_{n \to \infty} a_n = 0. But the converse is false. The harmonic series 1n\sum \frac{1}{n} diverges even though 1n0\frac{1}{n} \to 0. This is probably the most important counterexample in the course.
  • If limnan0\lim_{n \to \infty} a_n \neq 0, then an\sum a_n diverges. This is the Divergence Test (also called the nnth-Term Test). It can only prove divergence, never convergence.

Sequence behavior also drives the Ratio Test, Root Test, and Comparison Tests, all of which analyze sequences to determine series convergence.

Compare: Squeeze Theorem vs. Monotone Convergence Theorem: the Squeeze Theorem works when you can trap a sequence between two others with known limits. The Monotone Convergence Theorem works when you can show a sequence is bounded and always moving in one direction. Choose based on what's easier to establish for the given problem.


Quick Reference Table

ConceptBest Examples
Convergent sequencesGeometric with r<1\|r\| < 1, 1n\frac{1}{n}, bounded monotonic sequences
Divergent sequencesArithmetic (d0d \neq 0), geometric with r1\|r\| \geq 1, (1)n(-1)^n
Monotone Convergence TheoremRecursive sequences, sequences defined by ratios
Squeeze Theorem applicationssinnn\frac{\sin n}{n}, (1)nn2\frac{(-1)^n}{n^2}, bounded oscillating terms
Limit evaluation techniquesL'Hôpital's Rule, algebraic manipulation, dominant term analysis
Sequence-series connectionPartial sums, Divergence Test, term behavior as nn \to \infty
Bounded but divergent(1)n(-1)^n, sinn\sin n
Recursive limit techniqueSet L=f(L)L = f(L) and solve

Self-Check Questions

  1. A sequence is bounded and monotonically decreasing. What can you conclude about its convergence, and which theorem guarantees this?

  2. Compare the long-term behavior of the arithmetic sequence an=3+2na_n = 3 + 2n and the geometric sequence bn=3(0.5)nb_n = 3 \cdot (0.5)^n. Which converges, and why?

  3. Given an=ncosnn2+1a_n = \frac{n \cos n}{n^2 + 1}, which theorem would you use to find limnan\lim_{n \to \infty} a_n, and what bounding sequences would you choose?

  4. If limnan=5\lim_{n \to \infty} a_n = 5, what does this tell you about the series n=1an\sum_{n=1}^{\infty} a_n? Explain using the Divergence Test.

  5. A recursive sequence is defined by a1=2a_1 = 2 and an+1=12(an+6)a_{n+1} = \frac{1}{2}(a_n + 6). Assuming the sequence converges, find its limit. What additional properties would you need to verify to prove convergence?

Key Concepts of Sequences to Know for Calculus II