Source codeVideos
Sequence and Series

Infinite Geometric Series

Nabil Akbarazzima Fatih

Mathematics

Bouncing Ball

Imagine throwing a tennis ball from a height of 1 meter. The ball will bounce, but each bounce height is only 14\frac{1}{4} of the previous bounce height.

The bounce heights form a geometric sequence:

1,1×14,(1×14)×14,1, \quad 1 \times \frac{1}{4}, \quad (1 \times \frac{1}{4}) \times \frac{1}{4}, \quad \dots
1,14,116,164,1, \quad \frac{1}{4}, \quad \frac{1}{16}, \quad \frac{1}{64}, \quad \dots

With the first term (aa) being 1 and the ratio (rr) being 14\frac{1}{4}.

Now, think about this: what is the total distance traveled by the ball from the moment it's thrown until it finally stops?

The ball moves down, then up, down again, up again, and so on, until it stops. The total distance is the sum of all downward paths and all upward paths. Since the ball keeps bouncing (although lower and lower), we are summing an infinite number of distances. This is called an Infinite Geometric Series.

When Does the Series Stop?

Logically, the ball will eventually stop bouncing, right? This happens because the bounce height gets smaller and smaller, approaching zero. In mathematics, this occurs if the absolute value of the ratio (rr) is less than 1.

r<1or1<r<1|r| < 1 \quad \text{or} \quad -1 < r < 1

A series like this is called convergent, meaning its sum approaches a specific finite value (not infinity). In the ball example, r=14r = \frac{1}{4} , and since 1<14<1-1 < \frac{1}{4} < 1, the series is convergent. The ball will stop, and its total distance can be calculated.

If r1|r| \ge 1 (i.e., r1r \ge 1 or r1r \le -1), the bounce height won't decrease or might even increase. The series is called divergent, and its sum is infinite (±\pm \infty).

Calculating the Sum of an Infinite Series

How do we calculate the sum of a convergent infinite series? We start with the formula for the sum of the first nn terms of a geometric series:

Sn=a(1rn)1rS_n = \frac{a(1 - r^n)}{1 - r}

For an infinite series, we look for the value of SnS_n as nn becomes very large (approaches infinity). If the series is convergent (1<r<1-1 < r < 1 ), then the value of rnr^n will approach 0 as nn approaches infinity. Example: (14)2=116(\frac{1}{4})^2 = \frac{1}{16}, (14)3=164(\frac{1}{4})^3 = \frac{1}{64} , (14)100.00000095(\frac{1}{4})^{10} \approx 0.00000095. The larger nn gets, the closer (14)n(\frac{1}{4})^n gets to 0.

So, for nn \to \infty and 1<r<1-1 < r < 1, we have rn0r^n \to 0. The formula becomes:

S=limnSn=limna(1rn)1r=a(10)1rS_\infty = \lim_{n \to \infty} S_n = \lim_{n \to \infty} \frac{a(1 - r^n)}{1 - r} = \frac{a(1 - 0)}{1 - r}

Thus, the formula for the sum of a convergent infinite geometric series is:

S=a1rS_\infty = \frac{a}{1 - r}

Where: * SS_\infty = Sum of the infinite series * aa = First term * rr = Ratio (1<r<1-1 < r < 1)

Calculating the Total Distance

We can calculate the total distance traveled by the ball using the SS_\infty formula. There are two parts to the path:

  1. Downward Path: The ball falls from height aa, then falls again after the first bounce (arar), falls again after the second bounce (ar2ar^2), and so on.

    • Downward series: a+ar+ar2+ar3+a + ar + ar^2 + ar^3 + \dots
    • First term (ada_d) = aa
    • Ratio (rdr_d) = rr
    • Sum of downward path: Sdown=ad1rd=a1rS_{\text{down}} = \frac{a_d}{1 - r_d} = \frac{a}{1 - r}
  2. Upward Path: The ball moves up after the first bounce (arar), up again after the second bounce (ar2ar^2), and so on.

    • Upward series: ar+ar2+ar3+ar + ar^2 + ar^3 + \dots
    • First term (aua_u) = arar
    • Ratio (rur_u) = rr
    • Sum of upward path: Sup=au1ru=ar1rS_{\text{up}} = \frac{a_u}{1 - r_u} = \frac{ar}{1 - r}

Total Distance = Sum of Downward Path + Sum of Upward Path

Total=Sdown+Sup=a1r+ar1r\text{Total} = S_{\text{down}} + S_{\text{up}} = \frac{a}{1 - r} + \frac{ar}{1 - r}
Total=a(1+r)1r\text{Total} = \frac{a(1 + r)}{1 - r}

For the tennis ball example with a=1a = 1 meter and r=14r = \frac{1}{4}:

Total=1(1+14)114=1(54)34=5/43/4=54×43=53\text{Total} = \frac{1(1 + \frac{1}{4})}{1 - \frac{1}{4}} = \frac{1(\frac{5}{4})}{\frac{3}{4}} = \frac{5/4}{3/4} = \frac{5}{4} \times \frac{4}{3} = \frac{5}{3}

So, the total distance traveled by the ball until it stops is 53\frac{5}{3} meters.

Alternative Method (Following the Hint): The total distance can also be calculated as: First downward path + 2 times the sum of all upward paths.

Total=a+2×Sup=a+2×(ar1r)\text{Total} = a + 2 \times S_{\text{up}} = a + 2 \times \left( \frac{ar}{1 - r} \right)
Total=1+2×(1×14114)=1+2×(1/43/4)=1+2×(13)=1+23=53\text{Total} = 1 + 2 \times \left( \frac{1 \times \frac{1}{4}}{1 - \frac{1}{4}} \right) = 1 + 2 \times \left( \frac{1/4}{3/4} \right) = 1 + 2 \times \left( \frac{1}{3} \right) = 1 + \frac{2}{3} = \frac{5}{3}

The result is the same!