Skip to content

Sigma notation: sums and standard formulae

Sigma notation writes a sum without listing every term. The capital Greek letter sigma, Σ\Sigma, means “add”. For example,

r=14(2r+3)=(2(1)+3)+(2(2)+3)+(2(3)+3)+(2(4)+3)=5+7+9+11=32.\begin{aligned} \sum_{r=1}^{4}(2r+3) &=(2(1)+3)+(2(2)+3)+(2(3)+3)+(2(4)+3)\\ &=5+7+9+11\\ &=32. \end{aligned}

The expression below Σ\Sigma says where the index starts, the number above it says where the index stops, and the expression to the right gives each term.

You should be able to:

In

r=37f(r),\sum_{r=3}^{7}f(r),

rr is the index of summation, 33 is the lower limit, 77 is the upper limit, and f(r)f(r) is the summand. Substitute each integer from 33 to 77, including both endpoints:

f(3)+f(4)+f(5)+f(6)+f(7).f(3)+f(4)+f(5)+f(6)+f(7).

The number of terms is therefore

upper limitlower limit+1.\boxed{\text{upper limit}-\text{lower limit}+1}.

Here there are 73+1=57-3+1=5 terms. The extra 11 accounts for including both endpoints.

The index is a temporary label. Provided it is changed everywhere inside that sum,

r=1nr2=k=1nk2.\sum_{r=1}^{n}r^2=\sum_{k=1}^{n}k^2.

It does not matter whether the letter is rr, kk, ii or another symbol.

Evaluate

k=25(k21).\sum_{k=2}^{5}(k^2-1).

There are 52+1=45-2+1=4 terms. Substitute k=2,3,4,5k=2,3,4,5:

k=25(k21)=(221)+(321)+(421)+(521)=3+8+15+24=50.\begin{aligned} \sum_{k=2}^{5}(k^2-1) &=(2^2-1)+(3^2-1)+(4^2-1)+(5^2-1)\\ &=3+8+15+24\\ &=50. \end{aligned}

Brackets prevent the common error of applying the summation only to k2k^2 and forgetting the 1-1 in every term.

Write out, but do not evaluate,

j=223j.\sum_{j=-2}^{2}3^j.

The index takes the five integer values 2,1,0,1,2-2,-1,0,1,2, so

32+31+30+31+32.3^{-2}+3^{-1}+3^0+3^1+3^2.

The limits need not begin at 11. They may include 00 or negative integers.

  1. Expand and evaluate r=03(2r+1)\displaystyle\sum_{r=0}^{3}(2^r+1).
  2. How many terms are in k=825(3k2)\displaystyle\sum_{k=8}^{25}(3k-2)?
  3. Write the first and last terms of j=2n(j+4)\displaystyle\sum_{j=2}^{n}(j+4).
Answers
  1. (20+1)+(21+1)+(22+1)+(23+1)=2+3+5+9=19(2^0+1)+(2^1+1)+(2^2+1)+(2^3+1)=2+3+5+9=19.
  2. 258+1=1825-8+1=18 terms.
  3. The first term is 2+4=62+4=6 and the last term is n+4n+4.

To compress a listed sum:

  1. identify a formula for its general term;
  2. choose an index and match its first value to the first term;
  3. choose the final index to produce the last term;
  4. expand the first two terms and the last term as a check.

There can be several correct forms because the index is only a label.

Write

5+8+11++505+8+11+\cdots+50

in sigma notation.

The terms have common difference 33. Starting with r=1r=1, their formula is

3r+2,3r+2,

because 3(1)+2=53(1)+2=5. Find the final index from

3r+2=50,3r+2=50,

which gives r=16r=16. Hence

5+8+11++50=r=116(3r+2).\boxed{5+8+11+\cdots+50=\sum_{r=1}^{16}(3r+2)}.

A form beginning at r=0r=0 is equally valid:

r=015(3r+5).\sum_{r=0}^{15}(3r+5).

Both forms have 1616 terms and generate the same list.

Write

6+18+54++14586+18+54+\cdots+1458

