Section 12.1 Geometric Series
S=∞∑k=0xk=11−x
provided x is small is of utmost importance as is its extension know as the negative binomial series (n∈N).
NB=∞∑k=0(−1)k(−n+k−1k)xkb−n−k=1(x+b)n
In this section, we review this series, develop its properties, and explore some of its extensions.Subsection 12.1.1 Geometric Series
Theorem 12.1.1.
S=∑∞k=0xk=11−xProof.
Consider the partial sum
\begin{gather*}
S_n = \sum_{k=0}^{n} {x^k} = 1 + x + x^2 + ... + x^n \\
(1-x)S_n = S_n - x S_n = 1 + x + x^2 + ... + x^n - (x + x^2 + ... + x^n + x^{n+1}) = 1 - x^{n+1} \\
\Rightarrow S_n = \frac{1-x^{n+1}}{1-x}
\end{gather*}
and so as \(n \rightarrow \infty \text{,}\)
\begin{gather*}
S_n \rightarrow S = \frac{1}{1-x}
\end{gather*}
xxxxxxxxxx
var('x,n,k')
f = 1/(1-x)
def _(n = slider(2,20,1,2)):
Sn = sum(x^k,k,0,n)
pretty_print(html('$S_n(x) = %s$'%str(latex(Sn))))
G = plot(f,x,-1,0.9,color='black')
G += plot(Sn,x,-1,0.9,color='blue')
G += plot(abs(f-Sn),x,-1,0.9,color='red')
T = "Partial Sums (blue) vs Infinite Series (black) and Error (red)"
G.show(title=T,figsize=(5,4))
Subsection 12.1.2 Alternate Forms for the Geometric Series
Theorem 12.1.2. Generalized Geometric Series.
For k∈N,∑∞k=Mxk=xM1−xProof.
\begin{align*}
\sum_{k=M}^{\infty} {x^k} & = x^M \sum_{k=0}^{\infty} {x^k}\\
& = x^M \frac{1}{1-x}\\
& = \frac{x^M}{1-x}
\end{align*}
Example 12.1.3. Integrating and Differentiating to get new Power Series.
The geometric power series is a nice function which is relatively easily differentiated and integrated. In doing so, one can obtain new power series which might also be very useful in their own right. Here we develop a few which are of special interest.
Let f(x)=∑∞k=0xk=11−x. Then,
f′(x)=∞∑k=1kxk−1=1(1−x)2f″(x)=∞∑k=2k(k−1)xk−1=2(1−x)3f(n)(x)=∞∑k=nk(k−1)...(k−n+1)xk−n=n!(1−x)n+1∫f(x)dx=∞∑k=0xk+1k+1=−ln(1−x)
Example 12.1.4. Playing with the base.
∞∑k=0akxk=∞∑k=0(ax)k=11−ax,|x|<1a
or perhaps
∞∑k=0(x−b)k=11−(x−b),|x−b|<1
Example 12.1.5. Application: Converting repeating decimals to fractional form.
Consider this example:
2.48484848...=2+0.48+0.0048+0.000048+...=2+0.48(1+0.01+0.0001+...)=2+0.48∞∑k=0(0.01)k
Therefore, applying the Geometric Series
2.48484848...=2+0.4811−0.01=2+0.4810099=2+4899
Example 12.1.6. Playing around with repeating decimals.
Certainly most students would agree that 0.333333...=13. So, what about 0.999999...? Simply follow the pattern above
0.999999...=0.9+0.09+0.009+0.0009+...=0.9(1+0.1+0.12+0.13+...=0.911−0.1=0.910.9=1