upgrade
upgrade

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. Master these fundamentals now, and series convergence tests will feel like natural extensions rather than new material.


Foundational Definitions

Before analyzing sequence behavior, you need to understand what sequences are and how we describe them mathematically. A sequence is simply 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 terms approach—formally, limnan=L\lim_{n \to \infty} a_n = L means for any ϵ>0\epsilon > 0, there exists NN such that anL<ϵ|a_n - L| < \epsilon for all n>Nn > N
  • Algebraic manipulation is your primary tool—factor, rationalize, or divide by the highest power of nn to evaluate limits
  • L'Hôpital's Rule applies when you can write an=f(n)a_n = f(n) for a differentiable function f(x)f(x) with indeterminate form

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 often 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
  • Convergence of ana_n to L0L \neq 0 means an\sum a_n diverges by the Divergence Test—this connection appears constantly

Monotonic Sequences

  • Monotonically increasing means an+1ana_{n+1} \geq a_n for all nn; monotonically decreasing means an+1ana_{n+1} \leq a_n
  • Test monotonicity by examining an+1ana_{n+1} - a_n (positive = increasing) or an+1an\frac{a_{n+1}}{a_n} (greater than 1 = increasing for positive terms)
  • Monotonic + bounded = convergent—this is the Monotone Convergence Theorem, a powerful tool when direct limit evaluation fails

Bounded Sequences

  • Bounded above means there exists MM with anMa_n \leq M for all nn; bounded below means anma_n \geq m; bounded means both
  • Boundedness alone doesn't guarantee convergence—the sequence an=(1)na_n = (-1)^n is bounded but diverges by oscillation
  • Combined with monotonicity, boundedness ensures convergence—this pairing is essential for proving convergence without finding the explicit limit

Compare: Monotonic vs. Bounded Sequences—monotonicity describes direction (always increasing or decreasing), while boundedness describes containment (staying within limits). 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 instantly. Knowing the general term formula lets you quickly determine limits and behavior.

Arithmetic Sequences

  • Constant difference dd between terms—the general term is an=a1+(n1)da_n = a_1 + (n-1)d, producing a linear pattern
  • Always diverge (unless d=0d = 0)—since an±a_n \to \pm\infty as nn \to \infty when d0d \neq 0
  • Sum formula Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n) applies to partial sums—useful for finite sums but confirms divergence for series

Geometric Sequences

  • Constant ratio rr between terms—the general term is an=a1rn1a_n = a_1 \cdot r^{n-1}
  • Convergence depends entirely on r|r|—converges to 0 if r<1|r| < 1, diverges if r1|r| \geq 1 (oscillates when r1r \leq -1)
  • Foundation for geometric series—the series a1rn1\sum a_1 r^{n-1} converges to a11r\frac{a_1}{1-r} only when r<1|r| < 1

Recursive Sequences

  • Defined by a recurrence relation—each term depends on previous terms, like an+1=f(an)a_{n+1} = f(a_n) or an=an1+an2a_n = a_{n-1} + a_{n-2}
  • Fibonacci sequence is the classic example—Fn=Fn1+Fn2F_n = F_{n-1} + F_{n-2} with F1=F2=1F_1 = F_2 = 1
  • Finding limits often requires assuming convergence: if liman=L\lim a_n = L exists, substitute LL into the recurrence and solve

Compare: Arithmetic vs. Geometric Sequences—arithmetic sequences grow linearly (always diverge), while geometric sequences grow exponentially (converge only when r<1|r| < 1). When asked to classify 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 possible. Mastering these techniques separates students who can handle tricky exam problems from those who can't.

Squeeze Theorem for Sequences

  • If bnancnb_n \leq a_n \leq c_n and limbn=limcn=L\lim b_n = \lim c_n = L, then liman=L\lim a_n = L—the sequence is "squeezed" to the same limit
  • Ideal for oscillating factors—sequences like an=sinnna_n = \frac{\sin n}{n} are bounded by ±1n\pm\frac{1}{n}, both converging to 0
  • Requires finding bounding sequences—look for terms you can replace with their maximum/minimum values

Infinite Series and Their Relationship to Sequences

  • A series n=1an\sum_{n=1}^{\infty} a_n is the limit of partial sums SN=n=1NanS_N = \sum_{n=1}^{N} a_n—series convergence means the sequence {SN}\{S_N\} converges
  • If an\sum a_n converges, then liman=0\lim a_n = 0—but the converse is false (harmonic series is the classic counterexample)
  • Sequence behavior informs series tests—the Ratio Test, Root Test, and Comparison Tests all analyze sequences to determine series convergence

Compare: Squeeze Theorem vs. Monotone Convergence Theorem—Squeeze works when you can trap a sequence between two others with known limits; Monotone Convergence 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 sequence.


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?