Sigma Notation: \(\sum_{i=m}^{n} f(i)\) represents the sum of f(i) for i from m to n
Components: Σ (sigma symbol), index of summation (k), lower limit (1), upper limit (5), summand (2k + 3)
- Identify the index variable, limits, and summand
- Substitute each value of the index into the summand
- Calculate each term
- Add all terms together
Index of summation: k
Lower limit: 1
Upper limit: 5
Summand: 2k + 3
When k = 1: 2(1) + 3 = 5
When k = 2: 2(2) + 3 = 7
When k = 3: 2(3) + 3 = 9
When k = 4: 2(4) + 3 = 11
When k = 5: 2(5) + 3 = 13
5 + 7 + 9 + 11 + 13 = 45
The sum equals 45
• Substitution: Replace the index variable with each value from lower to upper limit
• Order of operations: Follow PEMDAS when evaluating each term
• Sequential evaluation: Go from lower to upper limit incrementally
Summation Properties: Allow us to separate and manipulate sigma expressions
\(\sum_{i=1}^{4} (3i^2 - 2i + 1) = 3\sum_{i=1}^{4} i^2 - 2\sum_{i=1}^{4} i + \sum_{i=1}^{4} 1\)
\(\sum_{i=1}^{4} i^2 = 1^2 + 2^2 + 3^2 + 4^2 = 1 + 4 + 9 + 16 = 30\)
\(\sum_{i=1}^{4} i = 1 + 2 + 3 + 4 = 10\)
\(\sum_{i=1}^{4} 1 = 1 + 1 + 1 + 1 = 4\)
\(3(30) - 2(10) + 4 = 90 - 20 + 4 = 74\)
The sum equals 74
• Linearity: \(\sum (a + b) = \sum a + \sum b\)
• Constant multiplication: \(\sum ca = c\sum a\)
• Constant sum: \(\sum c = nc\) where n is the number of terms
Change of Index: Substituting one variable for another while maintaining the same sum value
Given: j = k + 2, so k = j - 2
When k = 1: j = 1 + 2 = 3
When k = 6: j = 6 + 2 = 8
Replace k with (j - 2):
\((j-2)^2 + 2(j-2) = j^2 - 4j + 4 + 2j - 4 = j^2 - 2j\)
\(\sum_{j=3}^{8} (j^2 - 2j)\)
\(\sum_{j=3}^{8} (j^2 - 2j)\)
• Substitution: Replace the old variable with the new one
• Limit adjustment: Update limits based on the substitution
• Algebraic simplification: Expand and combine like terms
Sigma Notation: A concise way to represent the sum of a sequence of terms using the Greek letter Σ
Index of Summation: The variable that takes on integer values from the lower limit to the upper limit
Limits of Summation: The lower and upper bounds that specify the range of the index variable
Summand: The expression being summed
- Identify components: Recognize the index, limits, and summand
- Apply properties: Use linearity and other properties to simplify
- Choose method: Direct evaluation or formula application
- Calculate systematically: Follow order of operations carefully
- Verify result: Check for reasonableness and computation errors
Real-world Application: Sigma notation efficiently represents cumulative totals in business and science
Monthly revenue: R(n) = 100n + 50
Total revenue for 5 months: \(\sum_{n=1}^{5} (100n + 50)\)
\(\sum_{n=1}^{5} (100n + 50) = 100\sum_{n=1}^{5} n + \sum_{n=1}^{5} 50\)
\(\sum_{n=1}^{5} n = \frac{5(5+1)}{2} = \frac{30}{2} = 15\)
\(\sum_{n=1}^{5} 50 = 50 \times 5 = 250\)
Total = 100(15) + 250 = 1500 + 250 = $1750
Total revenue = $1750
• Modeling: Translate real-world situations into mathematical expressions
• Linearity: Use properties to simplify complex expressions
• Formula application: Apply known summation formulas
Rational Expression: A sum involving rational functions requires careful algebraic manipulation
Notice that \(k^2 - 1 = (k-1)(k+1)\) (difference of squares)
So: \(\frac{k^2 - 1}{k - 1} = \frac{(k-1)(k+1)}{k-1} = k+1\) (when k ≠ 1)
\(\sum_{k=2}^{6} \frac{k^2 - 1}{k - 1} = \sum_{k=2}^{6} (k+1)\)
When k = 2: k + 1 = 3
When k = 3: k + 1 = 4
When k = 4: k + 1 = 5
When k = 5: k + 1 = 6
When k = 6: k + 1 = 7
3 + 4 + 5 + 6 + 7 = 25
The sum equals 25
• Algebraic simplification: Factor and cancel common terms
• Difference of squares: \(a^2 - b^2 = (a-b)(a+b)\)
• Domain consideration: Check that k ≠ 1 for the original expression
Sigma Notation: A compact way to write sums using the symbol Σ (Greek capital letter sigma)
Index of Summation: The variable that changes value in the sum (usually i, j, k, or n)
Limits of Summation: The starting (lower) and ending (upper) values for the index
Summand: The expression that is evaluated and summed
- Identify components: Locate index, limits, and summand in the sigma expression
- Choose approach: Direct evaluation, formula application, or property utilization
- Apply properties: Use linearity and other properties to simplify when possible
- Calculate systematically: Follow the chosen method step-by-step
- Verify results: Check computations and ensure the answer is reasonable
• Linearity: \(\sum (a_i + b_i) = \sum a_i + \sum b_i\)
• Scalar multiplication: \(\sum ca_i = c\sum a_i\)
• Constant sum: \(\sum c = cn\) (n terms)
• Sum formulas: \(\sum i = \frac{n(n+1)}{2}\), \(\sum i^2 = \frac{n(n+1)(2n+1)}{6}\)
• Expanded form: 1² + 2² + 3² + 4²
• Sigma notation: \(\sum_{i=1}^{4} i^2\)
• Visual representation: squares with areas 1, 4, 9, 16
Analysis: The visualization shows how sigma notation represents the sum of areas of squares with side lengths 1, 2, 3, and 4.
- 1² = 1, 2² = 4, 3² = 9, 4² = 16
- Total area = 1 + 4 + 9 + 16 = 30
- Using formula: \(\sum_{i=1}^{4} i^2 = \frac{4(5)(9)}{6} = \frac{180}{6} = 30\)