Algebra - Summations

Summations

Understanding Summations in Mathematics: Definition, Properties, and Key Formulas

A summation is the mathematical process of adding a sequence of numbers. It is often represented using the sigma notation (\(\Sigma\)), which provides a compact way to express long series. Summations are foundational in algebra, calculus, number theory, and statistics.

Key Properties of Summations

  1. Linearity: The summation of a sum equals the sum of the summations.
    \[ \sum_{i=1}^{n} (a_i + b_i) = \sum_{i=1}^{n} a_i + \sum_{i=1}^{n} b_i \]
  2. Constant Multiplication: A constant can be factored out of a summation.
    \[ \sum_{i=1}^{n} c \cdot a_i = c \cdot \sum_{i=1}^{n} a_i \]
  3. Sum of a Constant: Repeating a constant \(c\), \(n\) times gives:
    \[ \sum_{i=1}^{n} c = c \cdot n \]
  4. Index Shift: Summations can be reindexed for simplification.
    \[ \sum_{i=1}^{n} a_i = \sum_{j=0}^{n-1} a_{j+1} \]
  5. Split Property: A summation can be broken into sub-ranges.
    \[ \sum_{i=1}^{m+n} a_i = \sum_{i=1}^{m} a_i + \sum_{i=m+1}^{m+n} a_i \]

Key Summation Formulas

1. Sum of First \(n\) Natural Numbers:

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

2. Sum of Squares:

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

3. Sum of Cubes:

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

4. Sum of Fourth Powers:

\[ \sum_{k=1}^{n} k^4 = \frac{n(n+1)(2n+1)(3n^2 + 3n - 1)}{30} \]

5. Sum of First \(n\) Odd Numbers:

\[ \sum_{k=1}^{n} (2k - 1) = n^2 \]

6. Sum of First \(n\) Even Numbers:

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

7. Sum from \(p\) to \(q\):

\[ \sum_{k=p}^{q} k = \frac{(q + p)(q - p + 1)}{2} \]

×

×