From Sequences to Series
A sequence is a list of numbers written in a specific order. A series is simply the summation of the terms of a sequence. If the sequence is finite, we end up with a finite series. If the sequence is infinite, we end up with an infinite series.
We define the partial sum Sn as the sum of the first n terms in a sequence. For example, given the sequence an={2,5,8,11,…}, we have the following partial sums:
S1S2S3S4⋮=a1=2=a1+a2=2+5=7=a1+a2+a3=2+5+8=15=S3+a4=2+5+8+11=26 The partial sums above make up a new sequence Sn={2,7,15,26,…}. Determining the convergence or divergence of Sn will be the focus of our work on infinite series.
Sigma Notation
Given a sequence of numbers {an}n=1∞, its infinite series can be written in sigma notation:
i=1∑∞an=a1+a2+a3+⋯+an+⋯ The index is the variable n (although variables i and k are commonly used as well). The lower bound is the starting point, and the upper bound is the stopping point. For a finite series, the upper bound is a finite value.
It is not possible to add an infinite number of terms by hand (unless every term is equal to zero), so the sum of the infinite series is defined as the limit of the sequence of partial sums Sn as n→∞:
S∞=n=1∑∞an=n→∞limSn. For most series, calculating this limit is not possible. However, our focus is to determine whether the limit exists. If the limit exists, the series is said to converge. If the limit does not exist, the series is said to diverge.
The following are true regarding the sequence of partial sums Sn:
- n=1∑∞an=n→∞limSn
- an=Sn−Sn−1
- If a sequence an converges, Sn may or may not converge
- If Sn converges, the series n=1∑∞an converges
Example 1
Given the partial sum Sn=n+2n−2, determine the general term an.
View Answer
an=Sn−Sn−1=n+2n−2−n+1n−3.
Properties of Series
The following properties apply to series (with summation bounds being the same on both sides of the equation):
∑(an±bn)∑c⋅an=∑an±∑bn=c∑an Note: These properties are similar to how integrals operate.
Example 2
Create two examples, one demonstrating each series property discussed above.
View Answer
Possible examples:
- ∑(3n+2n)=∑3n+∑2n
- ∑5⋅n=5∑n
Rewriting Series
Sigma notation is not a unique representation of a series -- a series can be represented in a handful of ways. Often, it may be necessary to rewrite our series in order to work with it.
The two ways in which we rewrite series include index shifting and stripping out terms. Keep in mind that when you rewrite series in these two ways, it is only the appearance of the series that changes -- all the terms are exactly the same.
Index Shifting
Index shifting allows us to do just that -- shift the index of the series. For example:
n=2∑∞(−2)n−1=n=1∑∞(−2)n=n=0∑∞(−2)n+1. Note: If the index increases in an, it decreases by the same amount in the summation bounds.
Example 3
Index shift n=2∑7(n−1)(n+1) to begin at n=0 and n=3.
View Answer
- n=0∑5((n+2)−1)((n+2)+1)
- n=3∑8((n−1)−1)((n−1)+1)
Example 4
Index shift k=3∑∞k−1k! to begin at k=2 and k=5.
View Answer
- k=2∑∞k(k+1)!
- k=5∑∞k−3(k−2)!
Stripping Out Terms
Stripping out terms allows us to do just that -- strip out terms from the beginning of the series. For example:
n=0∑∞n+11n=0∑∞n+11n=0∑∞n+11=11+n=1∑∞n+11=11+21+n=2∑∞n+11=11+21+31+n=3∑∞n+11 Not: The expression an remains the same, but the starting point of the series changes.
Example 5
Strip out the first two terms of n=2∑∞sinn.
View Answer
sin2+sin3+n=4∑∞sinn. Example 6
Strip out the first three terms of n=1∑∞an.
View Answer
a1+a2+a3+n=4∑∞an.
Convergence of a Series
When determining the convergence of a series, consider the following:
- All finite series are convergent if each of their terms is a real number because a finite sum of real numbers is
- If you add any real number to a real number, the sum is a real number
- If you add any real number to infinity, the "sum" is infinity
- Multiplying a real number by another real number results in a real number
- Multiplying a real (non-zero) number by infinity results in infinity
- If you strip out a finite number of terms from a series, it will not change the convergence or divergence of the series
- If you add or subtract a finite number of terms from a series, it will not change the convergence or divergence of the series
- If you multiply a series by a real number (other than zero), it will not change the convergence or divergence of the series
- If you add two divergent series together, the result could be a convergent or divergent series
Example 7
If n=2∑∞an and n=2∑∞bn are both convergent, what can be said about n=2∑∞(an+bn)?
View Answer
The series n=2∑∞(an+bn) converges.
Example 8
If n=2∑∞an and n=2∑∞bn are both divergent, what can be said about n=2∑∞(an+bn)?
View Answer
The series n=2∑∞(an+bn) could converge or diverge.
Example 9
If n=2∑∞an and n=2∑∞bn are both convergent, what can be said about n=2∑∞(an−bn)?
View Answer
The series n=2∑∞(an−bn) converges.
Example 10
If n=4∑∞an is convergent, what can be said about the following:
n=4∑∞10an
n=4∑∞−10an
n=7∑∞10000000an
View Answer
n=4∑∞10an converges.
n=4∑∞−10an converges.
n=7∑∞10000000an converges.
Example 11
If n=1∑∞bn is divergent, what can be said about the following:
n=4∑∞10bn
n=4∑∞0.000002bn
View Answer
n=4∑∞10bn diverges.
n=4∑∞0.000002bn diverges.
Series Tests
Up to this point, we've discussed convergence of a series but we haven't discussed how to determine the convergence of a series.
To determine the convergence of a series, we utilize a handful of different tests:
- nth Term/Divergence Test
- Geometric Series Test
- p-Series Test
- Integral Test
- Direct and Limit Comparison Tests
- Alternating Series Test
- Ratio Test
- Root Test
These tests will be the focus of the next few lessons.