Solved Exercises on Sigma Notation in Algebra 2

Master sigma notation: properties, evaluation, applications, and problem-solving techniques through these 5 detailed exercises.

Solution: Exercises 1 to 3
1 Basic Sigma Evaluation
Exercise 1
Evaluate: \(\sum_{k=1}^{5} (2k + 3)\)
Definition:

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)

\(\sum_{i=m}^{n} f(i) = f(m) + f(m+1) + ... + f(n)\)
Expanded Form
Solution Method:
  1. Identify the index variable, limits, and summand
  2. Substitute each value of the index into the summand
  3. Calculate each term
  4. Add all terms together
Given
∑(k=1 to 5)(2k+3)
Expand
5+7+9+11+13
Result
45
Step 1: Identify the components

Index of summation: k

Lower limit: 1

Upper limit: 5

Summand: 2k + 3

Step 2: Substitute each value of k

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

Step 3: Add all terms

5 + 7 + 9 + 11 + 13 = 45

\(\sum_{k=1}^{5} (2k + 3) = 45\)
Final answer:

The sum equals 45

Applied rules:

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

Tip 1: Write out all terms to avoid calculation errors.
Tip 2: Check that you evaluated the correct number of terms.
2 Sigma Properties
Exercise 2
Evaluate: \(\sum_{i=1}^{4} (3i^2 - 2i + 1)\) using properties of summation
Definition:

Summation Properties: Allow us to separate and manipulate sigma expressions

\(\sum_{i=1}^{n} (ai^2 + bi + c) = a\sum_{i=1}^{n} i^2 + b\sum_{i=1}^{n} i + nc\)
Linearity Property
Given
∑(3i²-2i+1)
Separate
3∑i² - 2∑i + ∑1
Result
64
Step 1: Apply linearity property

\(\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\)

Step 2: Evaluate each sum separately

\(\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\)

Step 3: Combine the results

\(3(30) - 2(10) + 4 = 90 - 20 + 4 = 74\)

\(\sum_{i=1}^{4} (3i^2 - 2i + 1) = 74\)
Final answer:

The sum equals 74

Applied rules:

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

Tip 1: Use properties to break complex sums into simpler parts.
Tip 2: Memorize common sums: ∑i = n(n+1)/2, ∑i² = n(n+1)(2n+1)/6.
3 Change of Index
Exercise 3
Rewrite \(\sum_{k=1}^{6} (k^2 + 2k)\) with j as the index variable, where j = k + 2
Definition:

Change of Index: Substituting one variable for another while maintaining the same sum value

\(\sum_{i=m}^{n} f(i) = \sum_{j=p}^{q} f(g(j)) \text{ where } i = g(j)\)
Index Substitution Rule
Original
∑(k=1 to 6)(k²+2k)
Substitution
k=j-2
New form
∑(j=3 to 8)[(j-2)²+2(j-2)]
Step 1: Establish the relationship

Given: j = k + 2, so k = j - 2

Step 2: Find new limits

When k = 1: j = 1 + 2 = 3

When k = 6: j = 6 + 2 = 8

Step 3: Substitute into the summand

Replace k with (j - 2):

\((j-2)^2 + 2(j-2) = j^2 - 4j + 4 + 2j - 4 = j^2 - 2j\)

Step 4: Write the new sum

\(\sum_{j=3}^{8} (j^2 - 2j)\)

\(\sum_{k=1}^{6} (k^2 + 2k) = \sum_{j=3}^{8} (j^2 - 2j)\)
Final answer:

\(\sum_{j=3}^{8} (j^2 - 2j)\)

Applied rules:

Substitution: Replace the old variable with the new one

Limit adjustment: Update limits based on the substitution

Algebraic simplification: Expand and combine like terms

Tip 1: Always adjust both the summand and the limits when changing indices.
Tip 2: Verify by computing both forms to ensure they give the same result.
Key Formulas and Properties
\(\sum_{i=1}^{n} c = cn\)
Constant Sum
\(\sum_{i=1}^{n} i = \frac{n(n+1)}{2}\)
Sum of First n Natural Numbers
\(\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}\)
Sum of Squares
Property 1
Linearity
\(\sum (a_i + b_i) = \sum a_i + \sum b_i\)
Property 2
Scalar Multiplication
\(\sum ca_i = c\sum a_i\)
Property 3
Index Shift
\(\sum_{i=m}^{n} f(i) = \sum_{j=m+k}^{n+k} f(j-k)\)
Key Definitions:

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

