# Nakafa Framework: LLM
URL: https://nakafa.com/en/subject/high-school/10/mathematics/sequence-series/infinite-geometric-series
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/10/mathematics/sequence-series/infinite-geometric-series/en.mdx
Output docs content for large language models.
---
export const metadata = {
  title: "Infinite Geometric Series",
  description: "Discover infinite geometric series with bouncing ball examples. Learn convergence, divergence, and calculate infinite sums using practical formulas.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "04/08/2025",
  subject: "Sequence and Series",
};
## Bouncing Ball
Imagine throwing a tennis ball from a height of 1 meter. The ball will bounce, but each bounce height is only  of the previous bounce height.
The bounce heights form a **geometric sequence**:
  
  
With the first term () being 1 and the ratio () being .
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 () is less than 1.
A series like this is called **convergent**, meaning its sum approaches a specific
finite value (not infinity). In the ball example, 
, and since , the series is
convergent. The ball will stop, and its total distance can be calculated.
If  (i.e.,  or ), the bounce height won't decrease or might even increase. The series is called **divergent**, and its sum is infinite ().
## 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  terms of a geometric series:
For an infinite series, we look for the value of  as  becomes
very large (approaches infinity). If the series is convergent (
), then the value of  will approach 0 as  approaches
infinity. Example: , 
, . The larger  gets,
the closer  gets to 0.
So, for  and , we have . The formula becomes:
Thus, the formula for the sum of a convergent infinite geometric series is:
Where: *  = Sum of the infinite series *  =
First term *  = Ratio ()
## Calculating the Total Distance
We can calculate the total distance traveled by the ball using the  formula. There are two parts to the path:
1.  **Downward Path:** The ball falls from height , then falls again after the first bounce (), falls again after the second bounce (), and so on.
    - Downward series: 
    - First term () = 
    - Ratio () = 
    - Sum of downward path: 
2.  **Upward Path:** The ball moves up after the first bounce (), up again after the second bounce (), and so on.
    - Upward series: 
    - First term () = 
    - Ratio () = 
    - Sum of upward path: 
**Total Distance** = Sum of Downward Path + Sum of Upward Path
  
  
For the tennis ball example with  meter and :
So, the total distance traveled by the ball until it stops is  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.
  
  
The result is the same!