How to find the sum of a geometric sequence in one calculation.
In 2020, a single post on social media asked people to share it with two friends, each of whom would share it with two more, and so on. After 10 rounds of sharing, the post had reached over a thousand accounts. If you wanted to know the total number of shares at any point — not just the last round, but every round added together — you needed more than a geometric sequence. You needed a geometric series.
A geometric sequence lists terms. A geometric series adds them. If a geometric sequence has first term a1 and common ratio r, the series is the sum of its first n terms:
Writing out every term gets tedious fast. There is a closed formula. Multiply both sides of that sum by r, and you get rSn=a1r+a1r2+⋯+a1rn. Subtract the second equation from the first and almost everything cancels — only the first term of Sn and the last term of rSn survive. That gives Sn−rSn=a1−a1rn, which factors into the formula every Algebra II student needs:
Sn=,,r=1
Here a1 is the first term, r is the common ratio, and n is the number of terms. The restriction r=1 matters: if every term is identical, the formula breaks down because you'd divide by zero. In that case the sum is just n⋅a1.
Sigma notation gives a compact way to write a series. The symbol Σ means "sum the following expression for each integer value of the index." The expression
\sum_,^, a_1 r^
says: start with k=1, plug each integer up through k=n into a_1 r^, and add the results. When k=1 the exponent is zero, so the first term is a1r0=a1. When k=2 you get a1r1, and so on. This matches the series written out above.
The formula works for any value of r except 1. When ∣r∣<1, each term is smaller than the last and the partial sums settle toward a finite number. When ∣r∣>1, the terms grow and the sums grow with them. Both cases use the same formula.
Here is the social media example computed directly.
Total shares after 10 rounds, starting with 1 post shared to 2 each time
a1=1,r=2,n=10
The chain starts with 1 share, doubles each round, and runs for 10 rounds.
S10=1−21(1−210)
Plug straight into the formula. Keep the subtraction order exactly as written — the signs are easy to mix up.
S10=−11(1−1024)
2 to the 10th power is 1024.
S10=−1−1023
Negative divided by negative.
S10=1023✓
Over a thousand total shares from just 10 rounds of doubling.
Now a problem where the ratio is a fraction, and it is given using sigma notation.
Evaluating a sigma notation geometric series
∑k=1548(21)k−1
Read the sigma: the first term is 48 times (1/2) to the zero power, which is 48. The ratio is 1/2. There are 5 terms.
a1=48,r=21,n=5
Pull out the three pieces the formula needs before you plug anything in.
S5=1−2148(1−(21)5)
Substitute into the formula.
S5=2148(1−321)
(1/2) to the 5th power is 1/32.
S5=2148⋅3231
1 minus 1/32 equals 31/32.
S5=48⋅3231⋅2
Dividing by 1/2 is the same as multiplying by 2.
S5=3248⋅62=322976=93✓
Multiply across and simplify. The sum of five terms of this sequence is exactly 93.
Interactive graph — scroll to zoom, drag to pan
The red curve shows the individual terms of the sequence — each one is half the previous. The blue line marks the sum S5=93. Notice how the terms shrink quickly; the fifth term contributes very little compared to the first.
Practice Questions
S6 for a1=3,r=2
∑k=145⋅3k−1
∑k=1664(−21)k−1
Regents Corner
On Part II and Part III of the Algebra II Regents, geometric series problems often ask you to identify a1, r, and n from sigma notation before computing the sum. Show that identification work explicitly — a grader reading your paper needs to see where your numbers came from. Writing the formula with values substituted before simplifying is worth method credit even if arithmetic errors appear later.
When the sigma expression is written as something like 48(1/2)^k instead of 48(1/2)^(k-1), the first term is not 48 — it is 48 times 1/2, which is 24. Students who assume the lower bound k=1 always gives a_1 equal to the coefficient in front of the ratio will get the wrong first term and a wrong answer from the start. Always evaluate the expression at the lower index to find the true first term.