Problem-Solving Strategy:
  1. Identify components: Recognize the index, limits, and summand
  2. Apply properties: Use linearity and other properties to simplify
  3. Choose method: Direct evaluation or formula application
  4. Calculate systematically: Follow order of operations carefully
  5. Verify result: Check for reasonableness and computation errors
Common Errors: Misidentifying limits, incorrect substitution, forgetting to adjust limits when changing indices, calculation errors.
Exam Tips: Memorize common summation formulas, practice properties, work step-by-step to avoid errors.
Solution: Exercises 4 to 5
4 Real-world Application
Exercise 4
A company's monthly revenue for the first 5 months is modeled by R(n) = 100n + 50 where n is the month number (n = 1 for January). Find the total revenue for these 5 months using sigma notation.
Definition:

Real-world Application: Sigma notation efficiently represents cumulative totals in business and science

Setup
∑(n=1 to 5)(100n+50)
Separate
100∑n + 50∑1
Result
$1750
Step 1: Set up the sigma notation

Monthly revenue: R(n) = 100n + 50

Total revenue for 5 months: \(\sum_{n=1}^{5} (100n + 50)\)

Step 2: Apply linearity property

\(\sum_{n=1}^{5} (100n + 50) = 100\sum_{n=1}^{5} n + \sum_{n=1}^{5} 50\)

Step 3: Evaluate each sum

\(\sum_{n=1}^{5} n = \frac{5(5+1)}{2} = \frac{30}{2} = 15\)

\(\sum_{n=1}^{5} 50 = 50 \times 5 = 250\)

Step 4: Calculate total

Total = 100(15) + 250 = 1500 + 250 = $1750

The total revenue for 5 months is $1750
Final answer:

Total revenue = $1750

Applied rules:

Modeling: Translate real-world situations into mathematical expressions

Linearity: Use properties to simplify complex expressions

Formula application: Apply known summation formulas

Tip 1: Identify the pattern and set up the sum correctly.
Tip 2: Use formulas when possible to avoid lengthy calculations.
5 Complex Expression
Exercise 5
Evaluate: \(\sum_{k=2}^{6} \frac{k^2 - 1}{k - 1}\)
Definition:

Rational Expression: A sum involving rational functions requires careful algebraic manipulation

Given
∑(k=2 to 6)(k²-1)/(k-1)
Simplify
∑(k=2 to 6)(k+1)
Result
20
Step 1: Factor the numerator

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)

Step 2: Rewrite the sum

\(\sum_{k=2}^{6} \frac{k^2 - 1}{k - 1} = \sum_{k=2}^{6} (k+1)\)

Step 3: Evaluate the simplified sum

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

Step 4: Add all terms

3 + 4 + 5 + 6 + 7 = 25

\(\sum_{k=2}^{6} \frac{k^2 - 1}{k - 1} = 25\)
Final answer:

The sum equals 25

Applied rules:

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

Tip 1: Look for algebraic simplifications before direct evaluation.
Tip 2: Factor polynomials to reveal cancellations.
Comprehensive Guide: Sigma Notation
\(\sum_{i=m}^{n} f(i) = f(m) + f(m+1) + ... + f(n)\)
Definition
\(\sum_{i=1}^{n} i^3 = \left[\frac{n(n+1)}{2}\right]^2\)
Sum of Cubes
Key definitions:

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

Complete methodology:
  1. Identify components: Locate index, limits, and summand in the sigma expression
  2. Choose approach: Direct evaluation, formula application, or property utilization
  3. Apply properties: Use linearity and other properties to simplify when possible
  4. Calculate systematically: Follow the chosen method step-by-step
  5. Verify results: Check computations and ensure the answer is reasonable
Tip 1: The index variable is a "dummy" variable; the sum value doesn't depend on the letter used.
Tip 2: When the upper limit is much larger than the lower limit, look for formulas instead of direct evaluation.
Tip 3: Always check that your index variable doesn't make the denominator zero in rational expressions.
Tip 4: Practice algebraic manipulations as they often simplify sigma expressions significantly.
Common errors: Misidentifying limits, calculation errors, forgetting to apply formulas correctly, incorrect index substitution.
Exam preparation: Memorize common formulas, practice properties, work on algebraic simplification, verify results.
Essential properties to know:

