Maths Formulae Algebra Summations

Summation Formulas – Sigma Notation and Series

Master algebraic summation formulas using sigma notation. Includes arithmetic and geometric series, polynomial sums, and...
🔑

Definition of Summations

Mathematical summations, denoted by the Greek letter Sigma (Σ), represent the operation of systematically adding a sequence of terms. This notation provides a compact way to express long sums. The index of summation (e.g., 'i' or 'k') starts at a lower limit and increments by one until it reaches the upper limit, with the expression following the sigma being evaluated for each value of the index and added to the total.

\[ \sum_{i=1}^{n} a_i = a_1 + a_2 + a_3 + \cdots + a_n \]
Basic Summation Notation
\[ \sum_{k=m}^{n} f(k) \]
General Form

In this notation, k is the index, m is the lower limit, and n is the upper limit. The summation represents the sum of f(k) for all integer values of k from m to n.

📊

Key Summation Formulas

\[ \sum_{k=1}^{n} k = \frac{n(n+1)}{2} \]
Sum of First n Natural Numbers
\[ \sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6} \]
Sum of First n Squares
\[ \sum_{k=1}^{n} k^3 = \left(\frac{n(n+1)}{2}\right)^2 \]
Sum of First n Cubes
\[ \sum_{k=1}^{n} (2k-1) = n^2 \]
Sum of First n Odd Numbers
\[ \sum_{k=1}^{n} 2k = n(n+1) \]
Sum of First n Even Numbers
\[ \sum_{i=0}^{n} ar^i = a\frac{1-r^{n+1}}{1-r} \]
Finite Geometric Series
\[ \sum_{i=0}^{\infty} ar^i = \frac{a}{1-r} \text{ for } |r| < 1 \]
Infinite Geometric Series
✏️

Understanding the Notation

1 2 3 4 5 6 7 8 Σ aₖ (k=1 to n) sum = total area of all bars Σ(aₖ+bₖ) = Σaₖ + Σbₖ Σc·aₖ = c·Σaₖ
Summation Σaₖ (k=1 to n) adds all terms — visualised as the total area of a bar chart. Key properties: linearity and constant-factor factoring.

Summation notation does not represent a physical shape. Instead, it's a symbolic representation:

  • Σ (Sigma): The summation symbol, indicating addition.
  • Index (e.g., k): A variable that takes on integer values.
  • Lower Limit (e.g., k=1): The starting value for the index.
  • Upper Limit (e.g., n): The ending value for the index.
  • Term (e.g., ak): The expression to be evaluated and added for each value of the index.

For example, in \[ \sum_{k=1}^{5} k^2 \], you would sum the squares of integers from 1 to 5: 1² + 2² + 3² + 4² + 5².

📐

Properties of Summations

Linearity: The summation of a sum (or difference) is the sum (or difference) of the individual summations.

\[ \sum_{i=1}^{n} (a_i + b_i) = \sum_{i=1}^{n} a_i + \sum_{i=1}^{n} b_i \]

Constant Multiplication: A constant factor can be moved outside of the summation.

\[ \sum_{i=1}^{n} c \cdot a_i = c \cdot \sum_{i=1}^{n} a_i \]

Sum of a Constant: The sum of a constant 'c' repeated 'n' times is simply c times n.

\[ \sum_{i=1}^{n} c = c \cdot n \]

Split Property: A summation can be broken into two or more sub-ranges.

\[ \sum_{i=1}^{m+n} a_i = \sum_{i=1}^{m} a_i + \sum_{i=m+1}^{m+n} a_i \]

Telescoping Sum: A sum where consecutive terms cancel each other out, leaving only the initial and final terms.

\[ \sum_{i=1}^{n} [f(i+1) - f(i)] = f(n+1) - f(1) \]
💡

Proof of the Sum of First n Integers

We want to prove the formula for the sum of the first n positive integers, often called an arithmetic series.

\[ S_n = \sum_{k=1}^{n} k = \frac{n(n+1)}{2} \]

Step 1: Write the sum in ascending order.

\[ S_n = 1 + 2 + 3 + \cdots + (n-1) + n \]

Step 2: Write the sum in descending order.

\[ S_n = n + (n-1) + (n-2) + \cdots + 2 + 1 \]

Step 3: Add the two equations together, term by term.

\[ 2S_n = (1+n) + (2 + n-1) + (3 + n-2) + \cdots + (n+1) \]

Each pair of terms sums to (n+1). Since there are 'n' terms in the original series, there are 'n' such pairs.

\[ 2S_n = n \cdot (n+1) \]

Step 4: Solve for Sn by dividing by 2.

\[ S_n = \frac{n(n+1)}{2} \]
🧮

Worked Example