in sigma notation.

The first term is 66 and the common ratio is 33, so the rrth term is

6(3r1).6(3^{r-1}).

Since 1458=6(35)1458=6(3^5), the last term occurs when r1=5r-1=5, so r=6r=6. Therefore

r=166(3r1).\boxed{\sum_{r=1}^{6}6(3^{r-1})}.

The exponent is r1r-1 because the first term contains 303^0.

Write

14+916+25361-4+9-16+25-36

in sigma notation.

The magnitudes are r2r^2. The sign is positive for odd rr and negative for even rr, which is produced by (1)r+1(-1)^{r+1}. Thus

r=16(1)r+1r2.\boxed{\sum_{r=1}^{6}(-1)^{r+1}r^2}.

Check r=1r=1: (1)2(12)=1(-1)^2(1^2)=1. Checking the first term is a quick way to detect a sign shift.

Sigma notation obeys the usual laws of addition and multiplication. For constants aa and bb,

r=mn(af(r)+bg(r))=ar=mnf(r)+br=mng(r).\boxed{ \sum_{r=m}^{n}\bigl(af(r)+bg(r)\bigr) =a\sum_{r=m}^{n}f(r)+b\sum_{r=m}^{n}g(r) }.

In particular, a constant factor can be taken outside:

r=1n5r2=5r=1nr2.\sum_{r=1}^{n}5r^2=5\sum_{r=1}^{n}r^2.

However, a constant term is repeated once for every index value:

r=mnc=c(nm+1).\boxed{\sum_{r=m}^{n}c=c(n-m+1)}.

For example,

r=387=7(83+1)=42.\sum_{r=3}^{8}7=7(8-3+1)=42.

Simplify

r=1n(4r23r+5).\sum_{r=1}^{n}(4r^2-3r+5).

Apply linearity term by term:

r=1n(4r23r+5)=4r=1nr23r=1nr+r=1n5=4r=1nr23r=1nr+5n.\begin{aligned} \sum_{r=1}^{n}(4r^2-3r+5) &=4\sum_{r=1}^{n}r^2-3\sum_{r=1}^{n}r+\sum_{r=1}^{n}5\\ &=4\sum_{r=1}^{n}r^2-3\sum_{r=1}^{n}r+5n. \end{aligned}

The final term is 5n5n, not 55. The number 55 appears in every one of the nn summands.

Adjacent parts of the same sum may be joined:

r=1pf(r)+r=p+1nf(r)=r=1nf(r).\sum_{r=1}^{p}f(r)+\sum_{r=p+1}^{n}f(r) =\sum_{r=1}^{n}f(r).

Consequently,

r=mnf(r)=r=1nf(r)r=1m1f(r).\boxed{ \sum_{r=m}^{n}f(r) =\sum_{r=1}^{n}f(r)-\sum_{r=1}^{m-1}f(r) }.

Subtract up to m1m-1, not up to mm, because the term f(m)f(m) must remain.

Worked example 7: sum over a restricted range

Section titled “Worked example 7: sum over a restricted range”

Given

r=120ur=148andr=17ur=31,\sum_{r=1}^{20}u_r=148 \qquad \text{and} \qquad \sum_{r=1}^{7}u_r=31,

find r=820ur\displaystyle\sum_{r=8}^{20}u_r.

The first seven terms must be removed from the first twenty:

r=820ur=r=120urr=17ur=14831=117.\sum_{r=8}^{20}u_r =\sum_{r=1}^{20}u_r-\sum_{r=1}^{7}u_r =148-31 =117.

The following formulae are supplied in many A-level formula booklets, but you must know how to choose and use them:

r=1nr=n(n+1)2,\boxed{\sum_{r=1}^{n}r=\frac{n(n+1)}{2}},

r=1nr2=n(n+1)(2n+1)6,\boxed{\sum_{r=1}^{n}r^2=\frac{n(n+1)(2n+1)}{6}},

r=1nr3=(n(n+1)2)2.\boxed{\sum_{r=1}^{n}r^3=\left(\frac{n(n+1)}{2}\right)^2}.

