176 words
1 minutes
Understanding Sigma and Product Notation in Mathematics

Mathematics frequently uses compact notation to represent long repetitive expressions. Two of the most common are:

  • Summation (sigma notation): \sum
  • Product (pi notation): \prod

This post will explain what these symbols mean, how to interpret them, and how to write them using LaTeX in Markdown.


🔢 Sigma Notation: Summation#

The summation symbol \sum represents the sum of terms in a sequence or function.

Syntax#

i=abf(i)\sum_{i = a}^{b} f(i)

This means:
Start with i=ai = a, increase ii by 1 until i=bi = b, and sum all values of f(i)f(i).

Example#

i=14i=1+2+3+4=10\sum_{i=1}^{4} i = 1 + 2 + 3 + 4 = 10

You can also include conditions:

i=1i odd5i=1+3+5=9\sum_{\substack{i=1 \\ i \text{ odd}}}^{5} i = 1 + 3 + 5 = 9


✖️ Pi Notation: Product#

The product symbol \prod represents the product of terms.

Syntax#

j=abf(j)\prod_{j = a}^{b} f(j)

This means:
Multiply all values of f(j)f(j) from j=aj = a to j=bj = b.

Example#

j=14j=1234=24\prod_{j=1}^{4} j = 1 \cdot 2 \cdot 3 \cdot 4 = 24

Just like summation, you can add conditions to exclude certain terms:

j=1j24fj(x)\prod_{\substack{j=1 \\ j \ne 2}}^{4} f_j(x)

This means: multiply all fj(x)f_j(x) from j=1j = 1 to 44, except when j=2j = 2.

Understanding Sigma and Product Notation in Mathematics
https://gura-ame.github.io/posts/sigma/
Author
Gura Ame
Published at
2025-06-29
License
CC BY-NC-SA 4.0