Notes On Infinite Sequences and Series:, A, A, - . - , and Its N-TH As A
Notes On Infinite Sequences and Series:, A, A, - . - , and Its N-TH As A
Notes On Infinite Sequences and Series:, A, A, - . - , and Its N-TH As A
3n 7
2. With a recursive denition. E.g.: the Fibonacci sequence 1, 1, 2, 3, 5, 8, . . . ,
in which each term is the sum of the two previous terms:
F
1
= 1
F
2
= 1
F
n+1
= F
n
+ F
n1
1.2. Limit of a Sequence. We say that a sequence a
n
converges to
a limit L if the dierence |a
n
L| can be made as small as we wish by
taking n large enough. We write a
n
L, or more formally:
lim
n
a
n
= L.
E.g.:
lim
n
1
n
= 0 .
Date: 10/12/1999.
1
2 MIGUEL A. LERMA
If a sequence does not converge we say that it diverges. E.g., the
following sequences diverge:
n = 1, 2, 3, 4, diverges (to +)
(1)
n
= 1, 1, 1, 1, diverges
1.3. Limit Laws for Sequences. If lim
n
a
n
= A and lim
n
b
n
= B,
then:
lim
n
(a
n
+ b
n
) = A+ B
lim
n
(a
n
b
n
) = AB
lim
n
(a
n
b
n
) = AB
lim
n
(a
n
/b
n
) = A/B (provided B = 0)
So, a complicated limit such as L = lim
n
1 +
1
n
3 +
1
10
n
can be computed
by replacing smaller parts of it with their limits 1/n 0, 1/10
n
0:
L =
1 + 0
3 + 0
=
1
3
.
1.4. Squeeze Law. If a
n
c
n
b
n
, and a
n
and b
n
have the same
limit: a
n
L, b
n
L, then c
n
has also the same limit: c
n
L. This
can be used to compute limits such as the following one:
lim
n
sin n
n
.
In this case we have:
1
n
sin n
n
1
n
.
Since 1/n 0 and 1/n 0 then
sin n
n
0 also.
1.5. Limits of Functions of Sequences. If a
n
= f(n) for some func-
tion f and lim
xn
f(x) = L, then lim
n
a
n
= L. This basically allows us to
replace limits of sequences with limits of functions. In particular this is
useful for using LH opitals rule in computing limits of sequences. E.g:
lim
n
e
n
n
= lim
x
e
x
x
= (LHopitals rule) = lim
x
e
x
1
= .
NOTES ON INFINITE SEQUENCES AND SERIES 3
1.6. Bounded Monotonic Sequences. A monotonic sequence is a
sequence that always increases or always decreases. For instance, 1/n is
a monotonic decreasing sequence, and n = 1, 2, 3, 4, . . . is a monotonic
increasing sequence.
A sequence is bounded if its terms never get larger in absolute
value than some given constant. For instance 1/n is bounded, because
|1/n| < 2 for every n, but n is unbounded.
A property of any bounded (increasing or decreasing) sequence is
that it always has a (nite) limit. This might not seem very useful if
what we want is to actually compute the limit, but in some cases it
may help. For instance, consider the sequence dened recursively in
the following way:
a
1
=
6 ,
a
n+1
=
6 + a
n
(n 1) .
It can be shown that a
n
it is a bounded monotonic increasing sequence,
1
hence it has some limit A:
lim
n
a
n
= A.
Now, taking limits on both sides of a
n+1
=
6 + a
n
(here we use that
the sequence has a limit) we get that A =
6 + A, i.e., A
2
A6 = 0.
Solving this second degree equation we get A = 3 or A = 2. Since
the sequence is positive, the limit cannot be negative, hence it must be
A = 3:
lim
n
a
n
= 3 .
1.7. Homework Problems. E&P,
2
11.2: 942, 54, 56.
2. Infinite Series
2.1. Series. An innite series is an expression of the form
n=1
a
n
= a
1
+ a
2
+ a
3
+ ,
1
Proof: We use induction. First note that 0 < a
1
=
6 < 3. By adding 6 and
taking square roots we get
6 <
6 +a
1
<
6 + 3 = 3, i.e.: a
1
< a
2
< 3. Now
assume a
n
< a
n+1
< 3 for a given n 1 (induction hypothesis). Again, by adding
6 and taking square roots we get
6 +a
n
<
6 +a
n+1
< 3, i.e. a
n+1
< a
n+2
< 3
(induction step). From here we get that a
n
< a
n+1
< 3 for every n 1, which
proves both, a
n
is increasing and is bounded by 3.
2
C.H. Edwards, Jr. & David E. Penney: Calculus with Analytic Geometry, 5th
edition, Prentice Hall.
4 MIGUEL A. LERMA
where {a
n
} is a sequence of numberssometimes the series starts at
n = 0 or some other term instead of n = 1. Its Nth partial sum is
S
N
=
N
n=1
a
n
= a
1
+ a
2
+ a
3
+ + a
N
.
2.2. Sum of a Series. The sum
S =
n=1
a
n
of a series is dened as the limit of its partial sums
S = lim
N
S
N
= lim
N
N
n=1
a
n
if it existsit this case we say that the series converges. For instance,
consider the following series:
n=1
1
2
n
=
1
2
+
1
4
+
1
8
+
Its partial sum is
S
N
=
N
n=1
1
2
n
=
1
2
+
1
4
+
1
8
+
1
2
N
= 1
1
2
N
.
Hence, its sum is
S = lim
N
S
N
= lim
N
_
1
1
2
N
_
= 1 ,
i.e.:
n=1
1
2
n
= 1 .
A series may or may not have a sum. For instance, in the following
series:
n=0
(1)
n
= 1 1 + 1 1 + 1 1 +
the sequence of partial sums S
N
= 1, 0, 1, 0, 1, 0, . . . diverges, and the
series has no sum.
NOTES ON INFINITE SEQUENCES AND SERIES 5
2.3. Telescopic Series. Telescopic series are series for which all terms
of its partial sum can be canceled except the rst and last ones. For
instance, consider the following series:
n=1
1
n(n + 1)
=
1
2
+
1
6
+
1
12
+
Its nth term can be rewritten in the following way:
a
n
=
1
n(n + 1)
=
1
n
1
n + 1
.
Hence, its Nth partial sum becomes:
S
N
=
N
n=1
1
n(n + 1)
=
N
n=1
_
1
n
1
n + 1
_
=
_
1
1
2
_
+
_
1
2
1
3
_
+
_
1
3
1
4
_
+
_
1
N
1
N + 1
_
= 1
1
N + 1
.
Hence:
n=1
1
n(n + 1)
= lim
N
_
1
1
N + 1
_
= 1 .
2.4. Geometric series. A geometric series
n=0
a
n
is a series in which
each term is a xed multiple of the previous one: a
n+1
= r a
n
, where r
is called the ratio. A geometric series can be rewritten in this way:
n=0
a r
n
= a + a r + a r
2
+ a r
3
+ .
If |r| < 1 its sum is
n=0
a r
n
=
a
1 r
.
Note that a is the rst term of the series. If a = 0 and |r| 1, the
series diverges.
Examples:
n=0
1
2
n
= 1 +
1
2
+
1
4
+
1
8
+ =
1
1
1
2
= 2 .
6 MIGUEL A. LERMA
n=0
(1)
n
2
n
= 1
1
2
+
1
4
1
8
+ =
1
1 (
1
2
)
=
2
3
.
Note that in the last example r = a
n+1
/a
n
=
(1)
n+1
/2
n+1
(1)
n
/2
n
= 1/2.
2.5. Termwise addition and multiplication of series. If
n=1
a
n
= A
and
n=1
a
n
= B then
n=1
(a
n
b
n
) =
n=1
a
n
+
n=1
b
n
= AB
and
n=1
c a
n
= c
n=1
a
n
= c A,
where c is a constant.
2.6. The nth Term Test for Divergence. If a
n
does not converge
to 0, then
n=1
a
n
does not convergeNote: the reciprocal is not true
in general! (a counterexample is the harmonic series; see below.)
For instance, the series
n=1
sin n does not converge because sin n does
not converge to 0.
2.7. The Harmonic Series. The series
n=1
1
n
= 1 +
1
2
+
1
3
+
1
4
+
is called harmonic series.
The harmonic series diverges. This can be proven graphically, by
looking at the graph of the function f(x) = 1/x (g. 1). The terms
of the harmonic series are the areas of the rectangles. Their sum is
greater than the area under the graph of f(x) = 1/x between 1 and
, which can be computed with the following improper integral:
_
1
1
x
dx = lim
M
_
M
1
1
x
dx = lim
M
[ln x]
M
1
= lim
M
(ln M ln 1) = .
NOTES ON INFINITE SEQUENCES AND SERIES 7
1/4 1/3 1/2 1
y=1/x
0
0.2
0.4
0.6
0.8
1
1.2
1.4
1 2 3 4 5
x
Figure 1. The harmonic series
Hence,
n=1
1
n
= .
2.8. Series that are Eventually the Same. If a
n
= b
n
for every n
large enough, then the series
n=1
a
n
and
n=1
b
n
either both converge or
both diverge. In other words, the convergence or divergence of a series
depends only on its tail
n=k
a
n
.
2.9. Homework. E&P, 11.3: 137, 49, 50, 64. Maple Worksheet:
WS1 (due 10/7/99).
3. Taylor Series and Taylor Polynomials
3.1. Linear Approximation of a Function. Assume that we want
to compute the value of a function such as sin 0.1 or ln 1.1. Evaluating
polynomials is easy, it can be accomplished by a sequence of compu-
tations involving only arithmetic operations (+, , ). For instance, if
f(x) = x
2
+7x+2 then f(3) = 3
2
+73+2 = 32. For other functions
in general we may not be able to evaluate them exactly, but we can
8 MIGUEL A. LERMA
do it approximately. A rst approximation consists of substituting the
graph of the function by a tangent line (g. 2).
(a,f(a))
a
P1(x) = c0 + c1 (x-a) y=f(x)
0.5
0
0.5
1
0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2 2.4
x
Figure 2. Linear approximation
The equation of the tangent line at x = a is
P
1
(x) = c
0
+ c
1
(x a) .
Also, the following conditions must be met:
P
1
(a) = f(a)
P
1
(a) = f
(a)
i.e., the tangent line must pass through the point (a, f(a)), and its
slope should be the derivative of f(x) at x = a. From here we get:
c
0
= f(a)
c
1
= f
(a)
hence the tangent line and rst approximation of f(x) at x = a is
P
1
(x) = f(a) + f
(a) (x a) .
P
1
(x) is called the 1st-degree Taylor polynomial of f(x) at x = a.
For instance, if f(x) = ln x then its rst-degree Taylor polynomial
at x = 1 is
P
1
(x) = ln 1 +
1
1
(x 1) = x 1 .
NOTES ON INFINITE SEQUENCES AND SERIES 9
Hence
ln x x 1
for x close to 1. In particular ln 1.1 1.1 1 = 0.1. Compare to the
actual value ln 1.1 = 0.095310179 . . . .
3.2. Higher Degree Polynomial Approximations. The linear (rst
degree) polynomial approximation might be enough for many practical
purposes, but sometimes we need a better approximation. This can be
accomplished by using higher degree polynomials.
The nth degree Taylor polynomial of a function f(x) at x = a is a
polynomial of the form:
P
n
(x) = c
0
+ c
1
(x a) + c
2
(x a)
2
+ + c
n
(x a)
n
=
n
k=0
c
k
(x a)
k
whose value and derivatives up to the nth are equal to those of f(x)
at x = a, i.e.:
P
n
(a) = f(a)
P
n
(a) = f
(a)
P
n
(a) = f
(a)
. . .
P
(n
n
(a) = f
(n
(a)
Solving those equations we get that c
k
= f
(k
(a)/k!, hence the nth-
degree Taylor polynomial of f(x) at x = a is
P
n
(x) =
f(a)
0!
+
f
(a)
1!
(x a) +
f
(a)
2!
(x a)
2
+ +
f
(n
(a)
n!
(x a)
n
=
n
k=0
f
(k
(a)
k!
(x a)
k
.
For instance, for f(x) = ln(x) and a = 1 we get
P
2
(x) = (x 1)
1
2
(x 1)
2
,
hence, ln 1.1 (1.11)
1
2
(1.11)
2
= 0.095, closer to the actual value
ln1, 1 = 0.095310179 . . . than the rst degree approximation computed
above.
10 MIGUEL A. LERMA
3.3. Taylor series. The next logical step is to use an innite-degree
polynomial, i.e., a series of the form:
k=0
f
(k
(a)
k!
(x a)
k
.
This series is called the Taylor series of f(x) at x = a. If a = 0 then
the Taylor series is called Maclaurin series.
A function f(x) such that
1. its Taylor series converges, and
2. f(x) =
k=0
f
(k
(a)
k!
(x a)
k
,
is called analytic. A few examples of analytic functions are the follow-
ing:
e
x
= 1 + x +
x
2
2!
+
x
3
3!
+ =
n=0
x
n
n!
ln (1 +x) = x
x
2
2
+
x
3
3
=
n=1
(1)
n+1
x
n
n
(|x| < 1)
sin x = x
x
3
3!
x
5
5!
+ =
n=0
(1)
n
x
2n+1
(2n + 1)!
cos x = 1
x
2
2!
+
x
4
4!
=
n=0
(1)
n
x
2n
(2n)!
1
1 + x
= 1 x + x
2
x
3
+ =
n=0
(1)
n
x
n
(|x| < 1)
(1 + x)
=
_
0
_
+
_
1
_
x +
_
2
_
x
2
+
_
3
_
x
3
+ =
n=0
_
n
_
x
n
(|x| < 1)
where
_
n
_
=
( 1) ( 2)
(n factors)
. . . ( n + 1)
n!
.
As an example, the Taylor series for e
x
can be used for computing
the number e:
e = e
1
=
n=0
1
n!
= 1 + 1 +
1
2!
+
1
3!
+ = 2.718281828 . . .
3.4. Homework. E&P, 11.4: 1120, 2325, 2940.
NOTES ON INFINITE SEQUENCES AND SERIES 11
4. The Integral Test.
In section 2.7 we found that the harmonic series diverges by com-
paring its sum with an integral (see g. 1). This technique is called
integral test. More generally we have that the following holds:
4.1. Integral Test. Suppose
n=1
a
n
is a positive-term series (i.e.,
a
n
> 0 for every n = 1, 2, 3, . . . ). Also assume that f(x) is a positive
valued, decreasing, continuous function for x 1 such that a
n
= f(n)
for every n = 1, 2, 3 . . . . Then the series
n=1
a
n
and the improper
integral
_
1
f(x) dx either both converge or both diverge.
So, in order to test the series for convergence it is enough to test the
corresponding integral for convergence, which in many cases is easier.
The next one is a typical example of application of the integral test.
4.2. p-Series. A p-series is a series of the form:
n=1
1
n
p
,
where p > 0 is a x exponent.
The case p = 1 is the harmonic series, which was shown to be diver-
gent in section 2.7. On the other hand, if p = 1:
_
M
1
1
x
p
dx =
_
x
1p
1 p
_
M
1
=
1
1 p
_
M
1p
1
_
.
As M the limit of the above expression converges for p > 1,
and diverges for p 1. Hence, the integral test shows that the p-series
converges for p > 1, and diverges for p 1.
4.3. Homework. E&P, 11.5: 130, 3538.
5. Comparison Test for Positive-Term Series
The comparison test allows us to test a series for convergence by
comparing it to another series for which convergence is easier to test.
It says the following:
5.1. Comparison Test. Suppose
a
n
and
b
n
are positive-term
series such that a
n
b
n
for every n. Then:
1. If
a
n
diverges then
b
n
diverges.
2. If
b
n
converges then
a
n
converges.
12 MIGUEL A. LERMA
For instance, consider the series
n=1
1
n
3
+ 1
.
Since 1/
n
3
+ 1 < 1/
n
3
= 1/n
3/2
, the convergence of the given series
can be derived from the convergence of the following series:
n=1
1
n
3/2
.
This is a p-series with p = 3/2 > 1, hence it converges, and so does the
given series.
In some cases the ordinary comparison test is hard to apply, but the
following is easier to use:
5.2. Limit Comparison Test. Suppose
a
n
and
b
n
are positive-
term series, and the limit
L = lim
n
a
n
b
n
exists and is not zero nor innity: 0 < L < +. Then either both
series converge or both diverge.
For instance, look at the following series:
n=1
2 +
3n
n
3
+ n + 1
.
We can test its convergence by limit comparison with the harmonic
series:
n=1
1
n
.
In fact:
lim
n
(2 +
3n)/
n
3
+ n + 1
1/n
=
3 ,
which is not zero nor innity. Since the harmonic series diverges, we
conclude that the given series also diverges.
5.3. Rearrangement and grouping. In a positive-term series rear-
ranging and regrouping its terms does not alter its sum. Note that this
is not true in general for other series. For instance, the following series
is divergent:
1 1 + 1 1 + 1 1 + .
NOTES ON INFINITE SEQUENCES AND SERIES 13
However, if we regroup its terms in the following way, we get a conver-
gent series with zero sum:
(1 1) + (1 1) + (1 1) + = 0 + 0 + 0 + = 0 .
A dierent regrouping still give us a dierent sum:
1 + (1 + 1) + (1 + 1) + (1 + 1) + = 1 + 0 + 0 + 0 + = 1 .
However, if the terms are all positive, then we can rearrange and
regroup them without any fear of changing the sum. So, for instance:
1
2
+
1
4
+
1
8
+
1
16
+ =
n=1
1
2
n
=
1/2
1 1/2
= 1 .
Now, if we regroup its terms in the following way, we get:
_
1
2
+
1
4
_
+
_
1
8
+
1
16
_
+ =
3
4
+
3
16
+ =
n=1
3
1
4
n
=
3/4
1 1/4
= 1 ,
so, we get the same sum.
5.4. Homework. E&P, 11.6: 136.
6. Alternating Series and Absolute Convergence
An alternating series is a series of the form
n=1
(1)
n+1
a
n
= a
1
a
2
+ a
3
a
4
+
or
n=1
(1)
n
a
n
= a
1
+ a
2
a
3
+ a
4
where a
n
> 0 for every n. Examples: the alternating harmonic series:
n=1
(1)
n+1
1
n
= 1
1
2
+
1
3
1
4
+ ;
an alternating geometric series:
n=0
(1)
n
1
2
n
= 1
1
2
+
1
4
1
8
+ .
14 MIGUEL A. LERMA
6.1. Alternating Series Test. If an alternating series veries:
1. a
n
it is decreasing: a
n
a
n
> 0 for every n, and
2. the nth term tends to zero: lim
n
a
n
= 0 ,
then the series converges.
So, in this particular case the reciprocal of the nth term test holds.
E.g.:
n=1
(1)
n+1
n
= 1
1
2
+
1
3
1
4
+ = ln 2
n=0
(1)
n+1
2n + 1
= 1
1
3
+
1
5
1
7
+ =
4
.
6.2. Alternating Series Remainder Estimate. Let S be the sum
of an alternating series:
S =
n=0
(1)
n+1
a
n
,
and S
N
its Nth partial sum:
S
N
=
N
n=0
(1)
n+1
a
n
.
Then the dierence R
N
= S S
N
(remainder) between the sum of
the series and that of the Nth partial sum has the same sign as the
following term of the series (1)
n+2
a
n+1
, and
0 |R
N
| < a
n+1
.
In particular, S is always between two consecutive partial sums.
For instance, we know that
= 4
n=0
(1)
n+1
2n + 1
,
but how close do we get to by adding, say, one hundred terms of that
series? Answer: its sum is between
4
99
n=0
(1)
n+1
2n + 1
= 3.131592904 . . .
and
4
100
n=0
(1)
n+1
2n + 1
= 3.151493401 . . .
NOTES ON INFINITE SEQUENCES AND SERIES 15
Compare to the actual value = 3.141592654 . . . .
6.3. Absolute Convergence. A general series
a
n
is said to be ab-
solutely convergent if the series of absolute values of its terms
|a
n
|
is convergent.
We have that a series can be:
1. Convergent and absolutely convergent, e.g:
n=0
_
1
2
_
n
= 1
1
2
+
1
4
1
8
+
2. Convergent but not absolutely convergentin this case the series
is called conditionally convergent, e.g:
n=1
(1)
n+1
n
= 1
1
2
+
1
3
1
4
+
3. Not convergent nor absolutely convergent, e.g:
n=1
n = 1 + 2 + 3 + 4 +
However, a series cannot be absolutely convergent and not conver-
gent, because absolute convergence implies convergence:
absolute convergent = convergent
Example: Does the series
n=1
cos n
n
2
converge? Answer: Look at the
series of absolute values:
n=1
| cos n|
n
2
n=1
1
n
2
.
By comparison test, it converges (the right hand side is a p-series with
p > 1), hence the given series is absolutely convergent, which implies
that it is indeed convergent.
6.4. Ratio Test. Suppose that the limit = lim
n
a
n+1
a
n
exists or is
innity. Then
1. If < 1 =
a
n
converges absolutely.
2. If > 1 =
a
n
diverges.
3. If = 1 = the ratio test is inconclusive.
16 MIGUEL A. LERMA
As a rule of thumb, for geometric series = |r| (the ratio), and the
conclusion of the ratio test is analogous to the one for geometric series,
i.e., the series converges for |r| < 1 and diverges for |r| > 1.
Example: For the series
n=1
n
2
2
n
we have
= lim
n
a
n+1
a
n
= lim
n
(n + 1)
2
/2
n+1
n
2
/2
n
= lim
n
(n + 1)
2
2 n
2
=
1
2
< 1 ,
hence, it converges absolutely.
3
6.5. Root Test. In some cases in which the ratio test is unable to pro-
vide an answer, the root test may help. It says the following: Suppose
that the limit = lim
n
n
_
|a
n
| exists or is innity. Then
1. If < 1 =
a
n
converges absolutely.
2. If > 1 =
a
n
diverges.
3. If = 1 = the root test is inconclusive.
Example: Consider the following series
n=1
1
2
n+sinn
. For this series
the ratio test cannot be used, because
a
n+1
a
n
= 2
1+sinnsin(n+1)
= 2
12 sin
1
2
cos (n+
1
2
)
which has no limit. However, the root tests shows that the series is
absolutely convergent:
lim
n
n
_
1
2
n+sinn
= lim
n
1
2
1+sin n/n
=
1
2
< 1 .
6.6. Homework. E&P, 11.7: 142.
7. Power Series
A power series is a sort of innite polynomial of the form
n=0
a
n
x
n
Taylor series are particular cases of power series. E.g.:
e
x
=
n=0
x
n
n!
= 1 + x +
x
2
2!
+
x
3
3!
+
3
The sum is exactly
n=1
n
2
2
n
= 6.
NOTES ON INFINITE SEQUENCES AND SERIES 17
sin x =
n=0
(1)
n
x
2n+1
(2n + 1)!
= x
x
3
3!
x
5
5!
+
cos x =
n=0
(1)
n
x
2n
(2n)!
= 1
x
2
2!
+
x
4
4!
1
1 + x
=
n=0
(1)
n
x
n
= 1 x + x
2
x
3
+ (|x| < 1)
7.1. Convergence of a Power Series. The rst question we must
answer about a powers series is for what values of x does the series
converge? This can be answered with the ratio test:
= lim
n
a
n+1
x
n+1
a
n
x
n
= |x| lim
n
a
n+1
a
n
=
|x|
R
,
where
1
R
= lim
n
a
n+1
a
n
.
(If the limit is zero then we take R = . If it is innity then R = 0.)
We know that the series converges absolutely if < 1, i.e.,
|x|
R
< 1,
and diverges if > 1, i.e.,
|x|
R
> 1. Hence the series converges absolutely
for |x| < R, i.e., on the interval (R, R), and diverges for |x| > R. The
number R is called the radius of convergence of the series.
It remains to determine if the series converges at the endpoints x = R
and x = R. This can be answered by substituting x = R and x = R
in the power series and studying the resulting series. After doing that,
we will nd that the interval of convergence is one of the following:
(R, R) , [R, R) , (R, R] or [R, R]
If R = then the interval of convergence is the whole real line R.
Example: consider the Maclaurin series for ln(1 +x):
n=1
(1)
n+1
x
n
n
.
Using the ratio test we get:
= lim
n
x
n+1
/(n + 1)
x
n
/n
= lim
n
|x|
n
n + 1
= |x| .
Hence the series converges absolutely for |x| < 1 and diverges for
|x| > 1. It remains to study the endpoints x = 1.
18 MIGUEL A. LERMA
For x = 1 the power series becomes
n=1
(1)
n+1
1
n
,
which is the alternating harmonic series. We know that it converges.
For x = 1 the power series becomes
n=1
1
n
,
which is the (usual) harmonic series. We know that it diverges.
Hence the interval of convergence is (1, 1].
7.2. Power Series in Powers of (x c). The same techniques can
be applied to power series of the form:
n=0
a
n
(x c)
n
Using the ratio test we get
= lim
n
a
n+1
(x c)
n+1
a
n
(x c)
n
= |x c| lim
n
a
n+1
a
n
=
|x c|
R
,
where
1
R
= lim
n
a
n+1
a
n
.
Hence the series converges absolutely if
|xc|
R
< 1 and diverges if
|xc|
R
> 1. In other words, it converges absolutely for |x c| < R, i.e.,
on the interval (c R, c + R), and diverges for |x c| > R. As above,
the endpoints x = c R and x = c + R must be tested separately.
So the radius of convergence is as before, but the interval of conver-
gence is centered at x = c instead of x = 0.
7.3. The Binomial Series. The binomial series is the Maclaurin se-
ries of the function f(x) = (1 + x)
f(0) = 1
f
(x) = (1 + x)
(1)
f
(0) =
f
(x) = ( 1) (1 +x)
(2)
f
(0) = ( 1)
. . . . . .
NOTES ON INFINITE SEQUENCES AND SERIES 19
f
(n
(x) = ( 1) . . . ( n + 1) (1 +x)
(2)
. . .
f
(n
(0) = ( 1) . . . ( n)
. . .
Hence:
(1 + x)
=
_
0
_
+
_
1
_
x +
_
2
_
x
2
+
_
3
_
x
3
+ =
n=0
_
n
_
x
n
(|x| < 1)
where
_
n
_
=
( 1) ( 2)
(n factors)
. . . ( n + 1)
n!
.
Note that if = m a positive integer, then
_
m
n
_
= 0 for n > m, so
the series becomes a nite sum identical to the binomial expansion:
(1 + x)
m
=
m
n=0
_
m
n
_
x
n
Other examples:
1
1 + x
= (1 + x)
1
=
n=0
(1)
n
x
n
= 1 x + x
2
x
3
+
1 + x = (1 + x)
1/2
=
n=0
_
1/2
n
_
x
n
= 1 +
1
2
x
1
8
x
2
+
1
16
x
3
+
1
1 + x
= (1 + x)
1/2
=
n=0
_
1/2
n
_
x
n
= 1
1
2
x +
3
8
x
2
5
16
x
3
+
7.4. Dierentiation and Integration of Power Series. If a func-
tion f(x) can be represented as a power series:
f(x) =
n=0
a
n
x
n
with radius of convergence R, then:
1. It is dierentiable on (R, R) and
f
(x) =
n=1
na
n
x
n1
.
2. It is integrable on (R, R) and
_
x
0
f(t) dt =
n=0
a
n
x
n+1
n + 1
.
20 MIGUEL A. LERMA
As an application, we use this result for computing the power series
for the arctangent f(x) = tan
1
x. In fact, we have:
f
(t) =
1
1 + t
2
= 1 t
2
+ t
4
t
6
+ =
n=0
(1)
n
t
2n
.
Integrating termwise we get:
f(x) =
_
x
0
f
(t) dt = x
x
3
3
+
x
5
5
x
7
7
+ =
n=0
(1)
n
t
2n+1
2n + 1
.
Hence:
tan
1
x =
n=0
(1)
n
t
2n+1
2n + 1
= x
x
3
3
+
x
5
5
x
7
7
+ . . . .
7.5. Homework. E&P, 11.8: 112. Maple Worksheet: WS2 (due
10/14/99).
8. Power Series Computations
8.1. Adding and Multiplying Series.
If f(x) =
n=0
a
n
x
n
and g(x) =
n=0
b
n
x
n
then
f(x) + g(x) =
n=0
(a
n
+ b
n
) x
n
and
f(x) g(x) =
n=0
c
n
x
n
where
c
n
= a
0
b
n
+ a
1
b
n1
+ a
n
b
0
=
n
k=0
a
k
b
nk
As an example, we can compute the rst few terms of the power
series for tan x = a
0
+ a
1
x + a
2
x
2
+ , using the power series for
sin x = xx
3
/3! +x
5
/5! and cos x = 1 x
2
/2! +x
4
/4! , and
the relation sin x = tan x cos x:
sinx
..
x
x
3
3!
+
x
5
5!
=
tan x
..
_
a
0
+ a
1
x + a
2
x
2
+ a
3
x
3
+
_
cos x
..
_
1
x
2
2!
+
x
4
4!
_
= a
0
+ a
1
x +
_
a
0
2
+ a
2
_
x
2
+
_
a
1
2
+ a
3
_
x
3
+
NOTES ON INFINITE SEQUENCES AND SERIES 21
Identifying coecients we get:
_
_
a
0
= 0
a
1
= 1
1
2
a
0
+a
2
= 0
1
2
a
1
+a
3
=
1
6
. . .
Solving that system of equations we get a
0
= 0, a
1
= 1, a
2
= 0, a
3
=
1/3, . . . , hence:
tanx = x +
x
3
3
+
8.2. Computing Limits with Power Series. Since power series are
continuous in their interval of convergence, we have that if
f(x) =
n=0
a
n
(x c)
n
= a
0
+ a
1
x + a
2
x
2
+
then
lim
xc
f(x) = f(c) = a
0
+ 0 + 0 + = a
0
.
This can be applied to computing limits of indeterminate forms f(x)/g(x)
by substituting power series for f(x) and g(x). Example:
lim
x0
1 cos x
x sin x
= lim
x0
1 (1 x
2
/2 + x
4
/24 )
x (x x
3
/6 + )
= lim
x0
x
2
/2 x
4
/24 +
x
2
x
4
/6 +
= lim
x0
1/2 x
2
/24 +
1 x
2
/6 +
=
1
2
8.3. Homework. E&P, 11.9: 2328.