9. Sequences and Introduction to Series

Geometric Series

Geometric Series

students, imagine stacking $1$, then $\frac{1}{2}$, then $\frac{1}{4}$, then $\frac{1}{8}$ of a candy bar 🍫. Each piece is smaller by the same factor. That repeating pattern is the heart of a geometric sequence and the sums built from it are called geometric series. In Calculus 2, geometric series matter because they are one of the first infinite series you can analyze completely and exactly.

What a Geometric Series Is

A sequence is an ordered list of numbers. A series is the sum of the terms of a sequence. A geometric sequence has a constant ratio between consecutive terms. If the first term is $a$ and the common ratio is $r$, then the terms are

$$a,\; ar,\; ar^2,\; ar^3,\; \dots$$

The corresponding geometric series is the sum

$$a + ar + ar^2 + ar^3 + \dots$$

The key idea is that each term is found by multiplying the previous term by the same number $r$. This fixed multiplier is what makes the pattern β€œgeometric.”

Example

If $a=3$ and $r=2$, the sequence is

$$3,\; 6,\; 12,\; 24,\; 48,\; \dots$$

The series is

$$3 + 6 + 12 + 24 + 48 + \dots$$

Here, each term doubles. That means the common ratio is $r=2$.

If $a=10$ and $r=\frac{1}{3}$, then the sequence is

$$10,\; \frac{10}{3},\; \frac{10}{9},\; \frac{10}{27},\; \dots$$

This kind of pattern shows up in science, finance, and computing πŸ’‘, such as repeated percentage decay, shrinking populations, and recursive algorithms.

The Sum of the First $n$ Terms

A central result in Calculus 2 is the formula for the partial sum of a geometric series. The partial sum $S_n$ means the sum of the first $n$ terms.

If the series begins with $a$ and has ratio $r$, then for $r \neq 1$,

$$S_n = a + ar + ar^2 + \dots + ar^{n-1} = a\frac{1-r^n}{1-r}$$

This formula is extremely useful because it lets you compute a long sum quickly without adding every term one by one.

Why the Formula Works

A classic trick is to write the sum as

$$S_n = a + ar + ar^2 + \dots + ar^{n-1}$$

and then multiply by $r$:

$$rS_n = ar + ar^2 + ar^3 + \dots + ar^n$$

Now subtract the second equation from the first:

$$S_n - rS_n = a - ar^n$$

Factor both sides:

$$S_n(1-r) = a(1-r^n)$$

Assuming $r \neq 1$, divide by $1-r$:

$$S_n = a\frac{1-r^n}{1-r}$$

This derivation is a great example of algebra working together with calculus ideas later in the course.

Example

Find the sum of the first $5$ terms of

$$2 + 4 + 8 + 16 + 32$$

Here, $a=2$ and $r=2$. Using the formula,

$$S_5 = 2\frac{1-2^5}{1-2} = 2\frac{1-32}{-1} = 62$$

Check by direct addition:

$$2 + 4 + 8 + 16 + 32 = 62$$

The formula matches exactly.

Infinite Geometric Series and Convergence

A geometric series may have infinitely many terms. The big question is whether the sum approaches a finite value. This is where limits enter the topic.

For the infinite geometric series

$$a + ar + ar^2 + ar^3 + \dots$$

we examine the limit of the partial sums:

$$\lim_{n\to\infty} S_n = \lim_{n\to\infty} a\frac{1-r^n}{1-r}$$

This limit exists only when the terms $r^n$ go to $0$, which happens when

$$|r| < 1$$

If $|r| < 1$, then

$$\lim_{n\to\infty} r^n = 0$$

so the infinite geometric series converges to

$$\sum_{n=0}^{\infty} ar^n = \frac{a}{1-r}$$

when $|r| < 1$.

If $|r| \ge 1$, the series does not converge.

Important Cases

  • If $r=\frac{1}{2}$, the terms shrink toward $0$, so the series may converge.
  • If $r=1$, the terms stay constant, so the sum grows without bound unless $a=0$.
  • If $r=-\frac{1}{2}$, the terms alternate signs but still shrink in size, so the series converges.
  • If $r=2$, the terms get larger, so the series diverges.

Example

Consider

$$5 + \frac{5}{2} + \frac{5}{4} + \frac{5}{8} + \dots$$

Here, $a=5$ and $r=\frac{1}{2}$. Since $\left|\frac{1}{2}\right|<1$, the sum is

$$\sum_{n=0}^{\infty} 5\left(\frac{1}{2}\right)^n = \frac{5}{1-\frac{1}{2}} = 10$$

