Sigma Notation: \(\sum_{i=m}^{n} f(i)\) represents the sum of terms \(f(m) + f(m+1) + ... + f(n)\), where \(i\) is the index of summation.
- Identify the lower bound (\(i = 1\)), upper bound (\(i = 5\)), and the function to sum (\(2i + 3\))
- Substitute each value of the index into the function
- Add all the resulting terms together
Lower bound: \(i = 1\), Upper bound: \(i = 5\), Function: \(f(i) = 2i + 3\)
For \(i = 1\): \(2(1) + 3 = 5\)
For \(i = 2\): \(2(2) + 3 = 7\)
For \(i = 3\): \(2(3) + 3 = 9\)
For \(i = 4\): \(2(4) + 3 = 11\)
For \(i = 5\): \(2(5) + 3 = 13\)
\(\sum_{i=1}^{5} (2i + 3) = 5 + 7 + 9 + 11 + 13 = 45\)
The sum evaluates to 45.
• Index substitution: Replace the index variable with each integer value in range
• Linear function evaluation: Apply the function to each index value
• Arithmetic sequence: This forms an arithmetic sequence with common difference 2
Summation properties: \(\sum_{i=1}^{n} (a \cdot f(i) + b \cdot g(i)) = a\sum_{i=1}^{n} f(i) + b\sum_{i=1}^{n} g(i)\)
\(\sum_{k=1}^{10} (3k^2 - 2k + 1) = 3\sum_{k=1}^{10} k^2 - 2\sum_{k=1}^{10} k + \sum_{k=1}^{10} 1\)
\(\sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6}\)
\(\sum_{k=1}^{n} k = \frac{n(n+1)}{2}\)
\(\sum_{k=1}^{n} 1 = n\)
\(\sum_{k=1}^{10} k^2 = \frac{10(11)(21)}{6} = \frac{2310}{6} = 385\)
\(\sum_{k=1}^{10} k = \frac{10(11)}{2} = \frac{110}{2} = 55\)
\(\sum_{k=1}^{10} 1 = 10\)
\(3(385) - 2(55) + 1(10) = 1155 - 110 + 10 = 1055\)
The sum evaluates to 1055.
• Linearity: \(\sum (af(k) + bg(k)) = a\sum f(k) + b\sum g(k)\)
• Standard formulas: \(\sum k^2\), \(\sum k\), \(\sum 1\) have closed forms
• Constant factor: Constants can be factored out of summations
Left Riemann Sum: \(L_n = \sum_{i=0}^{n-1} f(x_i) \Delta x\) where \(x_i = a + i\Delta x\) and \(\Delta x = \frac{b-a}{n}\).
For \(\int_0^2 x^2 dx\): \(a = 0\), \(b = 2\), \(\Delta x = \frac{2-0}{n} = \frac{2}{n}\)
Left endpoints are: \(x_0 = 0\), \(x_1 = \frac{2}{n}\), \(x_2 = \frac{4}{n}\), ..., \(x_{n-1} = \frac{2(n-1)}{n}\)
General form: \(x_i = \frac{2i}{n}\) for \(i = 0, 1, 2, ..., n-1\)
Left Riemann sum: \(L_n = \sum_{i=0}^{n-1} f(x_i) \Delta x\)
\(L_n = \sum_{i=0}^{n-1} \left(\frac{2i}{n}\right)^2 \cdot \frac{2}{n}\)
\(L_n = \frac{2}{n} \sum_{i=0}^{n-1} \frac{4i^2}{n^2}\)
\(L_n = \frac{8}{n^3} \sum_{i=0}^{n-1} i^2\)
Since \(\sum_{i=0}^{n-1} i^2 = \sum_{i=1}^{n-1} i^2\) (the \(i=0\) term is 0), we have:
\(L_n = \frac{8}{n^3} \sum_{i=1}^{n-1} i^2\)
The left Riemann sum in sigma notation is \(L_n = \frac{8}{n^3} \sum_{i=1}^{n-1} i^2\).
• Riemann sum definition: \(L_n = \sum_{i=0}^{n-1} f(x_i) \Delta x\)
• Uniform partition: \(\Delta x = \frac{b-a}{n}\), \(x_i = a + i\Delta x\)
• Sigma manipulation: Constants can be factored out of summations
Sigma notation: A compact way to represent the sum of many terms using the Greek letter Σ (sigma)
Index of summation: The variable that takes on consecutive integer values (often \(i\), \(j\), \(k\))
Bounds: The starting (lower) and ending (upper) values of the index
- Identify components: Lower bound, upper bound, and function to sum
- Substitute values: Replace index with each integer in range
- Apply properties: Use linearity and standard formulas when possible
- Simplify: Combine like terms and use algebraic manipulation
Index shifting: Changing the index variable by substitution while preserving the sum's value.
\(\sum_{i=1}^{n} i = 1 + 2 + 3 + ... + n\)
\(\sum_{j=0}^{n-1} (j+1) = (0+1) + (1+1) + (2+1) + ... + ((n-1)+1)\)
\(= 1 + 2 + 3 + ... + n\)
Both sums contain the same terms: \(1 + 2 + 3 + ... + n\), so they are equal.
\(\sum_{i=1}^{n} i = \frac{n(n+1)}{2}\)
\(\sum_{i=1}^{n} i = \sum_{j=0}^{n-1} (j+1) = \frac{n(n+1)}{2}\)
This demonstrates that the dummy variable name doesn't affect the sum's value.
• Index substitution: \(j = i-1\) transforms the first sum to the second
• Dummy variable property: Sum is independent of index variable name
• Standard formula: \(\sum_{i=1}^{n} i = \frac{n(n+1)}{2}\)
Riemann sum limit: \(\lim_{n \to \infty} \sum_{i=1}^{n} f(x_i^*) \Delta x = \int_a^b f(x)dx\) where \(\Delta x = \frac{b-a}{n}\).
We have: \(\frac{1}{n} \sum_{i=1}^{n} \left(\frac{i}{n}\right)^2\)
This can be written as: \(\sum_{i=1}^{n} \left(\frac{i}{n}\right)^2 \cdot \frac{1}{n}\)
This is in the form \(\sum_{i=1}^{n} f(x_i^*) \Delta x\) where:
\(\Delta x = \frac{1}{n}\) and \(x_i^* = \frac{i}{n}\)
And \(f(x) = x^2\)
As \(i\) goes from 1 to \(n\), \(x_i^* = \frac{i}{n}\) goes from \(\frac{1}{n}\) to 1.
As \(n \to \infty\), \(\frac{1}{n} \to 0\), so the interval is \([0,1]\).
\(\lim_{n \to \infty} \frac{1}{n} \sum_{i=1}^{n} \left(\frac{i}{n}\right)^2 = \int_0^1 x^2 dx\)
\(\int_0^1 x^2 dx = \left[\frac{x^3}{3}\right]_0^1 = \frac{1^3}{3} - \frac{0^3}{3} = \frac{1}{3}\)
The limit equals \(\frac{1}{3}\), which is the value of \(\int_0^1 x^2 dx\).
This demonstrates the fundamental connection between Riemann sums and definite integrals.
• Riemann sum identification: Recognize \(\Delta x\) and sample points
• Fundamental theorem: Limits of Riemann sums equal definite integrals
• Integration: \(\int x^2 dx = \frac{x^3}{3} + C\)
Summation notation: \(\sum_{i=m}^{n} f(i)\) represents the sum of terms \(f(m) + f(m+1) + ... + f(n)\)
Index shifting: Changing the index variable while maintaining the sum's value
Geometric series: \(\sum_{i=0}^{n-1} ar^i = a\frac{1-r^n}{1-r}\) for \(r \neq 1\)
- Pattern recognition: Identify the pattern in the summand
- Property application: Use linearity, index shifting, or other properties
- Formula selection: Apply appropriate standard formulas
- Verification: Check the result by substituting small values
• \(\sum_{i=1}^{n} c = cn\) (constant sum)
• \(\sum_{i=1}^{n} i = \frac{n(n+1)}{2}\) (sum of first n integers)
• \(\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}\) (sum of squares)
• \(\sum_{i=1}^{n} i^3 = \left[\frac{n(n+1)}{2}\right]^2\) (sum of cubes)
• \(\sum_{i=0}^{n-1} ar^i = a\frac{1-r^n}{1-r}\) (geometric series)
\(S_1(n) = \sum_{i=1}^{n} 1 = n\) (linear)
\(S_2(n) = \sum_{i=1}^{n} i = \frac{n(n+1)}{2}\) (quadratic)
\(S_3(n) = \sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}\) (cubic)
Analysis: The chart shows how different summations grow at different rates.
- \(S_1(n) = n\): Linear growth
- \(S_2(n) = \frac{n(n+1)}{2} \approx \frac{n^2}{2}\): Quadratic growth
- \(S_3(n) = \frac{n(n+1)(2n+1)}{6} \approx \frac{n^3}{3}\): Cubic growth