Summation Notation Makes Repeated Addition Precise
Read, expand, transform, and evaluate sigma notation—the compact language behind finite sums and Riemann sums.
By Theory Commons Editors4 min readPublished Aug 23, 2026
Long additions hide their structure. Summation notation—or sigma notation—states what changes, what stays fixed, where counting begins, and where it ends.
Learning objectives
You will learn to expand and compress sums, distinguish an index from a term count, use linearity, shift indices, and apply standard finite-sum formulas.
Read the notation from the inside out
For
k=1∑4(2k+1),
substitute k=1,2,3,4 into the entire summand:
(3)+(5)+(7)+(9)=24.
There are n−m+1 terms in an inclusive sum from m through n. Thus ∑i=37ai contains five terms, not four or seven.
The first counts terms. The second can be understood by pairing the first and last terms: each pair sums to n+1. These formulas turn structured additions into algebraic expressions and later make Riemann sums computable.
Index shifts preserve the terms
Consider
i=1∑nai+1=a2+a3+⋯+an+1.
Let j=i+1. Then i=1 corresponds to j=2, and i=n corresponds to j=n+1:
i=1∑nai+1=j=2∑n+1aj.
Change the index, bounds, and summand together. Expanding the first few terms is the safest check.
Nested sums
In
i=1∑2j=1∑3(i+j),
the inner sum completes for each fixed i. For i=1, it gives 2+3+4=9; for i=2, it gives 3+4+5=12. The total is 21.
Check your understanding
Expand ∑r=032r.
How many terms are in ∑k=412bk?
Rewrite ∑i=0n−1ai+1 using index j beginning at 1.
Show the reasoning
20+21+22+23=1+2+4+8=15.
12−4+1=9 terms.
Set j=i+1. The bounds become j=1 through j=n, so the sum is ∑j=1naj.