In mathematics, a geometric series is a series with a constant ratio that is common between successive terms.
Any series which can be written in the following forms is a geometric series. The series is generated by multiplying each term by a common ratio.
in which $a$ and $r$ are fixed real numbers, and $a \ne 0$
__Note:__ These two series are identical, except for a _shift in the index variable_ from $1$ to $0$
(not unlike the difference between a 0-indexed array and a 1-indexed array in computer science):
The common ratio is found by dividing any two consecutive terms: $\frac{a_n+1}{a_n}$
A series is convergent when the following conditions apply:
If $|r| < 1$ then $r^n \to 0$ as $n \to \infty$ and the sequence of partial sums $s_n \to \frac{a}{1-r} \\$.
$$\sum_{n=1}^{\infty} a\cdot r^{n-1} = \frac{a}{1 - r} \quad \text{ IF } |r| < 1$$A series is divergent when these conditions apply:
When $|r| \ge 1$ then $|r^n| \to \infty$, and the sequence of partial sums has no finite limit.
In [ ]: