Sigma Notation Formula

The sigma notation formula _i=m^n a_i = a_m + a_m+1 + x s + a_n is shorthand for summing many terms.

The Formula

i=mnai=am+am+1+am+2++an\sum_{i=m}^{n} a_i = a_m + a_{m+1} + a_{m+2} + \cdots + a_n

When to use: Sigma notation is shorthand for 'add these all up.' The letter below Σ\Sigma is a counter, the number below is where to start, the number above is where to stop, and the expression to the right tells you what to add each time.

Quick Example

k=14k2=12+22+32+42=1+4+9+16=30\sum_{k=1}^{4} k^2 = 1^2 + 2^2 + 3^2 + 4^2 = 1 + 4 + 9 + 16 = 30

Notation

i=1nai\sum_{i=1}^{n} a_i — the index variable ii is a dummy variable (can be replaced by jj, kk, etc.).

What This Formula Means

Sigma notation uses the Greek letter Σ to express the sum of many terms compactly. The expression i=1nai\sum_{i=1}^{n} a_i means 'add up aia_i for every integer ii from 1 to nn.' For example, i=14i2=1+4+9+16=30\sum_{i=1}^{4} i^2 = 1 + 4 + 9 + 16 = 30.

Sigma notation is shorthand for 'add these all up.' The letter below Σ\Sigma is a counter, the number below is where to start, the number above is where to stop, and the expression to the right tells you what to add each time.

Formal View

i=mnai=am+am+1++an\sum_{i=m}^{n} a_i = a_m + a_{m+1} + \cdots + a_n. Properties: i=mn(ai+bi)=ai+bi\sum_{i=m}^{n} (a_i + b_i) = \sum a_i + \sum b_i (linearity), i=mncai=ci=mnai\sum_{i=m}^{n} c \cdot a_i = c \sum_{i=m}^{n} a_i for constant cc. Telescoping: i=1n(aiai1)=ana0\sum_{i=1}^{n} (a_i - a_{i-1}) = a_n - a_0.

Worked Examples

Example 1

easy
Expand and evaluate k=15(2k1)\displaystyle\sum_{k=1}^{5} (2k - 1).

Answer

2525

First step

1
Write out each term: k=1:1k=1: 1, k=2:3k=2: 3, k=3:5k=3: 5, k=4:7k=4: 7, k=5:9k=5: 9.

Full solution

  1. 2
    Sum: 1+3+5+7+9=251+3+5+7+9 = 25.
  2. 3
    Alternatively, use linearity: 2k=15kk=151=2155=252\sum_{k=1}^5 k - \sum_{k=1}^5 1 = 2 \cdot 15 - 5 = 25.
Expanding by substituting each value of kk is the most direct approach. The linearity of Σ\Sigma allows splitting the sum and using the formula k=1nk=n(n+1)2\sum_{k=1}^n k = \frac{n(n+1)}{2}.

Example 2

medium
Write 12+22+32++n21^2 + 2^2 + 3^2 + \cdots + n^2 in sigma notation and evaluate the closed form for n=10n = 10.

Example 3

medium
Use the closed form to evaluate i=120i\sum_{i=1}^{20} i.

Common Mistakes

  • Treating the term rule as a constant and multiplying by the number of terms - substitute the index value into each term separately.
  • Getting the count of terms wrong - from i=mi=m to nn there are nm+1n-m+1 terms, not nmn-m.
  • Thinking the index letter matters - ii is a dummy variable, so i=1nai\sum_{i=1}^{n} a_i and j=1naj\sum_{j=1}^{n} a_j are identical.

Why This Formula Matters

Sigma notation is the language every later sum is written in — series, Riemann sums, Taylor series — so misreading the bounds or the term rule corrupts everything built on top. It also forces the habit of separating the term-formula from the range, which is exactly the structure integration formalizes. Recognizing it by "Is this an instruction to add up terms generated by substituting an index over a range?" — rather than by familiar numbers — is what lets a student tell it apart from pi notation (product) and series and sequence in a mixed problem set.

Frequently Asked Questions

What is the Sigma Notation formula?

Sigma notation uses the Greek letter Σ to express the sum of many terms compactly. The expression i=1nai\sum_{i=1}^{n} a_i means 'add up aia_i for every integer ii from 1 to nn.' For example, i=14i2=1+4+9+16=30\sum_{i=1}^{4} i^2 = 1 + 4 + 9 + 16 = 30.

How do you use the Sigma Notation formula?

Sigma notation is shorthand for 'add these all up.' The letter below Σ\Sigma is a counter, the number below is where to start, the number above is where to stop, and the expression to the right tells you what to add each time.

What do the symbols mean in the Sigma Notation formula?

i=1nai\sum_{i=1}^{n} a_i — the index variable ii is a dummy variable (can be replaced by jj, kk, etc.).

Why is the Sigma Notation formula important in Math?

Sigma notation is the language every later sum is written in — series, Riemann sums, Taylor series — so misreading the bounds or the term rule corrupts everything built on top. It also forces the habit of separating the term-formula from the range, which is exactly the structure integration formalizes. Recognizing it by "Is this an instruction to add up terms generated by substituting an index over a range?" — rather than by familiar numbers — is what lets a student tell it apart from pi notation (product) and series and sequence in a mixed problem set.

What do students get wrong about Sigma Notation?

The procedure for sigma notation is the easy part; the trap is treating the term rule as a constant and multiplying by the number of terms. Asking "Is this an instruction to add up terms generated by substituting an index over a range?" first is what keeps a correct-looking calculation from being attached to the wrong concept.

What should I learn before the Sigma Notation formula?

Before studying the Sigma Notation formula, you should understand: sequence, series.