📐
📊
✖️
← Back to Dashboard
Font Size:

1. Introduction

Many natural and mathematical phenomena unfold step by step, and sequences provide the language to describe such ordered lists of numbers. A sequence is an arrangement of numbers in a definite order, and the sum of the terms of a sequence is called a series. Two types of sequences dominate the chapter: arithmetic progressions and geometric progressions.

The chapter begins with the definitions of sequences and series, and the notation for their terms. It then develops the arithmetic progression, with its nth term and the sum of the first n terms, and the geometric progression, with its general term, sum formulas, and the infinite geometric series. The chapter also introduces the arithmetic mean and geometric mean, and the relationship between them.

Arithmetic and geometric progressions appear throughout mathematics and science: loan payments and simple interest follow arithmetic patterns, while population growth, radioactive decay, and compound interest follow geometric patterns. The formulas developed here are also prerequisites for limits and the theory of series studied in later mathematics.

2. Sequences and Series: Basic Definitions

A sequence is a function whose domain is the set of natural numbers. A sequence is denoted by a1, a2, a3, ..., where an is the nth term. A sequence can be finite or infinite.

A series is the sum of the terms of a sequence. The sum of the first n terms of a sequence is denoted by Sn:

Sn = a1 + a2 + a3 + ... + an

If a sequence has a clear pattern, it can be specified by its general term an. For example, the sequence 1, 4, 9, 16, ... has an = n^2.

3. Arithmetic Progression (AP)

A sequence is an arithmetic progression if the difference between any two consecutive terms is constant. This constant difference is called the common difference, denoted by d. If the first term is a, the sequence is:

a, a + d, a + 2d, a + 3d, ...

nth Term of an AP

an = a + (n - 1)d

Sum of the First n Terms

Sn = n/2 [2a + (n - 1)d] = n/2 (a1 + an)

Number of Terms and Properties

4. Geometric Progression (GP)

A sequence is a geometric progression if the ratio of any two consecutive terms is constant. This constant ratio is called the common ratio, denoted by r. If the first term is a, the sequence is:

a, ar, ar^2, ar^3, ...

nth Term of a GP

an = a r^(n-1)

Sum of the First n Terms

For r not equal to 1: Sn = a(1 - r^n)/(1 - r) = a(r^n - 1)/(r - 1)

For r = 1, Sn = na.

Infinite Geometric Series

If |r| < 1, the sum of the infinite geometric series is:

S(infinity) = a/(1 - r)

If |r| >= 1, the infinite geometric series does not converge to a finite sum.

5. The Relationship Between AP and GP Means

Arithmetic Mean

The arithmetic mean of two positive numbers a and b is:

A = (a + b)/2

If a, A, b are in AP, then A is the arithmetic mean of a and b.

Geometric Mean

The geometric mean of two positive numbers a and b is:

G = sqrt(ab)

If a, G, b are in GP, then G is the geometric mean of a and b.

Relationship Between A and G

For positive numbers a and b:

A >= G

That is, (a + b)/2 >= sqrt(ab), with equality when a = b. This is a fundamental inequality.

6. Special Series

Some important sums that are frequently used:

Sum of first n natural numbers: 1 + 2 + 3 + ... + n = n(n + 1)/2

Sum of squares of first n natural numbers: 1^2 + 2^2 + ... + n^2 = n(n + 1)(2n + 1)/6

Sum of cubes of first n natural numbers: 1^3 + 2^3 + ... + n^3 = [n(n + 1)/2]^2

These formulas are proven by induction and are used to evaluate many series.

Worked Examples with Detailed Explanation

Finding the nth Term of an AP. Consider the arithmetic progression 7, 12, 17, 22, ... Here the first term is a = 7 and the common difference is d = 5, since each term exceeds the previous one by 5. The 20th term is obtained from the formula an = a + (n - 1)d, which gives a20 = 7 + 19 x 5 = 7 + 95 = 102. Notice that the 20th term uses 19 multiples of the common difference, not 20, because the first term itself is a1 and carries no added difference. This single detail is the most frequent source of error in the whole chapter, so always write down a and d before applying the formula.

Finding the Sum of an AP. For the same progression, the sum of the first 20 terms is S20 = n/2 [2a + (n - 1)d] = 20/2 [2(7) + 19(5)] = 10 [14 + 95] = 10 x 109 = 1090. An alternative is to use the second form Sn = n/2 (a1 + an). Here the last term is 102, so S20 = 20/2 (7 + 102) = 10 x 109 = 1090, which agrees perfectly with the first calculation. Choosing between the two forms depends on whether the last term is known directly; when it is not, the first form is safer because it needs only a, d and n.

Infinite Geometric Series. Consider the geometric progression with a = 3 and r = 1/3, giving the terms 3, 1, 1/3, 1/9, ... Since |r| = 1/3 < 1, the infinite series converges, and its sum is S = a/(1 - r) = 3/(1 - 1/3) = 3/(2/3) = 9/2 = 4.5. Geometrically, the partial sums 3, 4, 4.333, 4.444, ... approach 4.5 but never reach or overshoot it. This example illustrates why the condition |r| < 1 is so important: if the common ratio were greater than or equal to 1 in absolute value, the terms would not shrink and the series would grow without bound, making a finite sum impossible. The same logic underlies the divergence of a geometric series when |r| >= 1.

Quick Revision Tables

