Reading Σ notation, the 5 essential summation formulas, summation properties, writing series in sigma form — with worked examples.
Σᵢ₌₁ⁿ aᵢ
= a₁ + a₂ + a₃ + … + aₙ
Σ (sigma)
Means "sum of" — capital Greek letter S for Sum
Index variable (i)
Counter that increases by 1 each step. Often i, k, or j
Lower bound (i = 1)
Starting value of the index — where counting begins
Upper bound (n)
Ending value of the index — where counting stops
Formula (aᵢ)
The expression evaluated at each index value
Number of terms
Upper bound − lower bound + 1 (e.g., i=1 to 5 gives 5 terms)
Read Σᵢ₌₁ⁿ aᵢ as: “the sum of aᵢ, as i goes from 1 to n.”
Add each index value from 1 to 4
Square each index value and sum
Index starts at 2 (not 1) — still substitute each value
Constant formula — result is always 7·6 = 42
Memorize these. They let you evaluate sums of 100 or 1000 terms instantly.
Adding 1 exactly n times gives n
Σᵢ₌₁¹⁰⁰ 1 = 100
Any constant c, added n times, equals cn
Σᵢ₌₁⁸ 5 = 5·8 = 40
Gauss formula — the classic triangular number result
Σᵢ₌₁¹⁰⁰ i = 100·101/2 = 5050
Quadratic formula — three-factor product divided by 6
Σᵢ₌₁⁸ i² = 8·9·17/6 = 204
Square the triangular number formula — elegant result
Σᵢ₌₁⁵ i³ = [5·6/2]² = 15² = 225
These rules let you break apart or simplify complex sigma expressions before evaluating.
A constant multiplied inside the sum can be factored outside.
Σᵢ₌₁⁵ 3i = 3 · Σᵢ₌₁⁵ i = 3 · 15 = 45
A sum of two formulas splits into two separate sigma expressions.
Σᵢ₌₁³ (i + i²) = Σᵢ₌₁³ i + Σᵢ₌₁³ i² = 6 + 14 = 20
A difference of two formulas splits into two separate sigma expressions.
Σᵢ₌₁⁴ (i² − i) = Σᵢ₌₁⁴ i² − Σᵢ₌₁⁴ i = 30 − 10 = 20
A sum can be split at any index k into two adjacent pieces.
Σᵢ₌₁¹⁰ i = Σᵢ₌₁⁵ i + Σᵢ₌₆¹⁰ i = 15 + 40 = 55
Split using sum rule and scalar rule:
= 2 · Σᵢ₌₁⁵ i + Σᵢ₌₁⁵ 3
= 2 · [5·6/2] + 3·5
= 2 · 15 + 15
= 30 + 15
= 45
Verify by expanding: 5 + 7 + 9 + 11 + 13 = 45 ✓
Use formula: Σᵢ₌₁ⁿ i = n(n+1)/2, with n = 100
= 100 · 101 / 2
= 10100 / 2
= 5050
Gauss reportedly computed this at age 10 — adding all terms by hand.
Use formula: Σᵢ₌₁ⁿ i² = n(n+1)(2n+1)/6, with n = 8
= 8 · 9 · (2·8 + 1) / 6
= 8 · 9 · 17 / 6
= 1224 / 6
= 204
Check: 1 + 4 + 9 + 16 + 25 + 36 + 49 + 64 = 204 ✓
Identify the pattern: 1 = 1², 4 = 2², 9 = 3², 16 = 4², 25 = 5²
Each term is i² where i goes from 1 to 5 — five terms total.
Σᵢ₌₁⁵ i²
Find the pattern: first term a₁ = 3, common difference d = 4
General term: aᵢ = 3 + (i − 1)·4 = 4i − 1
Find n: 4n − 1 = 43 → 4n = 44 → n = 11
So i runs from 1 to 11.
Σᵢ₌₁¹¹ (4i − 1)
Check endpoints: i=1 → 4(1)−1 = 3 ✓ i=11 → 4(11)−1 = 43 ✓
Arithmetic Series
Σᵢ₌₁ⁿ [a₁ + (i−1)d] = n/2 · (a₁ + aₙ)
The sigma expression matches the arithmetic series formula Sₙ = n/2·(first + last).
Geometric Series
Σᵢ₌₁ⁿ a·rⁱ⁻¹ = a · (1 − rⁿ) / (1 − r), r ≠ 1
Each term is a·rⁱ⁻¹. The sigma index controls the exponent, and the closed-form formula evaluates the whole sum at once.
Key insight: Sigma notation is just a compact way of writing any series — arithmetic, geometric, or other. The summation formulas turn those compact expressions into single values without expanding every term.
Sigma (Σ) is the Greek capital letter used to denote summation — it means 'add up a list of values.' The notation Σᵢ₌₁ⁿ aᵢ means a₁ + a₂ + a₃ + ... + aₙ. The variable below Σ is the index (often i, k, or j), the number below is the starting value, and the number above is the ending value. The formula to the right of Σ describes each term.
To evaluate sigma notation, substitute each integer value of the index into the formula and add the results. For example, Σᵢ₌₁⁵ (2i + 3) means plug in i = 1, 2, 3, 4, 5 and sum: (2·1+3) + (2·2+3) + (2·3+3) + (2·4+3) + (2·5+3) = 5 + 7 + 9 + 11 + 13 = 45. For large sums, use the standard summation formulas to avoid expanding every term.
The five essential summation formulas are: (1) Σ 1 = n (count of terms), (2) Σ i = n(n+1)/2 (sum of first n integers), (3) Σ i² = n(n+1)(2n+1)/6 (sum of first n squares), (4) Σ i³ = [n(n+1)/2]² (sum of first n cubes), (5) Σ c = cn (sum of a constant). These all assume the index runs from i = 1 to n.
Interactive problems, step-by-step solutions, and private tutoring — free to try.
Start Practicing Free