3.3.6Sequences & Series

Arithmetic-geometric progression — finding sum

1,606 words7 min readdifficulty · medium

What is an AGP?


Deriving the finite sum (multiply-and-shift)

HOW — the derivation from scratch:

Multiply every term by rr (this shifts each term one place right): rS_n = \quad\;\; ar + (a+d)r^2 + \cdots + \big(a+(n-2)d\big)r^{n-1} + \big(a+(n-1)d\big)r^{n}. \tag{2}

Why this step? Multiplying by rr makes term kk of (2) line up under term k+1k{+}1 of (1). Subtracting kills the "a+kda+kd" bulk and leaves only the difference dd between consecutive coefficients.

Subtract (2) from (1). Line up equal powers of rr: SnrSn=a+[dr+dr2++drn1](a+(n1)d)rn.S_n - rS_n = a + \big[dr + dr^2 + \cdots + dr^{n-1}\big] - \big(a+(n-1)d\big)r^{n}.

Why this step? For r1r^1 through rn1r^{n-1} the coefficient becomes (a+kd)(a+(k1)d)=d(a+kd)-(a+(k-1)d)=d. The first term aa has nothing above it; the last term (a+(n1)d)rn(a+(n-1)d)r^n has nothing below it — those are the "leftovers."

The middle bracket is a pure GP with first term drdr, ratio rr, and n1n-1 terms: dr+dr2++drn1=dr(1rn1)1r.dr + dr^2 + \cdots + dr^{n-1} = \frac{dr(1-r^{n-1})}{1-r}.

So (1r)Sn=a+dr(1rn1)1r(a+(n1)d)rn.(1-r)S_n = a + \frac{dr(1-r^{n-1})}{1-r} - \big(a+(n-1)d\big)r^{n}.

Figure — Arithmetic-geometric progression — finding sum

The infinite sum

HOW: In the boxed formula let nn\to\infty with r<1|r|<1. Then rn0r^{n}\to 0, rn10r^{n-1}\to 0, and (n1)rn0(n-1)r^n\to 0 (exponential beats linear). Only the surviving pieces remain:


Worked examples


Common mistakes


Recall Feynman: explain to a 12-year-old

Imagine a staircase where each step is also getting shorter by half. The step number (1, 2, 3, …) keeps counting up, but each step is so much tinier that the whole staircase has a total, finite length. The magic trick: build a copy of the staircase shifted one step over, lay it on top, and almost everything matches up and cancels. What's left is a simple shrinking pile you can add up instantly.


Active recall

Flashcards

What defines an arithmetic-geometric progression?
Each term = (AP term)×(GP term), i.e. Tn=(a+(n1)d)rn1T_n=(a+(n-1)d)r^{n-1}.
What operation reduces an AGP to a known GP?
Multiply by ratio rr and subtract, so consecutive AP coefficients differ by just dd, leaving a pure GP.
How many terms are in the leftover GP after subtraction?
n1n-1 terms (from drdr to drn1dr^{n-1}).
Infinite sum of AGP and its condition?
S=a1r+dr(1r)2S_\infty=\frac{a}{1-r}+\frac{dr}{(1-r)^2}, valid for r<1|r|<1.
Evaluate n1n/2n1\sum_{n\ge1} n/2^{n-1}.
44 (with a=1,d=1,r=1/2a=1,d=1,r=1/2).
Why is the denominator (1r)2(1-r)^2 for the arithmetic part?
The GP-sum gives one (1r)(1-r) and factoring SnS_n gives another, so it's squared.
n1nxn1\sum_{n\ge1} n x^{n-1} for x<1|x|<1?
1(1x)2\frac{1}{(1-x)^2}.

Connections

Concept Map

multiplied by

multiplied by

summed gives

multiply by r

subtract from Sn

leaves

sum by GP formula

let n to infinity, r under 1

ensures tail vanishes

first piece

second piece

AP part a+n-1 d

AGP term Tn

GP part b r^n-1

Standard sum Sn

r times Sn shifted

Bulk terms cancel

Leftover pure GP

Finite AGP sum

Infinite AGP sum

Condition abs r under 1

GP part a over 1-r

Arithmetic tilt correction

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, AGP ka matlab hai har term do cheezon ka product: ek arithmetic part (jaise 1, 2, 3, … jo seedha count karta hai) aur ek geometric part (jaise 1,r,r2,1, r, r^2, … jo bar-bar multiply hota hai). Pure GP toh easily sum ho jaata hai kyunki agar poori series ko rr se multiply karke shift karke subtract karo, toh zyada tar terms cancel ho jaate hain. AGP mein bhi yehi trick lagate hain — bas arithmetic coefficient ki wajah se ek chhoti si pure GP bach jaati hai, jise hum already jaante hain.

Main formula (infinite ke liye) yaad rakho: S=a1r+dr(1r)2S_\infty=\dfrac{a}{1-r}+\dfrac{dr}{(1-r)^2}. Pehla part GP ka dil hai, doosra part arithmetic ki "tilt" hai — aur iska denominator square hota hai, yeh mat bhoolna. Sabse important baat: yeh infinite formula sirf tab valid hai jab r<1|r|<1 ho. Agar rr bada hai (jaise 3), toh series diverge kar jaati hai aur infinite sum exist hi nahi karta.

Exam tip: agar sirf nn terms ka finite sum poocha ho, toh multiply-and-shift wala full box formula use karo, ya khud method laga do — kabhi bhi infinite formula ko finite question pe blindly mat lagao. Ek classic example: 1+22+34+48+=41+\frac{2}{2}+\frac{3}{4}+\frac{4}{8}+\dots = 4, jahan a=1,d=1,r=12a=1,d=1,r=\tfrac12. Partial sums 1,2,2.75,3.25,1,2,2.75,3.25,\dots dheere dheere 4 ki taraf badhte hain — yeh dekh ke intuition set ho jaayega.

Go deeper — visual, from zero

Test yourself — Sequences & Series

Connections