Chapter 8: Infinite Sequences and Series
Section 8.4: Power Series
Example 8.4.10
Determine the radius of convergence and the interval of convergence for the power series ∑n=1∞5n xnn+32.
Even though (7) in Table 8.4.1 claims that absolute convergence at one end of the interval of convergence implies absolute convergence at the other, if the convergence at an endpoint is absolute, verify that it also absolute at the other.
Solution
Mathematical Solution
Since the given power series contains the powers xn, the radius of convergence is given by
R=limn→∞an/an+1 = limn→∞5n/n+325n+1/n+1+32=limn→∞15n+42n+32=1/5
At the right endpoint x=R=1/5, the given power series becomes Σ an Rn=Σ 1/n+32, which converges absolutely by part (1) of the Limit-Comparison test if the comparison series is taken as the convergent p-series Σ 1/n2.
The relevant calculation that must be made is c=limn→∞an Rn1/n2=limn→∞nn+32=1. Since c is a (finite) real number, both series converge. Hence, the power series converges absolutely at x=R.
At the left endpoint x=−R=−1/5, the given power series becomes the alternating series Σ −1nan Rn, which has just been shown to converge absolutely.
Hence, the interval of convergence is −R,R=−1/5,1/5.
Maple Solution
Define the general coefficient an as a function of n
Write an=… Context Panel: Assign Function
an=5nn+32→assign as functiona
Obtain the radius of convergence
Calculus palette: Limit template Context Panel: Assign Name
R=limn→∞anan+1→assign
Display R, the radius of convergence
Write R Context Panel: Evaluate and Display Inline
R = 15
Test for convergence at x=R=1/5
Write An=… Context Panel: Assign Function
An=an⋅Rn→assign as functionA
Calculus palette: Limit template Context Panel: Evaluate and Display Inline
limn→∞An1/n2 = 1
Test for convergence at x=R=−1/5
Write an⋅−Rn Context Panel: Evaluate and Display Inline
Context Panel: Simplify≻Assuming Integer
an⋅−Rn = 5n⁢−15nn+32→assuming integer−1nn+32
The comparison series Σ 1/n2 is a convergent p-series, so by part (1) of the Limit-Comparison test, the given series converges absolutely at x=R=1/5. The given series also converges absolutely at x=−R=−1/5 because an−Rn = An, and the series with those terms has already been shown to converge absolutely.
Using the special function polylog, and assuming x∈−1/5,1/5, Maple sums this series to
∑n=1∞5n xnn+32 = 14500⁢−500⁢x3−225⁢x2+36⁢polylog⁡2,5⁢x−180⁢xx3
Figure 8.4.10(a) is a graph of this function on the interval of convergence.
module() local S,p; S:=(1/4500)*(-500*x^3-225*x^2+36*polylog(2, 5*x)-180*x)/x^3; p:=plot(S,x=-1/5..1/5,labels=[x,y],tickmarks=[3,3]); print(p); end module:
Figure 8.4.10(a) Graph of the sum of the series
<< Previous Example Section 8.4 Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
Download Help Document