The third identity has the memorable form

13+23++n3=(1+2++n)2.1^3+2^3+\cdots+n^3=(1+2+\cdots+n)^2.

These formulae begin at 11. If a sum begins elsewhere, subtract the unwanted initial terms.

Worked example 8: evaluate a quadratic sum

Section titled “Worked example 8: evaluate a quadratic sum”

Evaluate

r=120(3r22r+4).\sum_{r=1}^{20}(3r^2-2r+4).

Split the sum and remember that 44 occurs 2020 times:

r=120(3r22r+4)=3r=120r22r=120r+4(20)=3(20(21)(41)6)2(20(21)2)+80=8610420+80=8270.\begin{aligned} \sum_{r=1}^{20}(3r^2-2r+4) &=3\sum_{r=1}^{20}r^2-2\sum_{r=1}^{20}r+4(20)\\ &=3\left(\frac{20(21)(41)}6\right) -2\left(\frac{20(21)}2\right)+80\\ &=8610-420+80\\ &=8270. \end{aligned}

A rough check helps: the largest summand is 3(20)240+4=11643(20)^2-40+4=1164, so a total of several thousand is plausible.

Worked example 9: lower limit greater than 1

Section titled “Worked example 9: lower limit greater than 1”

Evaluate

r=615r2.\sum_{r=6}^{15}r^2.

The standard formula gives a sum from 11, so subtract the squares from 11 to 55:

r=615r2=r=115r2r=15r2=15(16)(31)65(6)(11)6=124055=1185.\begin{aligned} \sum_{r=6}^{15}r^2 &=\sum_{r=1}^{15}r^2-\sum_{r=1}^{5}r^2\\ &=\frac{15(16)(31)}6-\frac{5(6)(11)}6\\ &=1240-55\\ &=1185. \end{aligned}

There are 156+1=1015-6+1=10 terms. This is a useful check on the range.

Worked example 10: sum an algebraic sequence

Section titled “Worked example 10: sum an algebraic sequence”

Find a formula for

Sn=r=1n(2r1)2.S_n=\sum_{r=1}^{n}(2r-1)^2.

Expand before applying the standard sums:

(2r1)2=4r24r+1.(2r-1)^2=4r^2-4r+1.

Therefore

Sn=4r=1nr24r=1nr+r=1n1=4(n(n+1)(2n+1)6)4(n(n+1)2)+n=2n(n+1)(2n+1)32n(n+1)+n=n(4n21)3.\begin{aligned} S_n &=4\sum_{r=1}^{n}r^2-4\sum_{r=1}^{n}r+\sum_{r=1}^{n}1\\ &=4\left(\frac{n(n+1)(2n+1)}6\right) -4\left(\frac{n(n+1)}2\right)+n\\ &=\frac{2n(n+1)(2n+1)}3-2n(n+1)+n\\ &=\frac{n(4n^2-1)}3. \end{aligned}

Check n=1n=1: the original sum is 11, and the formula gives 1(41)/3=11(4-1)/3=1.

  1. Evaluate r=112(5r2)\displaystyle\sum_{r=1}^{12}(5r-2).
  2. Evaluate r=410r2\displaystyle\sum_{r=4}^{10}r^2.
  3. Simplify r=1n(r3+2r)\displaystyle\sum_{r=1}^{n}(r^3+2r).
Answers
  1. 5(12(13)2)2(12)=39024=366.5\left(\frac{12(13)}2\right)-2(12)=390-24=366.
  2. 10(11)(21)63(4)(7)6=38514=371.\frac{10(11)(21)}6-\frac{3(4)(7)}6=385-14=371.
  3. (n(n+1)2)2+n(n+1)=n(n+1)(n2+n+4)4.\left(\frac{n(n+1)}2\right)^2+n(n+1) =\frac{n(n+1)(n^2+n+4)}4.

Sometimes shifting the index makes a sum match a familiar pattern. The values of the terms must stay unchanged, so change the limits and the summand together.

Rewrite

r=38(r2)2\sum_{r=3}^{8}(r-2)^2

