Sequence and Series (AP, GP, HP)

What is a Sequence?

A sequence is an ordered list of numbers following a specific pattern or rule.

Example:
2, 4, 6, 8, 10 is a sequence (in this case, AP)


What is a Series?

A series is the sum of terms of a sequence.
If you sum the terms of a sequence, you get a series.

Example:
2 + 4 + 6 + 8 + 10 is a series.


Types of Sequences

We'll focus on three common types:

  • AP (Arithmetic Progression)
  • GP (Geometric Progression)
  • HP (Harmonic Progression)

🔶 Arithmetic Progression (AP)

Definition

In an AP, the difference between any two consecutive terms is constant.
This constant is called the common difference (d).

If aa is the first term and dd is the common difference, then:

AP: a,a+d,a+2d,a+3d,\text{AP: } a, a + d, a + 2d, a + 3d, \dots

Key Formulas

  • nth term:

    Tn=a+(n1)dT_n = a + (n - 1)d
  • Sum of first n terms (Sₙ):

    Sn=n2[2a+(n1)d]=n2(a+l)S_n = \frac{n}{2} [2a + (n - 1)d] = \frac{n}{2} (a + l)

    where ll is the last term.

  • Mean of n terms:

    Snn=a+l2\frac{S_n}{n} = \frac{a + l}{2}

Common Pitfalls and Tips

MistakeFix
Using wrong formula for nth termDouble-check if you’re using AP or GP
Assuming AP always starts from 1Look carefully at the given first term
Forgetting to use last term in sum formulaSn=n2(a+l)S_n = \frac{n}{2}(a + l) is easiest when last term is known

AP Examples

Example 1:
Find the 12th term of an AP where a=5a = 5, d=3d = 3

T12=5+(121)3=5+33=38T_{12} = 5 + (12 - 1) \cdot 3 = 5 + 33 = 38

Example 2:
Sum of first 50 natural numbers

S50=502(1+50)=2551=1275S_{50} = \frac{50}{2}(1 + 50) = 25 \cdot 51 = 1275

🔷 Geometric Progression (GP)

Definition

In a GP, the ratio between successive terms is constant.
This is called the common ratio (r).

If aa is the first term and rr is the ratio:

GP: a,ar,ar2,ar3,\text{GP: } a, ar, ar^2, ar^3, \dots

Key Formulas

  • nth term:

    Tn=arn1T_n = ar^{n-1}
  • Sum of first n terms (Sₙ):

    Sn=arn1r1(if r1)S_n = a \cdot \frac{r^n - 1}{r - 1} \quad \text{(if } r \neq 1 \text{)}
  • Sum of infinite GP (when r<1|r| < 1):

    S=a1rS = \frac{a}{1 - r}

Common Pitfalls and Tips

MistakeFix
Using infinite sum formula for r1r \geq 1Only valid if (r< 1 )
Mixing AP and GP termsAlways check: is the growth additive (AP) or multiplicative (GP)?
Wrong exponent in nth termarn1ar^{n-1}, not arnar^n

GP Examples

Example 1:
Find 6th term of GP: 2, 4, 8, 16, ...

Here, a=2a = 2, r=2r = 2

T6=225=232=64T_6 = 2 \cdot 2^{5} = 2 \cdot 32 = 64

Example 2:
Sum of infinite GP with a=3a = 3, r=12r = \frac{1}{2}

S=3112=30.5=6S = \frac{3}{1 - \frac{1}{2}} = \frac{3}{0.5} = 6

🔸 Harmonic Progression (HP)

Definition

A harmonic progression is a sequence where the reciprocals of the terms form an AP.

If a,b,ca, b, c are in HP, then:

1a,1b,1c are in AP\frac{1}{a}, \frac{1}{b}, \frac{1}{c} \text{ are in AP}

Key Formulas

There is no direct formula for nth term or sum of HP, but:

  • nth term of HP:

    Hn=1a+(n1)dwhere 1a is the first term of APH_n = \frac{1}{a + (n-1)d} \quad \text{where } \frac{1}{a} \text{ is the first term of AP}
  • Harmonic Mean (HM) between a and b:

    HM=2aba+bHM = \frac{2ab}{a + b}

HP Examples

Example 1:
Find the HM of 3 and 6

HM=2363+6=369=4HM = \frac{2 \cdot 3 \cdot 6}{3 + 6} = \frac{36}{9} = 4

Example 2:
If 1/2,1/3,1/41/2, 1/3, 1/4 are in AP, then corresponding HP is:

2,3,42, 3, 4

Key Differences Between AP, GP, HP

FeatureAPGPHP
PatternAdditiveMultiplicativeReciprocal of AP
nth Terma+(n1)da + (n - 1)darn1ar^{n-1}1/[a+(n1)d]1/[a + (n - 1)d]
Sum (finite)EasyOnly closed for r1r \neq 1No direct formula
Infinite SumNot definedOnly if (r< 1 )Not defined

Real Exam Tips

  • Questions often mix AP/GP in a disguised form — e.g., compound interest disguised as a GP.

  • Check whether a sequence is additive or multiplicative to determine AP vs GP.

  • HP questions are rare but frequently asked in technical interviews.

  • Be alert to wording like:

    "Three numbers in AP/GP/HP with given sum/product" — implies solving simultaneous equations.