Table 1: AP Versus GP

Feature Arithmetic Progression Geometric Progression
Defined by Common difference d Common ratio r
Consecutive relation a_(n+1) - an = d a_(n+1)/an = r
nth term a + (n-1)d a r^(n-1)
Sum of n terms n/2 [2a + (n-1)d] a(1 - r^n)/(1 - r), r not 1
Mean of a, b (a + b)/2 sqrt(ab)

Table 2: Special Series Formulas

Series Formula
1 + 2 + 3 + ... + n n(n + 1)/2
1^2 + 2^2 + ... + n^2 n(n + 1)(2n + 1)/6
1^3 + 2^3 + ... + n^3 [n(n + 1)/2]^2
Infinite GP ( r

Mind Map

graph TD A["Sequences and Series"] --> B["Sequences"] A --> C["Arithmetic Progression"] A --> D["Geometric Progression"] A --> E["Means"] A --> F["Special Series"] B --> B1["an = nth term"] B --> B2["Sn = sum of n terms"] C --> C1["d constant"] C --> C2["an = a + (n-1)d"] C --> C3["Sn = n/2[2a + (n-1)d]"] D --> D1["r constant"] D --> D2["an = a r^(n-1)"] D --> D3["Sn = a(1-r^n)/(1-r)"] D --> D4["S(inf) = a/(1-r) if |r| < 1"] E --> E1["A = (a+b)/2"] E --> E2["G = sqrt(ab)"] E --> E3["A >= G"] F --> F1["sum n = n(n+1)/2"] F --> F2["sum n^2 = n(n+1)(2n+1)/6"] F --> F3["sum n^3 = (n(n+1)/2)^2"]

Important Diagrams (SVG)

Diagram 1: Arithmetic Progression on the Number Line

Arithmetic Progression: a, a + d, a + 2d, ... 0 a a+d a+2d a+3d a+4d d d d d Equal spacing: the difference between consecutive terms is always d. nth term and sum an = a + (n - 1)d, Sn = n/2 [2a + (n - 1)d] Example: 2, 5, 8, 11, ... has a = 2, d = 3; a10 = 2 + 9(3) = 29 Golden Rule: The nth term of an AP is a + (n - 1)d, not a + nd.

Diagram 2: Geometric Progression and Infinite Series

Geometric Progression: a, ar, ar^2, ar^3, ... GP with a = 1, r = 1/2 1 1/2 1/4 1/8 1/16 ... Each term is obtained by multiplying the previous term by r = 1/2. Sums for |r| < 1 Sn = a(1 - r^n)/(1 - r) S(infinity) = a/(1 - r) = 1/(1 - 1/2) = 2 1 + 1/2 + 1/4 + 1/8 + ... approaches 2 Caution If |r| >= 1, the infinite geometric series has no finite sum. The infinite sum formula applies only when |r| < 1. Golden Rule: The infinite geometric sum a/(1 - r) is valid only for |r| < 1.

Common Mistakes

  1. Using an = a + (n - 1)d with the wrong index. The first term has n = 1, so the 10th term uses n - 1 = 9 multiples of d.
  2. Applying the infinite GP sum formula when |r| >= 1. The formula S = a/(1 - r) is valid only when |r| < 1.
  3. Confusing the sum formula with the nth term formula. Sn = n/2[2a + (n-1)d] is a sum, not a term.
  4. Writing the AP mean as sqrt(ab). The arithmetic mean is (a + b)/2, while sqrt(ab) is the geometric mean.
  5. Forgetting that for a GP with r = 1, Sn = na, since the formula a(1 - r^n)/(1 - r) is undefined at r = 1.
  6. Sign errors in the sum formula: Sn = a(1 - r^n)/(1 - r) is the standard form; using a(r^n - 1)/(r - 1) requires both numerator and denominator to flip together.
  7. Misidentifying the first term and common ratio from a problem statement, especially when the series starts with a term other than the given a.
  8. Using n(n+1)(2n+1)/6 for the sum of cubes; the sum of cubes uses [n(n+1)/2]^2.
  9. In word problems, failing to decide whether the growth is arithmetic (constant addition) or geometric (constant multiplication).

Exam Tips

  1. To find a term in an AP, always write down a and d first, then apply an = a + (n - 1)d.
  2. When given three consecutive AP terms, write them as a - d, a, a + d; their sum is 3a, which often simplifies the problem.
  3. For infinite GP sums, always check the condition |r| < 1 before applying the formula, and state it in your answer.
  4. To find the number of terms in an AP, use the formula for an and solve for n carefully.
  5. Memorise the special series: sum of n, sum of n^2, and sum of n^3, as they are directly tested.
  6. When both the arithmetic mean and geometric mean are required, compute A and G separately and remember A >= G for positive numbers.
  7. In mixed problems, break the sequence into AP and GP parts and solve each with its own formulas.

Conclusion

Sequences and series organise the idea of growth by steps and by ratios. Arithmetic progressions capture constant addition, and geometric progressions capture constant multiplication, and together they model a vast range of natural and economic phenomena. The nth term and sum formulas, the arithmetic and geometric means, and the convergence condition of the infinite geometric series are the essential tools of this chapter. The relationship A >= G is a fundamental inequality with wide applications. These foundational ideas prepare students for limits, infinite series, and the deeper analysis encountered in higher mathematics and in applications across the sciences.