• 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}\)

Visual Understanding: Sigma Notation
Exercise 6: Visual Representation
Compare different ways to represent \(\sum_{i=1}^{4} i^2\):
• 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\)

Questions & Answers

Question: I'm confused about when to use direct evaluation versus formulas. How do I decide?

Answer: The decision depends on the number of terms and the complexity of the summand:

  • Direct evaluation: Use when the number of terms is small (typically ≤ 10) and the summand is simple
  • Formulas: Use when you recognize patterns like \(\sum i\), \(\sum i^2\), \(\sum i^3\), etc., especially when there are many terms
  • Hybrid approach: Sometimes you can partially evaluate and then apply formulas to remaining parts

For example, \(\sum_{i=1}^{5} (2i + 1)\) is easier to evaluate directly since there are only 5 terms.

But \(\sum_{i=1}^{100} i^2\) would be much more efficient using the formula \(\frac{n(n+1)(2n+1)}{6}\).

Question: What happens if the lower limit is greater than the upper limit? For example, \(\sum_{i=5}^{2} i\)?

Answer: When the lower limit is greater than the upper limit, the sum is defined as 0:

\(\sum_{i=5}^{2} i = 0\)

This convention is consistent with the idea that there are no integers i that satisfy 5 ≤ i ≤ 2, so we're summing an empty set of terms.

However, if you want to represent the sum from 2 to 5 in reverse order, you would write \(\sum_{i=2}^{5} i\), which equals 2 + 3 + 4 + 5 = 14.

This is different from the integral analogy where reversing limits introduces a negative sign.

Question: What are some real-world applications of sigma notation? Why is it important to learn this?

Answer: Sigma notation has numerous practical applications:

  • Statistics: Calculating means, variances, and other statistical measures
  • Finance: Computing total returns, annuities, and amortization schedules
  • Computer Science: Analyzing algorithm complexity and performance
  • Physics: Calculating work done, center of mass, and moments of inertia
  • Engineering: Signal processing, control theory, and system analysis

Learning sigma notation develops precision in mathematical communication and provides tools for representing complex calculations concisely. It's foundational for calculus, statistics, and advanced mathematics.

The ability to work with cumulative sums is essential in many quantitative fields.

Question: I sometimes get confused about which variable is the index. How do I identify it correctly?

Answer: Here's how to identify the index variable:

  1. Look for the variable after the sigma symbol: In \(\sum_{i=1}^{5} f(i)\), i is the index
  2. Check the limits: The index appears in the lower and upper limits
  3. Identify in the summand: The index variable will appear in the expression being summed
  4. It's the variable that changes: The index takes on different values from lower to upper limit

For example, in \(\sum_{n=3}^{7} (2n + 1)\):
• Index: n (appears after Σ)
• Lower limit: 3 (n starts at 3)
• Upper limit: 7 (n ends at 7)
• Summand: (2n + 1) (n appears in the expression)

Any other variables in the summand are treated as constants during the summation.

Question: Can I split up a sigma expression like \(\sum (a + b)\) into \(\sum a + \sum b\)? When is this allowed?

Answer: Yes, you can split sums using the linearity property:

Linearity Property: \(\sum_{i=m}^{n} [f(i) + g(i)] = \sum_{i=m}^{n} f(i) + \sum_{i=m}^{n} g(i)\)

This is always allowed when both individual sums exist (converge). It also applies to subtraction:

\(\sum_{i=m}^{n} [f(i) - g(i)] = \sum_{i=m}^{n} f(i) - \sum_{i=m}^{n} g(i)\)

Additionally, you can factor out constants:

\(\sum_{i=m}^{n} [c \cdot f(i)] = c \sum_{i=m}^{n} f(i)\) where c is a constant

These properties make complex sums much easier to evaluate by breaking them into simpler parts.

Example: \(\sum_{i=1}^{4} (3i^2 + 2i - 5) = 3\sum_{i=1}^{4} i^2 + 2\sum_{i=1}^{4} i - \sum_{i=1}^{4} 5\)