using an index that begins at 11.

Let

k=r2.k=r-2.

When r=3r=3, k=1k=1. When r=8r=8, k=6k=6. Also (r2)2=k2(r-2)^2=k^2. Hence

r=38(r2)2=k=16k2.\boxed{\sum_{r=3}^{8}(r-2)^2=\sum_{k=1}^{6}k^2}.

Both sides expand to 12+22++621^2+2^2+\cdots+6^2.

In a telescoping sum, most terms cancel after the summand is rewritten as a difference. This is useful preparation for later work with series.

Evaluate

r=1n1r(r+1).\sum_{r=1}^{n}\frac{1}{r(r+1)}.

First use partial fractions:

1r(r+1)=1r1r+1.\frac{1}{r(r+1)}=\frac1r-\frac1{r+1}.

Now expand several terms:

r=1n(1r1r+1)=(112)+(1213)+(1314)++(1n1n+1)=11n+1=nn+1.\begin{aligned} \sum_{r=1}^{n}\left(\frac1r-\frac1{r+1}\right) &=\left(1-\frac12\right) +\left(\frac12-\frac13\right) +\left(\frac13-\frac14\right) +\cdots +\left(\frac1n-\frac1{n+1}\right)\\ &=1-\frac1{n+1}\\ &=\frac{n}{n+1}. \end{aligned}

Everything except the first positive term and the final negative term cancels. Writing at least three expanded terms makes the pattern visible.

  • Forgetting inclusive limits: from mm to nn there are nm+1n-m+1 terms.
  • Treating the index as a fixed number: it takes every integer value between the limits.
  • Summing a constant only once: r=1nc=cn\sum_{r=1}^{n}c=cn.
  • Using standard sums from the wrong lower limit: r=5nr2\sum_{r=5}^{n}r^2 requires subtracting r=14r2\sum_{r=1}^{4}r^2.
  • Splitting products: in general, arbr(ar)(br)\sum a_rb_r\ne(\sum a_r)(\sum b_r).
  • Squaring a sum term by term: in general, r2(r)2\sum r^2\ne(\sum r)^2. The cube formula is a special identity, not a general rule.
  • Losing brackets with negative terms: (1)r(-1)^r alternates sign, whereas 1r=1-1^r=-1 under the usual order of operations.
  1. Write 7+12+17++1027+12+17+\cdots+102 in sigma notation.
  2. Evaluate r=512(2r+1)\displaystyle\sum_{r=5}^{12}(2r+1).
  3. Evaluate r=18(r3r)\displaystyle\sum_{r=1}^{8}(r^3-r).
  4. Rewrite r=0n1(r+1)2\displaystyle\sum_{r=0}^{n-1}(r+1)^2 with an index beginning at 11.
  5. Find r=1n2r(r+1)\displaystyle\sum_{r=1}^{n}\frac{2}{r(r+1)}.
Answers
  1. Since 7+5(r1)=5r+27+5(r-1)=5r+2 and 5r+2=1025r+2=102 gives r=20r=20, r=120(5r+2).\sum_{r=1}^{20}(5r+2).
  2. There are 88 terms. Using standard sums, 2(r=112rr=14r)+8=2(7810)+8=144.2\left(\sum_{r=1}^{12}r-\sum_{r=1}^{4}r\right)+8 =2(78-10)+8 =144.
  3. (8(9)2)28(9)2=129636=1260.\left(\frac{8(9)}2\right)^2-\frac{8(9)}2 =1296-36 =1260.
  4. Let k=r+1k=r+1. The limits become 11 and nn, so k=1nk2.\sum_{k=1}^{n}k^2.
  5. 2r=1n(1r1r+1)=2nn+1.2\sum_{r=1}^{n}\left(\frac1r-\frac1{r+1}\right) =\frac{2n}{n+1}.

Use sigma notation to describe the sums in arithmetic sequences and series and geometric sequences and series. It also appears naturally in the binomial expansion, where the index selects each term of the expansion. For applications involving repeated change, continue to sequences and series in modelling.