GP properties — sum to n terms, infinite GP, applications in compound interest

medium CBSE JEE-MAIN 3 min read

Question

Find the sum of the GP: 2,6,18,54,...2, 6, 18, 54, ... up to 8 terms. Also find the sum to infinity of: 1+12+14+18+...1 + \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + ...


Solution — Step by Step

Here a=2a = 2, r=6/2=3r = 6/2 = 3, n=8n = 8. Since r>1|r| > 1:

Sn=arn1r1=238131=2656112=6560S_n = a \cdot \frac{r^n - 1}{r - 1} = 2 \cdot \frac{3^8 - 1}{3 - 1} = 2 \cdot \frac{6561 - 1}{2} = \mathbf{6560}

Here a=1a = 1, r=1/2r = 1/2. Since r<1|r| < 1, the infinite sum converges:

S=a1r=111/2=11/2=2S_\infty = \frac{a}{1 - r} = \frac{1}{1 - 1/2} = \frac{1}{1/2} = \mathbf{2}

Why This Works

graph TD
    A["GP Sum: Which formula?"] --> B["|r| > 1?"]
    B -->|Yes| C["S_n = a times r^n - 1 over r - 1"]
    B -->|No| D["|r| < 1?"]
    D -->|Yes| E["S_n = a times 1 - r^n over 1 - r"]
    D --> F["Want infinite sum?"]
    F -->|"Yes, and |r| < 1"| G["S_∞ = a / 1 - r"]
    F -->|"|r| ≥ 1"| H["Infinite sum DIVERGES"]
    A --> I["r = 1?"]
    I -->|Yes| J["S_n = na, all terms equal"]

The finite GP sum formula comes from multiplying SnS_n by rr and subtracting: SnrSn=aarnS_n - rS_n = a - ar^n, giving Sn(1r)=a(1rn)S_n(1-r) = a(1-r^n).

For infinite GP with r<1|r| < 1: as nn \to \infty, rn0r^n \to 0, so S=a/(1r)S_\infty = a/(1-r). The terms keep getting smaller fast enough that the total stays bounded. This is why 1+1/2+1/4+...1 + 1/2 + 1/4 + ... adds to exactly 2, even though there are infinitely many terms.

Compound interest connection: If you invest Rs PP at rate rr per year compounded annually, after nn years you have P(1+r)nP(1+r)^n. This is the nnth term of a GP with first term PP and common ratio (1+r)(1+r). The total amount deposited in an SIP (investing Rs PP every year) is a GP sum: Sn=P(1+r)n1rS_n = P \cdot \frac{(1+r)^n - 1}{r}.


Alternative Method

A quick check: for the infinite GP 1+1/2+1/4+...1 + 1/2 + 1/4 + ..., you can verify by partial sums. S1=1S_1 = 1, S2=1.5S_2 = 1.5, S3=1.75S_3 = 1.75, S4=1.875S_4 = 1.875. The sums approach 2 but never exceed it. This gives intuition for why the answer is 2.

For JEE problems: if a repeating decimal like 0.333...0.333... appears, recognise it as an infinite GP: 3/10+3/100+3/1000+...=(3/10)/(11/10)=3/9=1/33/10 + 3/100 + 3/1000 + ... = (3/10)/(1 - 1/10) = 3/9 = 1/3. This is how we prove that 0.3=1/30.\overline{3} = 1/3.


Common Mistake

Applying the infinite GP formula when r1|r| \geq 1. The formula S=a/(1r)S_\infty = a/(1-r) works ONLY when r<1|r| < 1. If r1|r| \geq 1, the series diverges (the terms do not shrink, so the sum grows without bound). Students sometimes blindly apply the formula to get a finite answer — but that answer is meaningless. Always check r<1|r| < 1 before using the infinite sum formula.


nnth term: an=arn1a_n = ar^{n-1}

Sum of nn terms: Sn=arn1r1S_n = a \cdot \frac{r^n - 1}{r - 1} (when r1r \neq 1)

Sum to infinity (r<1|r| < 1): S=a1rS_\infty = \frac{a}{1 - r}

Geometric mean of aa and bb: G=abG = \sqrt{ab}

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next