That means an infinite number of smaller and smaller pieces can add up to a finite total. This idea is one of the most surprising parts of Calculus 2 🎯.

Geometric Series in Real Life

Geometric series are not just abstract math. They model repeated multiplication in many settings.

Finance

Suppose a student invests money and earns $5\%$ interest each year. If the interest is repeatedly added and reinvested, the growth can be modeled by multiplication by $1.05$. A related geometric pattern appears whenever the same percentage change happens repeatedly.

Motion and Measurement

If an object loses half its speed each second due to friction, the remaining speed after each second forms a geometric sequence with ratio $\frac{1}{2}$.

Technology

In computer graphics and signal processing, repeated scaling or echo effects can create geometric patterns. In some algorithms, repeated recursion leads to sums that are geometric or close to geometric.

Everyday Example

Imagine a video game reward system where students earns $100$ points on the first level and each new level gives half as many points as the previous one. The total points after many levels are modeled by

$$100 + 50 + 25 + 12.5 + \dots$$

This is a geometric series with $a=100$ and $r=\frac{1}{2}$, so the total possible score approaches

$$\frac{100}{1-\frac{1}{2}} = 200$$

as the number of levels becomes very large.

How Geometric Series Fit into Sequences and Series

Geometric series are one of the first important examples in the broader study of sequences and series.

In the sequences part of the topic, you study whether a list of numbers approaches a limit. For a geometric sequence $ar^n$, the limit depends on $r$:

  • If $|r|<1$, then $ar^n \to 0$.
  • If $r=1$, then the sequence stays constant.
  • If $|r|>1$, the terms usually grow without bound in magnitude.

In the series part, you study what happens when those terms are added. The fact that the terms go to $0$ is necessary for convergence of a series, but not always enough in general. For geometric series, though, the condition is complete and exact:

$$\sum_{n=0}^{\infty} ar^n$$

converges if and only if

$$|r|<1$$

That makes geometric series a model case for later series tests in Calculus 2. It helps build intuition for more advanced ideas like comparison, ratio behavior, and infinite sums.

Common Mistakes and How to Avoid Them

A frequent error is confusing a sequence with a series.

  • The sequence is the list of terms: $a, ar, ar^2, \dots$
  • The series is the sum: $a + ar + ar^2 + \dots$

Another common mistake is using the infinite sum formula when $|r|\ge 1$. The formula

$$\frac{a}{1-r}$$

only works for an infinite geometric series when $|r|<1$.

Also, remember that the first term depends on how the series is written. If the series starts at $n=0$, then the first term is $a$. If it starts at $n=1$, you may need to rewrite the terms carefully before applying a formula.

Example of Careful Indexing

Suppose the series is

$$\sum_{n=1}^{\infty} 3\left(\frac{1}{4}\right)^{n-1}$$

When $n=1$, the term is $3\left(\frac{1}{4}\right)^0=3$, so $a=3$ and $r=\frac{1}{4}$. The sum is

$$\frac{3}{1-\frac{1}{4}} = 4$$

Correctly identifying the first term and ratio is essential.

Conclusion

Geometric series are a major building block in Calculus 2 because they connect algebra, sequences, limits, and infinite sums. students, the main idea is simple but powerful: each term is found by multiplying by the same ratio $r$. From that pattern comes the partial sum formula

$$S_n = a\frac{1-r^n}{1-r}$$

and, when $|r|<1$,

$$\sum_{n=0}^{\infty} ar^n = \frac{a}{1-r}$$

Geometric series show how an infinite sum can still have a finite value, and they prepare you for deeper studies of convergence in Calculus 2. They also appear in real-world models of growth, decay, and repeated scaling πŸ“˜.

Study Notes

  • A geometric sequence has a constant ratio $r$ between consecutive terms.
  • A geometric series is the sum $a + ar + ar^2 + \dots$.
  • The first term is often written as $a$, and each later term is formed by multiplying by $r$.
  • The sum of the first $n$ terms is

$$S_n = a\frac{1-r^n}{1-r}$$

for $r \neq 1$.

  • An infinite geometric series converges only when $|r|<1$.
  • When $|r|<1$, the infinite sum is

$$\sum_{n=0}^{\infty} ar^n = \frac{a}{1-r}$$

  • If $|r|\ge 1$, the infinite geometric series diverges.
  • Geometric series are important in Calculus 2 because they connect sequences, limits, and convergence tests.
  • Always check the starting index and identify $a$ and $r$ carefully before using a formula.
  • Real-world examples include repeated percent change, shrinking quantities, and recursive processes.

Practice Quiz

5 questions to test your understanding