Grade 11 → Algebra → Sequences and Series ↓
Sigma Notation
Sigma notation is a concise and powerful way to represent the sum of multiple terms. It is widely used in mathematics to work with sequences and series. In grade 11 math, understanding sigma notation is important because it simplifies the process of working with long expressions involving series, especially when calculating the sum of a large number of terms.
Understanding the basics of sigma notation
Sigma notation uses the Greek letter Σ (sigma) to represent summation. The general form of sigma notation is:
Σ (from i=a to b) of f(i)
This expression is read as "the sum of f(i) from i equals a to i equals b". Here, i
is the index of the sum, a
is the lower limit, and b
is the upper limit. The function f(i)
represents the terms that are to be added together. Let us understand this in more detail.
Components of sigma notation
- Sum index (i): The variable
i
is an index that starts from the lower limita
and increases by 1 until it reaches the upper limitb
. - Lower limit (a): The value at which the index
i
starts. - Upper limit (b): The value at which the index
i
stops. - Function f(i): Expression defined in terms of the summation index. Each value of
i
is substituted into this function to generate each term of the series.
Visual example of sigma notation
Let's see how sigma notation works by using a simple addition:
Σ (from i=1 to 4) of i
This notation represents the sum of all natural numbers from 1 to 4. Divide it:
Reading from left to right: set i
to 1, calculate the term (which is simply i
), then increase i
to 2, and repeat until i
is 4. Next, sum all of these terms.
Example 1:
Consider the series of even numbers from 2 to 10. Using sigma notation it is represented as:
Σ (from i=1 to 5) of (2i)
Expanding this gives:
2(1) + 2(2) + 2(3) + 2(4) + 2(5) = 2 + 4 + 6 + 8 + 10 = 30
Properties of sigma notation
- Linearity of addition: If
a
andb
are constants, then:Σ (from i=a to b) of [c * f(i) + d * g(i)] = c * Σ (from i=a to b) of f(i) + d * Σ (from i=a to b) of g(i)
- Division of Amount: The amount may be divided into the following parts:
Σ (from i=a to b) of f(i) = Σ (from i=a to c) of f(i) + Σ (from i=c+1 to b) of f(i)
- Combining totals: If the indices and limits match, totals can be combined:
Σ (from i=a to b) of f(i) + Σ (from i=a to b) of g(i) = Σ (from i=a to b) of [f(i) + g(i)]
Working with arithmetic and geometric series
Arithmetic series in sigma notation
An arithmetic series is a sequence of numbers in which each term increases by a constant value. The nth term of an arithmetic sequence can be expressed as:
a(n) = a + (n-1)d
where a
is the first term, and d
is the common difference between the terms. In sigma notation, an arithmetic series is represented as follows:
Example 2:
Consider the arithmetic series: 3, 6, 9, 12, ... up to 15 terms.
The first term is a
3 and the common difference is d
3.
Express this in sigma notation:
Σ (from i=1 to 15) [3 + (i-1)*3]
This gives us the sum of the arithmetic series.
Geometric series in sigma notation
A geometric series is a sequence of numbers where each term is multiplied by a constant factor. The nth term of a geometric sequence can be expressed as:
a(n) = ar^(n-1)
where a
is the first term, and r
is the common ratio. In sigma notation, the geometric series is represented as:
Example 3:
Consider the geometric series: 5, 10, 20, 40, up to 4 terms.
The first term is a
5 and the common ratio is r
2.
Express this in sigma notation:
Σ (from i=1 to 4) [5 * 2^(i-1)]
This gives us the sum of the geometric series.
Examples and applications
Example 4:
Find the sum of the first 10 odd numbers using sigma notation.
Σ (from i=1 to 10) [2i - 1]
Expanding this, we get:
(2(1) - 1) + (2(2) - 1) + ... + (2(10) - 1)
The simplification of which is as follows:
1 + 3 + 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 = 100
Example 5:
Find the sum of Σ (from i=1 to 6) of (2i² + 3i)
.
Expanding, we calculate each term:
For i=1: 2(1)² + 3(1) = 5
For i=2: 2(2)² + 3(2) = 14
For i=3: 2(3)² + 3(3) = 27
For i=4: 2(4)² + 3(4) = 44
For i=5: 2(5)² + 3(5) = 65
For i=6: 2(6)² + 3(6) = 90
Adding up these results:
5 + 14 + 27 + 44 + 65 + 90 = 245
Conclusion
Sigma notation is a simple but powerful mathematical tool that provides a concise way to write long sums. Whether you are working with arithmetic or geometric sequences or dealing with more complex formulas, sigma notation helps to represent these sums concisely. By understanding how to manipulate and interpret sigma notation, you can solve complex series and sequences more easily. Mastery of this notation is also foundational to advanced mathematics, statistics, and various fields of science.
As you continue to practice and work with sigma notation, remember to break down expressions, recognize limits and functions, and always check each term. By doing so, you will develop a deeper understanding of sequences and series, which will be invaluable in your mathematical journey.