An Introduction to Series

Rule

Formulas for Special Series

When a series has many terms, it can be tedious to calculate its sum. However, there are formulas for special series that simplify calculations. The table shows the formulas for some special series.

Special Series Formula
Sum of n terms of 1. ∑_(i=1)^n 1 = n
Sum of first n positive integers. ∑_(i=1)^n i = n(n+1)/2
Sum of squares of first n positive integers. ∑_(i=1)^n i^2 = n(n+1)(2n+1)/6
Sum of cubes of first n positive integers. ∑_(i=1)^n i^3 = [ n(n+1)/2 ]^2

Proof

Sum of n Terms of 1
Adding the same number n times is the same as multiplying the number by n. In this case, since the number is 1, the result of this operation is 1* n, which equals n. ∑_(i=1)^n 1 &= 1+1+1+ ... + 1_(ntimes) &= n* 1 &= n

Proof

Sum of First n Positive Integers
Mathematical induction will be used to prove the following statement. ∑_(i=1)^n i = n(n+1)2 The first step in an inductive proof is to show that the equation holds true for n=1.

∑_(i=1)^n i = n(n+1)/2
∑_(i=1)^1 i ? = 1( 1+1)/2
1 ? = 1(1+1)/2
1 ? = 1(2)/2
1 ? = 2/2
1=1 ✓

The statement is true for n=1. Now, assume that the statement is true for some positive integer k. ∑_(i=1)^k i = k(k+1)2 ✓ In the final step, the aim is to show that the statement is true for n=k+1. To do so, the above equation will be manipulated using the Properties of Equality.

∑_(i=1)^k i = k(k+1)/2
∑_(i=1)^k i + ( k+1) = k(k+1)/2 + ( k+1)
∑_(i=1)^(k+1) i = k(k+1)/2 + (k+1)
Simplify right-hand side
∑_(i=1)^(k+1) i = k(k+1)/2 + 2(k+1)/2
∑_(i=1)^(k+1) i = k(k+1)+2(k+1)/2
∑_(i=1)^(k+1) i = (k+1)(k+2)/2
∑_(i=1)^(k+1) i = ( k+1)( k+1+1)/2

The left-hand side of the above equation is the sum of the first k+1 positive integers. The right-hand side is the expression obtained when substituting k+1 for n. Therefore, the statement holds true for all positive integers.

Proof

Sum of Squares of First n Positive Integers
The following statement will be proved using mathematical induction. ∑_(i=1)^n i^2 = n(n+1)(2n+1)/6 For the first step, it should be shown that the equation holds true for n=1.

∑_(i=1)^n i^2 = n(n+1)(2n+1)/6
∑_(i=1)^1 i^2 ? = 1( 1+1)(2( 1)+1)/6
Evaluate left-hand side
1^2 ? = 1(1+1)(2(1)+1)/6
1 ? = 1(1+1)(2(1)+1)/6
Evaluate right-hand side
1 ? = 1(1+1)(2+1)/6
1 ? = 1(2)(3)/6
1 ? = 6/6
1=1 ✓

The statement is true for n=1. Now, assume that the statement is true for some positive integer k. ∑_(i=1)^k i^2 = k(k+1)(2k+1)/6 ✓ Next, show that the statement is true for n=k+1. To do so, start by adding (k+1)^2 to both sides of the above equation.

∑_(i=1)^k i^2 = k(k+1)(2k+1)/6
∑_(i=1)^k i^2 + (k+1)^2 = k(k+1)(2k+1)/6 + (k+1)^2
∑_(i=1)^(k+1) i^2 = k(k+1)(2k+1)/6+(k+1)^2

Add the terms on the right-hand side, then factor the numerator of the fraction.

∑_(i=1)^(k+1) i^2 = k(k+1)(2k+1)/6+(k+1)^2
Simplify right-hand side
∑_(i=1)^(k+1) i^2 = k(k+1)(2k+1)/6+ 6(k+1)^2/6
∑_(i=1)^(k+1) i^2 = k(k+1)(2k+1)+ 6(k+1)^2/6
∑_(i=1)^(k+1) i^2 = (k+1)[k(2k+1)+ 6(k+1)]/6
∑_(i=1)^(k+1) i^2 = (k+1)(2k^2+k+ 6k+6)/6
∑_(i=1)^(k+1) i^2 = (k+1)(2k^2+k+3k+3k+6)/6
∑_(i=1)^(k+1) i^2 = (k+1)(2k^2+4k+3k+6)/6
∑_(i=1)^(k+1) i^2 = (k+1)[2k(k+2)+3k+6]/6
∑_(i=1)^(k+1) i^2 = (k+1)[2k(k+2)+3(k+2)]/6
∑_(i=1)^(k+1) i^2 = (k+1)(k+2)(2k+3)/6
∑_(i=1)^(k+1) i^2 = (k+1)(k+1+1)(2k+2+1)/6
∑_(i=1)^(k+1) i^2 = ( k+1)( k+1+1)[2( k+1)+1]/6

The left-hand side is the sum of the squares of the first n positive integers. The right-hand side is the expression obtained when substituting k+1 for n. Therefore, the statement holds for all positive integers n.

Proof

Sum of Cubes of First n Positive Integers
The following statement can be proved by mathematical induction. ∑_(i=1)^n i^3 = [ n(n+1)/2 ]^2 In the first step, it should be shown that the equation holds true for n=1.

∑_(i=1)^n i^3 = [ n(n+1)/2 ]^2
∑_(i=1)^1 i^3 ? = [ 1( 1+1)/2 ]^2
Evaluate left-hand side
1^3 ? = [ 1(1+1)/2 ]^2
1 ? = [ 1(1+1)/2 ]^2
Evaluate right-hand side
1 ? = [ 1(2)/2 ]^2
1 ? = ( 2/2 )^2
1 ? = 1^2
1=1 ✓

The statement is true for n=1. Now, assume that the statement is true for some positive integer k. ∑_(i=1)^k i^3 = [ k(k+1)/2 ]^2 ✓ Finally, to show that the statement is true for k+1, the above equation will be manipulated.

∑_(i=1)^k i^3 = k^2(k+1)^2/4
∑_(i=1)^k i^3 + (k+1)^3 = k^2(k+1)^2/4 + (k+1)^3
∑_(i=1)^(k+1) i^3 = k^2(k+1)^2/4 +(k+1)^3
Simplify right-hand side
∑_(i=1)^(k+1) i^3 = k^2(k+1)^2/4+4(k+1)^3/4
∑_(i=1)^(k+1) i^3 = k^2(k+1)^2+4(k+1)^3/4
∑_(i=1)^(k+1) i^3 = (k+1)^2(k^2+4(k+1))/4
∑_(i=1)^(k+1) i^3 = (k+1)^2(k^2+4k+4)/4
∑_(i=1)^(k+1) i^3 = (k+1)^2(k+2)^2/4
∑_(i=1)^(k+1) i^3 = [(k+1)(k+2)]^2/4
∑_(i=1)^(k+1) i^3 = [(k+1)(k+2)]^2/2^2

a^m/b^m=(a/b)^m

∑_(i=1)^(k+1) i^3 = [(k+1)(k+2)/2]^2
∑_(i=1)^(k+1) i^3 = [( k+1)( k+1+1)/2]^2

This final equation shows that the statement is true for n=k+1. Therefore, the statement holds for all positive integers n.

Exercises
Edit Lesson