Sigma notation (also called summation notation) is a compact way to express the sum of a sequence of terms. The Greek letter sigma (Σ) is used to represent summation. It allows you to express sums efficiently, especially when the pattern of terms is repetitive or follows a specific rule.
General Form of Sigma Notation:
The general form of sigma notation is:
i=m∑nf(i)
Where:
- Σ indicates summation.
- i is the index of summation (the variable that changes value in each term).
- m is the lower limit of summation (the starting value for i).
- n is the upper limit of summation (the ending value for i).
- f(i) is the general term (the expression that defines the terms being summed, depending on i).
How it Works:
- The summation starts at the value i=m and ends at i=n.
- For each integer i from m to n, you compute f(i) and then add the results together.
Example 1: Simple Sum
i=1∑4i
This represents the sum of integers from 1 to 4. So,
i=1∑4i=1+2+3+4=10
In this case, f(i)=i, and we add all values of i from 1 to 4.
Example 2: Sum of Squares
i=1∑3i2
This represents the sum of the squares of integers from 1 to 3. So,
i=1∑3i2=12+22+32=1+4+9=14
Here, f(i)=i2, so for each i from 1 to 3, we square i and then sum the results.
Example 3: Sum of a Linear Expression
i=1∑5(2i+1)
This represents the sum of the expression 2i+1 for i from 1 to 5. So,
i=1∑5(2i+1)=(2(1)+1)+(2(2)+1)+(2(3)+1)+(2(4)+1)+(2(5)+1)
Simplifying:
=(2+1)+(4+1)+(6+1)+(8+1)+(10+1)=3+5+7+9+11=35
Key Properties of Sigma Notation:
Sigma notation has several useful properties that can simplify calculations, especially when dealing with large sums:
-
Linearity of Summation:
i=m∑n[f(i)+g(i)]=i=m∑nf(i)+i=m∑ng(i)
This means that you can break up a sum into two separate sums and then add them.
-
Constant Factor:
i=m∑nc⋅f(i)=c⋅i=m∑nf(i)
If a constant c is multiplied by the function f(i), you can factor out the constant.
-
Sum of Constants:
i=m∑nc=c⋅(n−m+1)
If you are summing a constant, the sum is simply the constant multiplied by the number of terms (i.e., n−m+1).
Example 4: Using the Properties
Let’s say you have the following sum:
i=1∑4(3i+2)
You can split the sum into two parts:
i=1∑4(3i+2)=i=1∑43i+i=1∑42
Now, calculate each sum separately:
-
For ∑i=143i, factor out the 3:
3i=1∑4i=3(1+2+3+4)=3×10=30
-
For ∑i=142, since 2 is a constant, use the formula for the sum of constants:
i=1∑42=2×4=8
So the total sum is:
i=1∑4(3i+2)=30+8=38
Summing a Series:
Sometimes sigma notation is used to represent known mathematical series, such as the sum of the first n natural numbers, or the sum of squares, or other well-known patterns. For instance:
Summary:
Sigma notation provides a concise and efficient way to represent sums of sequences. It is especially useful for working with sums where the terms follow a pattern, and it can be simplified using properties like linearity, constant factors, and known sum formulas.