Calculate the sum: \[ \sum_{k=1}^{50} k \]
  1. Identify the formula for the sum of the first n integers: \[ \sum_{k=1}^{n} k = \frac{n(n+1)}{2} \]
  2. In this problem, the upper limit is n = 50.
  3. Substitute n = 50 into the formula: \[ \frac{50(50+1)}{2} \]
  4. Simplify the expression: \[ \frac{50(51)}{2} = \frac{2550}{2} \]
  5. Calculate the final result: \[ \frac{2550}{2} = 1275 \]
\[ \sum_{k=1}^{50} k = 1275 \]
Evaluate the sum: \[ \sum_{k=1}^{10} (4k - 3) \]
  1. Use the linearity property to split the summation: \[ \sum_{k=1}^{10} 4k - \sum_{k=1}^{10} 3 \]
  2. Use the constant multiplication property: \[ 4 \sum_{k=1}^{10} k - \sum_{k=1}^{10} 3 \]
  3. Apply the formula for the sum of the first 10 integers: \[ 4 \left( \frac{10(10+1)}{2} \right) - \sum_{k=1}^{10} 3 \]
  4. Calculate the sum of the constant: \[ \sum_{k=1}^{10} 3 = 3 \cdot 10 = 30 \]
  5. Substitute the values back into the expression: \[ 4 \left( \frac{10(11)}{2} \right) - 30 = 4(55) - 30 \]
  6. Calculate the final result: \[ 220 - 30 = 190 \]
\[ \sum_{k=1}^{10} (4k - 3) = 190 \]
🧮

Try It

🚀

Applications of Summations

Finance & Economics: Summations are fundamental for calculating compound interest, annuities, loan amortizations, and the present or future value of cash flows. Economic models often use series to represent aggregate supply, demand, or economic growth over time.

Statistics & Data Science: Basic statistical measures like the mean (average), variance, and standard deviation are defined using summations. They are also crucial in probability theory for calculating expected values and in machine learning for defining cost functions that are minimized during model training.

Physics & Engineering: In physics, summations are used to calculate the center of mass of a system of particles, the total electric field from multiple charges (superposition principle), and in thermodynamics. Engineers use summations in signal processing (Fourier series), structural analysis (sum of forces), and for numerical methods like the Riemann sum to approximate integrals.

Computer Science: The analysis of algorithms heavily relies on summations to determine their computational complexity (e.g., the number of operations in a loop). They are also used in cryptography, data structures, and solving recurrence relations.

🌍

Real-World Examples

A person decides to save money for a year. They save $1 on day 1, $2 on day 2, $3 on day 3, and so on, for all 365 days of the year. How much money will they have saved by the end of the year?
  1. This problem is the sum of the first 365 integers: \[ S = \sum_{k=1}^{365} k \]
  2. Use the formula for the sum of the first n integers, where n = 365: \[ S = \frac{n(n+1)}{2} = \frac{365(365+1)}{2} \]
  3. Calculate the product in the numerator: \[ \frac{365(366)}{2} = \frac{133590}{2} \]
  4. Perform the division to find the total savings.
The total amount saved is $66,795.
A concert hall has 40 rows of seats. The first row has 20 seats, the second has 22, the third has 24, and so on, with each row having two more seats than the one in front of it. What is the total seating capacity of the hall?
  1. The number of seats in row 'k' can be expressed as \[ a_k = 20 + 2(k-1) = 18 + 2k \]
  2. We need to find the total sum from k=1 to 40: \[ \sum_{k=1}^{40} (18 + 2k) \]
  3. Split the summation: \[ \sum_{k=1}^{40} 18 + \sum_{k=1}^{40} 2k = \sum_{k=1}^{40} 18 + 2 \sum_{k=1}^{40} k \]
  4. Calculate each part: \[ (18 \cdot 40) + 2 \left( \frac{40(40+1)}{2} \right) \]
  5. Simplify: \[ 720 + 2 \left( \frac{40 \cdot 41}{2} \right) = 720 + (40 \cdot 41) \]
  6. Calculate the final result: \[ 720 + 1640 \]
The total seating capacity is 2,360 seats.
🏙️

Real-World Scenarios

