When tasked with summing a series of numbers, such as 1 + 2 + 3 + 4, it can be manageable. However, extending this to larger sequences, like adding numbers up to 100, becomes cumbersome. To simplify this process, we can utilize sigma notation, a compact way to represent the sum of a sequence of terms.
Sigma notation is represented by the Greek letter Sigma (Σ) and allows us to express the sum of a series of values efficiently. The notation includes an index of summation, which indicates the starting point of the summation, and an upper limit that shows where the summation ends. For example, in the expression:
$$\sum_{k=1}^{n} f(k)$$
the index starts at 1 and goes up to n, where f(k) is the function applied to each integer value of k. This means you will evaluate the function for each integer from the starting index to the ending index and sum the results.
To illustrate, consider the finite sum where we evaluate:
$$\sum_{k=1}^{3} k^2$$
In this case, we substitute k with the integers from 1 to 3:
$$1^2 + 2^2 + 3^2 = 1 + 4 + 9 = 14$$
Thus, the result of this summation is 14. The process is straightforward: plug in the integer values into the function and sum the results.
It's important to note that the index of summation can vary; it doesn't have to be k. It could be represented by any letter, such as i, j, or h. For example, if we have:
$$\sum_{i=0}^{4} (i + 3)$$
we would evaluate this from i = 0 to i = 4:
$$0 + 3 + 1 + 3 + 2 + 3 + 3 + 3 + 4 + 3 = 25$$
Thus, the result of this summation is 25. Understanding sigma notation allows for efficient computation of sums, especially when dealing with larger sequences, and is a foundational concept in calculus, particularly in approximating areas under curves using rectangles.