This site is a work in progress. New lessons are added regularly.
Contact us
Geometric Sequences and Series
Learning goals
Divide consecutive terms for a constant ratio
Apply an=a1rn−1, with n−1 multiplications
Prove the sum by shifting and subtracting
Exclude r=1, where the sum is na instead
Separate growth in size from growth in value
Reach for logarithms when n sits in the exponent
What makes a sequence geometric
A sequence is geometric when each term is the same fixed multiple of the term before it:
an+1=r⋅an.
The number r is the common ratio. Dividing both sides by an shows where the name comes from:
r=anan+1,
and this ratio is the same everywhere in the sequence. Arithmetic sequences keep a constant
difference; geometric sequences keep a constant ratio. That is the whole distinction.
Two conditions ride along with the definition, and neither is a technicality. The first term a1
must not be 0, and the ratio r must not be 0. If either one were 0, then every term from some
point on would be 0, and the quotient an+1/an would be a division by zero. With a1=0
and r=0, no term is ever 0 and every ratio is defined.
Sequence
Common ratio r
Behaviour
3,6,12,24,48
2
the terms double
81,27,9,3,1
31
the terms shrink
5,−10,20,−40
−2
the signs alternate, the size grows
7,7,7,7
1
nothing changes (watch this one)
To test a sequence, divide each term by the one before it. Every quotient the same means geometric;
one mismatch means not. In 2,6,18,55 the first two quotients are 6/2=3 and 18/6=3, but
55/18 is not 3, so the sequence is not geometric. Note also that 3,6,9,12 fails the test even
though it looks orderly: 6/3=2 but 9/6=1.5. It is arithmetic (constant difference 3), not
geometric.
The nth term, and the off-by-one hiding in it
The nth term of a geometric sequence is an=a1rn−1#
Start at a1 and walk forward. The definition says each step multiplies by r, so
a2=a1r,a3=a2r=(a1r)r=a1r2,a4=a3r=a1r3.
The exponent is not the term number. It is one less, and counting the steps instead of the terms
shows why. Between a1 and an there are n−1 gaps. Term 1 to term 2 is the first
multiplication, term 2 to term 3 is the second, and the last one, term n−1 to term n, is the
(n−1)th. So travelling from a1 to an multiplies by r exactly n−1 times, not n times:
an=a1n−1 factors⋅r⋅r⋯r=a1rn−1.
Check the formula at the near end, where mistakes show up fastest. At n=1 it gives
a1r0=a1, which is exactly right: you have not moved yet, so you have multiplied by nothing. An
exponent of n instead would report the first term as a1r, which is the second term.
∎
This is the same off-by-one you met in arithmetic sequences, where an=a1+(n−1)d for precisely
the same reason: n terms have only n−1 gaps between them. Only the operation changed, from
n−1 additions of d to n−1 multiplications by r.
Five terms, but only four arrows. Each arrow is one multiplication by r, so reaching the fifth term takes four of them, and the fifth term is 3 times 2 to the fourth power.
Worked example 1Find a formula and the 8th term of 5,15,45,135,…
First confirm the sequence really is geometric by dividing consecutive terms:
515=3,1545=3,45135=3.
Every quotient is 3, so r=3 and a1=5. Substituting into an=a1rn−1 gives the
explicit formula:
an=5⋅3n−1.
For the eighth term, the exponent is 8−1=7, not 8:
a8=5⋅37=5⋅2187=10,935.
Check your understanding
In the geometric sequence 2,−6,18,−54,…, what is a7?
Divide to find the ratio: −6/2=−3, and 18/(−6)=−3, so r=−3 and a1=2. The seventh term needs 7−1=6 multiplications.
a7=2⋅(−3)6=2⋅729=1458
The exponent 6 is even, so the negative ratio produces a positive term. Using (−3)7 instead would give −4374, which is the eighth term, not the seventh.
Summing a finite geometric series
A geometric series is what you get when you add up the terms of a geometric sequence. Writing a
for the first term, the sum of the first n terms is
Sn=a+ar+ar2+⋯+arn−1.
The same off-by-one appears again: there are n terms, and the last exponent is n−1. You could
add them one at a time, but for n=100 that is a wasted afternoon. There is a better way, and it is
worth seeing in full.
For r=1, the sum of the first n terms is Sn=1−ra(1−rn)#
Write the sum, and underneath it write r times the same sum. Multiplying by r turns each term into
the next one, so the second line is the first line shifted one place to the right:
SnrSn=a+ar+ar2+⋯+arn−1=a+ar+ar2+⋯+arn−1+arn
Now subtract the second line from the first. Every term of Sn except the leading a also appears
in rSn, and every term of rSn except the trailing arn also appears in Sn. Those shared
terms, from ar all the way up to arn−1, cancel in pairs, and only the two ends survive:
Sn−rSn=a−arn.
Factor each side:
Sn(1−r)=a(1−rn).
This equation is true for every ratio r, with no exceptions. The condition enters only at the
final step. To isolate Sn you divide both sides by 1−r, and division is legal only when
1−r=0, that is, only when r=1. Assuming r=1:
Sn=1−ra(1−rn).
Test it on a sum you can check by hand. With a=3, r=2, and n=4 the formula gives
3(1−16)/(1−2)=3(−15)/(−1)=45, and indeed 3+6+12+24=45.
∎
Multiplying the sum by r shifts every term one place to the right. Subtract the rows and each shared column cancels, leaving only the first term of the top row and the last term of the bottom row.
Multiplying the numerator and denominator by −1 gives the same number in a second common form:
Sn=1−ra(1−rn)=r−1a(rn−1).
They are equal, so use whichever keeps the minus signs out of your way. When r>1 the right-hand
form is tidier, because the denominator r−1 and the factor rn−1 are both positive there.
Under that same condition the left-hand form makes both of those pieces negative, and relies on the two
minus signs cancelling. In summation notation the result reads
k=1∑nark−1=1−ra(1−rn),r=1.
Worked example 2Evaluate 3+6+12+⋯+384
The terms double, so a=3 and r=2. The formula needs the number of terms, and what you are
given is the last term, so find n first. Set an=384 and solve:
3⋅2n−1=384⟹2n−1=128=27⟹n−1=7,
so n=8. There are eight terms, not 384 of them, and not 7. Now apply the sum formula in the
form built for r>1:
S8=2−13(28−1)=13(256−1)=3⋅255=765.
Adding by hand confirms it: 3+6+12+24+48+96+192+384=765.
Worked example 3Sum the first six terms of 2,−6,18,−54,…
Each term is −3 times the one before it, so a=2, r=−3, and n=6. Substitute carefully,
because a negative ratio sets two sign traps at once:
S6=1−(−3)2(1−(−3)6).
The first trap is the exponent. Since 6 is even, (−3)6=+729, not −729. The second trap is the
denominator: 1−(−3)=1+3=4, not −2. With both handled,
S6=42(1−729)=42(−728)=4−1456=−364.
Checking directly, 2−6+18−54+162−486=−364. The sum is negative because the large
negative terms outweigh the positive ones.
Check your understanding
What is the sum of the first 5 terms of the geometric sequence 4,12,36,…?
The ratio is 12/4=3, so a=4, r=3, and n=5. Use the form with r−1 on the bottom, since r>1.
S5=3−14(35−1)=24(243−1)=24⋅242=484
Adding by hand agrees: 4+12+36+108+324=484. Forgetting to divide by r−1=2 gives 968.
When the ratio is 1
The sum formula has a hole in it, and the hole is worth staring at rather than stepping around.
Suppose r=1. Then every term is a⋅1n−1=a, so the sequence is a,a,a,…,
which is genuinely geometric: the ratio really is constant. Adding n copies of a needs no clever
trick at all:
Sn=n termsa+a+⋯+a=na.
Now try the formula on it. It reads
Sn=1−1a(1−1n)=0a⋅0,
which is undefined. Nothing went wrong in the derivation; it simply stops one step short. The identity
the derivation proved,
Sn(1−r)=a(1−rn),
is still perfectly true at r=1, where it says Sn⋅0=0. The trouble is that this
statement is true for every value of Sn, so it pins down nothing at all. Multiplying by 1−r
threw the information away, and no rearranging can bring it back. To get the sum you must return to
the definition, which hands it over immediately: Sn=na.
So the geometric sum formula carries a side condition, and it is not fine print.
Sn=⎩⎨⎧1−ra(1−rn),na,r=1,r=1.
Only r=1 is excluded. The neighbouring case r=−1 is perfectly fine, because the denominator
becomes 1−(−1)=2, which is nowhere near zero. For instance 5−5+5−5 has a=5, r=−1,
n=4, and the formula gives 5(1−1)/2=0, which is right: the four terms cancel in pairs.
Check your understanding
A geometric sequence has a1=7 and common ratio r=1. What is the sum of its first 12 terms?
With r=1 every term equals 7, so the series is 7+7+⋯+7 with twelve terms.
S12=12⋅7=84
The standard formula cannot be used here, since dividing by 1−r=0 is illegal. But the sum is not undefined: only that one expression is. Going back to the definition settles it.
Growth, decay, and the curve behind the sequence
Take absolute values of the defining rule an+1=ran and you get ∣an+1∣=∣r∣⋅∣an∣,
so the sizes of the terms are themselves a geometric sequence, with ratio ∣r∣. That single line
settles the growth question. If ∣r∣>1, each term is larger in size than the last, and the sizes
grow without bound. If ∣r∣<1, each term is smaller in size than the last, and the sizes decay. If
∣r∣=1, the size never changes at all: the terms stay put when r=1 and flip sign forever when
r=−1.
Read every word of that as a statement about size, not about which term is greater. With a1=−8
and r=21 the terms run −8,−4,−2,−1, and each one is greater than the last while
steadily shrinking. The sign pattern is a separate question, decided by the signs of a1 and r.
A positive ratio r keeps every term on the same side of zero as a1, while a negative ratio r
makes the terms alternate.
There is a familiar function hiding behind all this. Since r=0 you may write
an=a1rn−1=ra1⋅rn=Crn,C=ra1,
and when r>0 and r=1 that is precisely the exponential function f(x)=Crx,
evaluated at x=1,2,3,… instead of at every real number. A geometric sequence with
r>0 and r=1 is an exponential function sampled at the integers. Both exclusions are real,
and they fail for different reasons. At r=1 the rule C⋅1x is a constant function, and
an exponential base is never allowed to be 1. At r<0 the power rx has no real value at
most exponents (there is no real (−2)1/2), so no real exponential curve passes through the terms
at all. With a negative ratio the terms simply alternate in sign, while their sizes march along the
curve belonging to ∣r∣. Everything you know about exponential growth and decay transfers straight
across: a quantity growing by a fixed percentage each period has ratio r=1+100p for a
p percent rise. Reading the value of that quantity once per period produces a geometric sequence.
The five terms 3, 6, 12, 24, 48 sit exactly on one smooth exponential curve, read off only at the whole numbers n equals 1 through 5. A geometric sequence is an exponential function sampled at the integers.
Finding the number of terms with logarithms
In an=a1rn−1 the unknown n sits in the exponent, which is exactly the situation
logarithms were built for. Divide by a1, take the logarithm of both sides, and bring the exponent
down:
valid whenever r>0 and r=1, so that logr exists and is not zero. When the target is a
nice power (2n−1=128, say) you can read the exponent off by inspection. When it is not, the
logarithm does the work.
Worked example 4How many terms of 5,10,20,40,… must be added before the sum first exceeds 10,000?
Here a=5 and r=2, so the sum of the first n terms simplifies neatly:
Sn=2−15(2n−1)=5(2n−1).
Set up the requirement and clear away everything around the power of 2:
5(2n−1)>10,000⟹2n−1>2000⟹2n>2001.
Now take logarithms. The logarithm is an increasing function, so it preserves the direction of the
inequality:
nlog2>log2001⟹n>log2log2001≈0.30103.3012≈10.97.
The number of terms must be a whole number, so the first one that works is n=11. Check both sides
of the boundary: S10=5(1024−1)=5115, which falls short, and S11=5(2048−1)=10,235,
which clears the target.
Worked example 5A culture of 400 bacteria triples every hour. After how many whole hours does it first pass one million?
Watch the indexing, because this is where the off-by-one bites in applications. The count at the start
is a1=400, which is the population after zero hours. One hour later you have a2, so the
population after h hours is the (h+1)th term:
ah+1=400⋅3h.
Require that this pass one million and isolate the power:
400⋅3h>1,000,000⟹3h>2500.
Take logarithms of both sides and solve for h:
h>log3log2500≈0.47713.3979≈7.12.
Hours are whole numbers here, so the population first passes one million at h=8. Confirm it:
400⋅37=874,800, still under, while 400⋅38=2,624,400, comfortably over. Note
that this eighth hour corresponds to the ninth term of the sequence, which is exactly the trap.
What happens if you never stop adding, and let the terms of a decaying geometric sequence pile up
forever, is a genuinely different question. That question is the subject of the next lesson.
Common mistakes
Practice
Multiple Choice Questions (MCQ)
Progressively harder sets of questions. Each opens on its own page.
Longer questions in parts, to be worked out on paper. Progressive hints, the answer on its
own so you can check yourself and try again, then the full worked solution, plus a rubric
to mark your own work against.
How would you prove something about a sum whose length nobody has told you? Modern algebra writes the
letter n and moves on. Greek mathematics had no letter to write.
Euclid, who taught in Alexandria, a port city in Egypt, around 300 BCE, proved it regardless.
Proposition 35 of Book IX of his Elements states the sum of a geometric progression, wholly in the
language of ratios. Underneath the wording, the argument is the shift and subtract you carried out
earlier. He weighs the amount by which the second term exceeds the first against the amount by which
the last term exceeds the first. Both comparisons produce the same ratio.
Then he does something odd with it. The very next proposition concerns perfect numbers, meaning numbers
like 6 and 28 that equal the total of their own smaller divisors. Euclid adds up
1+2+4+⋯, and proves that whenever the running total is prime, that total times the last
term is perfect. Try it. Here 1+2+4=7 is prime, and 7×4=28.
Nobody has ever found an odd perfect number, and nobody has shown that none exists. So a sum of powers
opened a question in 300 BCE that remains open today. The instrument that opened it is the formula you
obtained by shifting the sum and subtracting.