Σ pᵢ = total brightness image pixel sum
Image Brightness (Pixel Sum)
Total image brightness = Σpᵢ over all pixels. Image processing algorithms use summations for contrast adjustment (Σ(pᵢ−μ)²), histogram equalisation, and convolution filters. GPUs are optimised to compute these sums in parallel across millions of pixels per frame.
Riemann sum → integral ∫≈ Σf(xᵢ)Δx
Numerical Integration
Integrals are limits of Riemann sums: ∫f(x)dx = lim Σf(xᵢ)Δx. Engineers use discrete summations (trapezoidal rule, Simpson's rule) to numerically integrate sensor data, compute forces from pressure distributions, and evaluate Fourier transforms.
Σ = 38, avg = 3.8 survey score tallying
Survey Score Aggregation
Customer satisfaction scores are tallied using Σ: total = Σsᵢ, average = Σsᵢ/n. The linearity property Σ(aₖ+bₖ)=Σaₖ+Σbₖ lets analysts break composite scores into sub-category sums for NPS calculations, quality audits, and A/B test evaluation.

Calculating Loan Repayments

When you take out a loan for a car or a house, the total amount you pay back is the sum of all the individual monthly payments over the loan's term. Each payment consists of principal and interest, and financial formulas use summations to model this entire process.

Stacking Objects in a Pyramid

Imagine stacking cans in a triangular pyramid at a grocery store. The bottom layer might be a row of 10 cans, the next layer has 9, and so on, up to a single can at the top. The total number of cans in the stack is a summation of integers from 1 to 10.

Digital Audio and Image Processing

A digital audio signal is represented as a series of numerical samples taken thousands of times per second. Operations like calculating the average volume or applying an audio filter involve summing up these sample values. Similarly, a digital image is a grid of pixels, and effects like blurring are calculated by summing the values of neighboring pixels.

📚

Types and Classifications

Arithmetic Series: A sum where the difference between consecutive terms is constant. The formula for the sum of the first n integers is a classic example.

\[ \sum_{k=1}^{n} (a + (k-1)d) = \frac{n}{2}(2a + (n-1)d) \]

Geometric Series: A sum where each term is found by multiplying the previous term by a constant 'common ratio' (r).

\[ \sum_{k=0}^{n-1} ar^k = a \frac{1-r^n}{1-r} \]

Infinite Series: A summation where the upper limit is infinity. A key question for infinite series is whether they 'converge' to a finite value or 'diverge' to infinity.

\[ \sum_{k=1}^{\infty} a_k \]

Power Series: An infinite series involving powers of a variable, central to calculus and the representation of functions (e.g., Taylor series).

\[ \sum_{n=0}^{\infty} c_n (x-a)^n \]

Double Summations: Nested summations used for summing over two-dimensional arrays or grids, such as the elements of a matrix.

\[ \sum_{i=1}^{m} \sum_{j=1}^{n} a_{ij} \]
⚠️

Common Mistakes

⚠️ Incorrectly distributing operations. The sum of squares is not the square of the sum. Always use the correct formula. \[ \sum_{i=1}^{n} i^2 \neq \left(\sum_{i=1}^{n} i\right)^2 \]
⚠️ Forgetting index bounds. Always double-check the starting and ending values of the index. A sum from k=0 to n has n+1 terms, not n. An 'empty sum' where the lower limit is greater than the upper limit (e.g., from k=5 to 3) is equal to 0.
⚠️ Assuming infinite series converge. An infinite sum does not always have a finite value. For example, the harmonic series \[ \sum_{n=1}^{\infty} \frac{1}{n} \] diverges to infinity. Always check for convergence using tests like the ratio test or integral test.
🚀

Study Strategy

1 📚 Grasp the Fundamentals
  • Focus on the 'Definition' and 'Notation' sections to understand what Σ, the index (i), and the limits (n) represent.
  • Review the 'Properties of Summations' to learn how to split sums and factor out constants.
  • Study the 'Proof of the Sum of First n Integers' to build a deeper conceptual understanding beyond simple memorization.
  • Differentiate between the 'Types and Classifications' like arithmetic and geometric series to know when to apply specific formulas.
2 🧠 Commit Formulas to Memory
  • Create flashcards for the 'Key Summation Formulas', including the sums of constants, first n integers, and first n squares.
  • Practice writing the main formulas from memory at the beginning of each study session.
  • Review the 'Common Mistakes' section, particularly errors involving the starting and ending indices of the summation.
  • Connect the summation formulas to 'Related Formulas' like those for arithmetic series to build a network of knowledge.
3 ✏️ Practice with Worked Examples
  • Follow the provided 'Worked Example' step-by-step, explaining each calculation aloud to yourself.
  • Cover the solution to a problem, attempt it on your own, and then compare your method and result.
  • Solve problems that require combining multiple properties, like splitting a sum and then applying a key formula.
  • Find additional practice problems that involve changing the lower limit of the summation from 1 to another integer.
4 🌍 Apply to Real-World Scenarios
  • Analyze the 'Real-World Examples', like calculating compound interest or total production, and identify how the formula is applied.
  • Choose a scenario from the 'Real-World Scenarios' list and write out the full summation notation for it.
  • Explore the 'Applications of Summations' in other fields like computer science for algorithm analysis or in physics for calculating total displacement.
  • Create your own simple, real-world problem, such as calculating total savings over a year with a monthly increase, and solve it.
By systematically understanding the concepts, memorizing key formulas, and applying them through practice, you will master summations with confidence.

Frequently Asked Questions

×

×