Summation Formulas
Summation formulas are used to add a sequence of numbers or mathematical terms efficiently. Instead of writing every term separately, summation notation provides a compact way to represent the total. It is commonly used in algebra, statistics, calculus, and other areas of mathematics.
What Is a Summation Formula?
The summation symbol is written as Σ, which means that the indicated terms should be added together.
A general summation is written as:
Σi=mn ai
Here, i is the index, m is the starting value, n is the ending value, and ai represents the term being added.
Sum of the First n Natural Numbers
The formula for adding the first n positive integers is:
Σi=1n i = n(n + 1) / 2
For example, the sum of the numbers from 1 to 10 is:
10(10 + 1) / 2 = 55
So, 1 + 2 + 3 + ... + 10 = 55.
Sum of Squares Formula
The sum of the squares of the first n positive integers is:
Σi=1n i² = n(n + 1)(2n + 1) / 6
For example:
1² + 2² + 3² + 4² + 5² = 55
The formula gives:
5(6)(11) / 6 = 55
Sum of Cubes Formula
The sum of the cubes of the first n positive integers is:
Σi=1n i³ = [n(n + 1) / 2]²
For example:
1³ + 2³ + 3³ = 36
Using the formula:
[3(4) / 2]² = 6² = 36
Arithmetic Sequence Summation Formula
When the terms form an arithmetic sequence, the sum can be calculated using:
Sn = n(a1 + an) / 2
Here, Sn is the sum, n is the number of terms, a1 is the first term, and an is the last term.
For example, the sum of 3, 6, 9, 12, and 15 is:
S5 = 5(3 + 15) / 2 = 45
Geometric Series Summation Formula
For a geometric sequence with first term a and common ratio r, the sum of the first n terms is:
Sn = a(1 − rn) / (1 − r)
This formula applies when r ≠ 1.
For an infinite geometric series where the absolute value of r is less than 1, the sum is:
S = a / (1 − r)
Basic Properties of Summation
Summation follows several useful rules. A constant can be taken outside the summation:
Σ(cai) = cΣai
Two sequences can also be added term by term:
Σ(ai + bi) = Σai + Σbi
Similarly:
Σ(ai − bi) = Σai − Σbi
How to Use a Summation Formula
First, identify the sequence and determine what type of sum you need. Then select the appropriate formula and substitute the known values. For a simple sequence, you can also expand the summation notation and add the terms directly.
Summation Formulas in Short
The most commonly used formulas are:
Σi=1n i = n(n + 1) / 2
Σi=1n i² = n(n + 1)(2n + 1) / 6
Σi=1n i³ = [n(n + 1) / 2]²
Sn = n(a1 + an) / 2 for an arithmetic sequence.
Sn = a(1 − rn) / (1 − r) for a finite geometric series.
These formulas provide a quick way to calculate common sums without adding every term individually.
Leave A Comment