2. Calculus II

Sequences And Series

Study sequences, convergence tests, power series, and Taylor series representation of functions with radius and interval of convergence.

Sequences and Series

Hey there students! šŸ‘‹ Welcome to one of the most fascinating topics in calculus - sequences and series! In this lesson, we'll explore how infinite lists of numbers can converge to specific values, how we can represent complex functions as infinite polynomials, and discover the amazing world of power series. By the end of this lesson, you'll understand convergence tests, power series, Taylor series, and how to find their radius and interval of convergence. Get ready to unlock the secrets of infinity! ✨

Understanding Sequences and Their Convergence

A sequence is simply an ordered list of numbers that follows a specific pattern. Think of it like a playlist where each song (term) has a specific position. We write sequences as $a_1, a_2, a_3, ..., a_n, ...$ or more compactly as $\{a_n\}$.

For example, consider the sequence $\{1/n\}$: $1, 1/2, 1/3, 1/4, 1/5, ...$. As we go further in this sequence, the terms get smaller and smaller, approaching zero. We say this sequence converges to 0.

A sequence $\{a_n\}$ converges to a limit $L$ if we can make the terms $a_n$ as close to $L$ as we want by choosing $n$ large enough. Mathematically, we write $\lim_{n \to \infty} a_n = L$.

Here's a real-world example: Imagine you're saving money šŸ’°, and each month you save half of what you saved the previous month, starting with $100. Your savings sequence would be: $100, 50, 25, 12.50, 6.25, .... This sequence converges to 0, meaning eventually your monthly savings approach zero.

Some sequences diverge, like $\{n^2\}$: $1, 4, 9, 16, 25, ..., which grows without bound. Others oscillate, like $\{(-1)^n\}$: $-1, 1, -1, 1, -1, ...$, which never settles on a single value.

Series and Convergence Tests

A series is what we get when we add up all the terms of a sequence. If we have a sequence $\{a_n\}$, the corresponding series is $\sum_{n=1}^{\infty} a_n = a_1 + a_2 + a_3 + ...$.

The most famous example is the geometric series: $\sum_{n=0}^{\infty} ar^n = a + ar + ar^2 + ar^3 + ...$. This series converges to $\frac{a}{1-r}$ when $|r| < 1$ and diverges when $|r| \geq 1$.

Think about this practically: if you fold a piece of paper in half repeatedly, each fold creates a thickness that's a geometric sequence. After $n$ folds, the thickness approaches a finite limit (though physically impossible due to paper limitations!).

Essential Convergence Tests

The Ratio Test is incredibly useful for series with factorials or exponentials. For a series $\sum a_n$, we calculate $L = \lim_{n \to \infty} \left|\frac{a_{n+1}}{a_n}\right|$. If $L < 1$, the series converges; if $L > 1$, it diverges; if $L = 1$, the test is inconclusive.

The Root Test works similarly: $L = \lim_{n \to \infty} \sqrt[n]{|a_n|}$. Same rules apply for convergence.

The Integral Test compares a series to an improper integral. If $f(x)$ is positive, decreasing, and continuous, then $\sum_{n=1}^{\infty} a_n$ and $\int_1^{\infty} f(x)dx$ either both converge or both diverge.

The Comparison Test is like having a mathematical referee šŸ†. If $0 \leq a_n \leq b_n$ and $\sum b_n$ converges, then $\sum a_n$ also converges. If $\sum a_n$ diverges, then $\sum b_n$ also diverges.

Power Series: Functions as Infinite Polynomials

A power series is a series of the form $\sum_{n=0}^{\infty} a_n(x-c)^n = a_0 + a_1(x-c) + a_2(x-c)^2 + a_3(x-c)^3 + ...$, where $c$ is the center and $a_n$ are coefficients.

Power series are amazing because they let us represent complicated functions as infinite polynomials! šŸŽÆ For instance, the exponential function can be written as: $e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + ...$

Radius and Interval of Convergence

Every power series has a radius of convergence $R$, which determines where the series converges. The series:

  • Converges absolutely for $|x-c| < R$
  • Diverges for $|x-c| > R$
  • May or may not converge for $|x-c| = R$

To find $R$, we typically use the ratio test: $\frac{1}{R} = \lim_{n \to \infty} \left|\frac{a_{n+1}}{a_n}\right|$ (if the limit exists).

The interval of convergence includes the radius of convergence plus any endpoints where the series converges. We must test the endpoints $x = c-R$ and $x = c+R$ separately.

For example, consider $\sum_{n=1}^{\infty} \frac{x^n}{n}$. Using the ratio test: $\lim_{n \to \infty} \left|\frac{1/(n+1)}{1/n}\right| = \lim_{n \to \infty} \frac{n}{n+1} = 1$, so $R = 1$. Testing endpoints: at $x = 1$, we get the harmonic series $\sum \frac{1}{n}$ (diverges); at $x = -1$, we get the alternating harmonic series $\sum \frac{(-1)^n}{n}$ (converges). So the interval of convergence is $[-1, 1)$.

Taylor Series: The Ultimate Function Representation

Taylor series represent functions as power series centered at a specific point. For a function $f(x)$ that's infinitely differentiable at $x = a$:

$$f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n = f(a) + f'(a)(x-a) + \frac{f''(a)}{2!}(x-a)^2 + ...$$

When $a = 0$, we call it a Maclaurin series.

Some fundamental Taylor series include:

  • $e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!}$ (converges for all real $x$)
  • $\sin x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!}$ (converges for all real $x$)
  • $\cos x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!}$ (converges for all real $x$)

These series are used in calculators and computers to compute trigonometric and exponential functions! šŸ“± When you press "sin" on your calculator, it's actually computing the first several terms of the Taylor series.

Real-world applications include GPS systems (which use Taylor series for satellite position calculations), computer graphics (for smooth curve rendering), and financial modeling (for option pricing using the Black-Scholes equation).

Conclusion

Sequences and series form the backbone of advanced calculus and have incredible practical applications. We've learned that sequences can converge to limits, series can sum to finite values even with infinitely many terms, and power series can represent complex functions as infinite polynomials. The radius and interval of convergence tell us exactly where these representations are valid, while Taylor series provide the ultimate tool for function approximation. These concepts power everything from your smartphone's calculations to NASA's spacecraft navigation systems! šŸš€

Study Notes

• Sequence: An ordered list of numbers $\{a_n\}$ that may converge to a limit $L$

• Series: The sum of sequence terms $\sum_{n=1}^{\infty} a_n$

• Geometric Series: $\sum_{n=0}^{\infty} ar^n = \frac{a}{1-r}$ when $|r| < 1$

• Ratio Test: $L = \lim_{n \to \infty} \left|\frac{a_{n+1}}{a_n}\right|$; converges if $L < 1$, diverges if $L > 1$

• Root Test: $L = \lim_{n \to \infty} \sqrt[n]{|a_n|}$; same convergence rules as ratio test

• Power Series: $\sum_{n=0}^{\infty} a_n(x-c)^n$ with center $c$ and radius of convergence $R$

• Radius of Convergence: $\frac{1}{R} = \lim_{n \to \infty} \left|\frac{a_{n+1}}{a_n}\right|$

• Interval of Convergence: $(c-R, c+R)$ plus any convergent endpoints

• Taylor Series: $f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n$

• Key Maclaurin Series: $e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!}$, $\sin x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!}$, $\cos x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!}$

Practice Quiz

5 questions to test your understanding

Sequences And Series — Mathematics | A-Warded