Calculate sigma notation sums with step-by-step solutions. Advanced tool with Web Workers, double summation, and export features.
Sigma notation (also called summation notation) is a concise way to represent the sum of a sequence of terms. It's widely used in mathematics, particularly in calculus, statistics, and discrete mathematics.
Sigma Notation Components:
| Summation | Sigma Notation | Closed Form | Description |
|---|---|---|---|
| Sum of first n integers | $$\sum_{i=1}^{n} i$$ | $$\frac{n(n+1)}{2}$$ | Triangular numbers |
| Sum of squares | $$\sum_{i=1}^{n} i^2$$ | $$\frac{n(n+1)(2n+1)}{6}$$ | Square pyramidal numbers |
| Sum of cubes | $$\sum_{i=1}^{n} i^3$$ | $$\left[\frac{n(n+1)}{2}\right]^2$$ | Squared triangular numbers |
| Arithmetic series | $$\sum_{i=1}^{n} (a + (i-1)d)$$ | $$\frac{n}{2}[2a + (n-1)d]$$ | Constant difference between terms |
| Geometric series | $$\sum_{i=0}^{n-1} ar^i$$ | $$a\frac{1-r^n}{1-r}$$ (r≠1) | Constant ratio between terms |
Linearity: $$\sum_{i=m}^{n} (a \cdot f(i) + b \cdot g(i)) = a \sum_{i=m}^{n} f(i) + b \sum_{i=m}^{n} g(i)$$
Splitting Sums: $$\sum_{i=m}^{n} f(i) = \sum_{i=m}^{k} f(i) + \sum_{i=k+1}^{n} f(i)$$ for any \( m \leq k < n \)
Index Shift: $$\sum_{i=m}^{n} f(i) = \sum_{j=m+k}^{n+k} f(j-k)$$
Constant Sum: $$\sum_{i=m}^{n} c = c \cdot (n - m + 1)$$ where c is constant
Product of Sums: $$\left(\sum_{i=m}^{n} f(i)\right) \cdot \left(\sum_{j=p}^{q} g(j)\right) = \sum_{i=m}^{n} \sum_{j=p}^{q} f(i)g(j)$$
Mathematical Note: Sigma notation is fundamental to discrete mathematics and calculus. Understanding how to manipulate and evaluate summations is essential for advanced mathematics, computer science, and engineering courses.
| π (pi) | 3.141592653589793 |
| e (Euler's number) | 2.718281828459045 |
| φ (Golden ratio) | 1.618033988749895 |
| √2 | 1.414213562373095 |
| √3 | 1.732050807568877 |