MIT18 330S12 Chapter1 PDF
MIT18 330S12 Chapter1 PDF
MIT18 330S12 Chapter1 PDF
Throughout these notes we’ll keep running into Taylor series and Fourier se
ries. It’s important to understand what is meant by convergence of series be
fore getting to numerical analysis proper. These notes are sef-contained, but
two good extra references for this chapter are Tao, Analysis I; and Dahlquist
and Bjorck, Numerical methods.
A sequence is a possibly infinite collection of numbers lined up in some
order:
a1 , a2 , a3 , . . .
a1 + a2 + a3 + . . .
We’ll consider real numbers for the time being, but the generalization to
complex numbers is a nice exercise which mostly consists in replacing each
occurrence of an absolute value by a modulus.
The questions we address in this chapter are:
• When can we use the usual rules for finite sums in the infinite case?
1
6 CHAPTER 1. SERIES AND SEQUENCES
|aj − b| ≤ f.
A sequence (aj )∞
j=0 is said to converge to b if it is f-close to b for all f > 0
(however small). We then write aj → b, or limj→∞ aj = b.
2
1.1. CONVERGENCE VS. DIVERGENCE
o∞
Example 1. Consider j=0 2−j , i.e.,
1 1 1
1+ + + + ....
2 4 8
This series converges to the limit 2. To prove this, consider the partial sum
N
N
SN = 2−j .
j=0
provided the condition |x| < 1 holds. This expression can also be seen as the
Taylor expansion of 1/(1−x), centered at zero, and with radius of convergence
1.
1 1 1
1+ + + + ....
2 3 4
This series diverges. To see this, let us show that the N partial sum is
comparable to log(N ). We use the integral test
N N +1
N 1 1
SN = ≥ dx.
j=1
j 1 x
3
CHAPTER 1. SERIES AND SEQUENCES
Example 4. Consider
∞
N 1
,
j=1
nq
for some q > 0. As a function of q, this is the Riemann zeta function ζ(q).
(A fascinating object for number theorists.)
We’ve seen above that q = 1 leads to divergence. A similar integral test
would show that the series converges when q > 1, while it diverges when
q ≤ 1.
Definition 3. A series ∞
o o∞
j=0 aj is said to be absolutely convergent if j=0 |aj |
converges. If a series is not absolutely convergent, but nevertheless converges,
we say that it is conditionally convergent.
Example 5. Consider
1 1 1 1 1
1− + − + − + ....
2 3 4 5 6
This series is not absolutely convergent, because it reduces to the harmonic
series when absolute values of the terms are taken. It is nevertheless con
vergent, hence conditionally convergent, as the following argument shows.
Assume N is even, and let
N
N (−1)j
SN = .
j=1
j
1 1 1
− = .
j j+1 j(j + 1)
4
1.1. CONVERGENCE VS. DIVERGENCE
1 1
A fortiori, j(j+1)
≤ j2
, so
N −1
N 1
SN ≤ 2
,
j=1,3,5,...
j
where aj > 0. If (aj ) converges to zero (as a sequence), then the series is
convergent.
The main problem with conditionally convergent series is that if the terms
are rearranged, then the series may converge to a different limit. The “safe
zone” for handling infinite sums as if they were finite is when convergence is
absolute.
Theorem 2. Let f : Z+ → Z+ be a bijection,
o i.e., f is a rearrangement of the
nonnegative integers. Consider a series ∞j=0 aj . If this series is absolutely
convergent, then
N∞ N∞
aj = af (j) .
j=0 j=0
5
CHAPTER 1. SERIES AND SEQUENCES
1 1 1 1
− + − + ...
3 4 5 6
which as we have seen equals log(2) − (1 − 1/2) = log(2) − 1/2 = .193147 . . ..
We can rearrange the terms of the series by assigning two negative terms for
each positive term:
1 1 1 1 1 1 1
− − + − − + + ...
3 4 6 5 8 10 7
This series is also convergent, but happens to converge to (log(2) − 1)/2 =
−.153426 . . ..
• Swapping sums:
∞ N
N ∞ ∞ N
N ∞
aj,k = aj,k
j=0 k=0 k=0 j=0
Note in passing that the same is true for integrals of unbounded integrands
or integrals over unbounded domains: they need to be absolutely convergent
(integrability of the absolute value of the function) for the integral swap to be
legitimate. This is the content of Fubini’s theorem. Again, there are striking
counter-examples when the integrals are not absolutely convergent and the
swap doesn’t work (See Tao, Analysis I).
6
1.2. THE BIG-O NOTATION
7
MIT OpenCourseWare
http://ocw.mit.edu
For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.