ironfern @ docs ~/math/grade-9/sequences/summation $
Summation
Along with every sequence a1,a2,a3,…,an,… we can consider the sequence (Sn):
S1=a1,S2=a1+a2,S3=a1+a2+a3,…,Sn=a1+a2+…+an,…
Finding the formula for the n-th term of (Sn) is called summation of the first n terms of the sequence (an).
Sigma Notation
📐Definition — Sigma Notation
Using the Greek letter Σ (sigma), the sum a1+a2+…+an is written as:
k=1∑nak=a1+a2+…+an.
For example:
12+22+32+…+n2=k=1∑nk2,13+23+33+…+n3=k=1∑nk3.
Properties of Summation
⚡Theorem — Properties of Sigma Notation
-
k=1∑nc=nc (sum of n identical terms)
-
k=1∑n(ak+bk)=k=1∑nak+k=1∑nbk (sum of sums equals sum of respective sums)
-
k=1∑nc⋅ak=c⋅k=1∑nak (a constant factor can be taken outside the summation sign)
Standard Sums
⚡Theorem — Standard Sum Formulas
k=1∑nk=2n(n+1)k=1∑nk2=6n(n+1)(2n+1)k=1∑nk3=(2n(n+1))2
These formulas allow us to sum the first n terms of the sequences of natural numbers, their squares, and their cubes respectively.
Telescoping Sums
ℹNote — Telescoping Sums
If for a given sequence (an) one can find a sequence (bn) such that an=bn+1−bn, then the sum k=1∑nak is easy to compute:
a1+a2+…+an=(b2−b1)+(b3−b2)+…+(bn+1−bn)=bn+1−b1.
Examples
✎Example — Sum Using Standard Formulas
Problem. Find the sum 23+49+825+…+2n2n⋅n+1.
Solution. We have: 2k2k⋅k+1=k+2k1.
Then the given sum can be rewritten as:
(1+21)+(2+221)+(3+231)+…+(n+2n1)=(1+2+3+…+n)+(21+221+231+…+2n1)=2n(n+1)+1−2n1.Therefore, k=1∑n2k2k⋅k+1=2n(n+1)+1−2n1.
✎Example — Sum 1 + 12 + 45 + ... Using Cubes
Problem. Find the sum 1+12+45+…+n2(2n−1).
Solution. Write: k2(2k−1)=2k3−k2. Then
1+12+45+…+n2(2n−1)=k=1∑n(2k3−k2)=2k=1∑nk3−k=1∑nk2==2⋅(2n(n+1))2−6n(n+1)(2n+1)=6n(n+1)(3n2+n−1).Answer: 6n(n+1)(3n2+n−1).
✎Example — Telescoping Sum of Fractions
Problem. Prove that if (an) is an arithmetic progression with nonzero terms, then
a1a21+a2a31+…+anan+11=a1an+1n.Solution. We have: anan+11=(an1−an+11)⋅d1, where d is the common difference. Then
a1a21+a2a31+…+anan+11=d1(a11−a21)+d1(a21−a31)+…+d1(an1−an+11)==d1(a11−an+11)=d⋅a1⋅an+1an+1−a1=d⋅a1⋅an+1dn=a1an+1n.
✎Example — Sum of Factorials
Problem. Find the sum 1⋅1!+2⋅2!+3⋅3!+…+n⋅n!.
Solution. Note that n⋅n!=(n+1)!−n!. Then:
k=1∑nk⋅k!=(2!−1!)+(3!−2!)+(4!−3!)+…+((n+1)!−n!)=(n+1)!−1.Answer: (n+1)!−1.
Exercises
✏Exercise — Summation Problems
36.1. Find the sum:
- 2+10+30+…+n(n2+1)
- 1⋅2⋅3+2⋅3⋅4+…+n(n+1)(n+2)
36.2. Find the sum 1⋅2+2⋅3+…+n(n+1).
36.7. Find the sum:
- 1⋅51+5⋅91+9⋅131+…+(4n−7)(4n−3)1
- 1⋅23+2⋅37+3⋅413+…+n(n+1)n2+n+1