Chapter 8: Infinite Sequences and Series
Section 8.4: Power Series
|
Example 8.4.21
|
|
Determine the radius of convergence and the interval of convergence for the power series .
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 , the radius of convergence is given by
|
=
•
|
At the right endpoint , the given power series becomes , which diverges by the nth-term test because .
|
•
|
At the left endpoint , the given power series becomes the alternating series , which also diverges by the nth-term test because .
|
•
|
Hence, the interval of convergence is .
|
|
|
Maple Solution
|
|
Define the general coefficient as a function of
|
•
|
Write
Context Panel: Assign Function
|
|
|
Obtain the radius of convergence
|
•
|
Calculus palette: Limit template
Context Panel: Assign Name
|
|
|
Display , the radius of convergence
|
•
|
Write
Context Panel: Evaluate and Display Inline
|
|
=
|
Test for convergence at
|
•
|
Calculus palette: Limit template
Context Panel: Evaluate and Display Inline
|
|
=
|
|
|
•
|
At the right endpoint , the given power series becomes , which diverges by the nth-term test because .
|
•
|
At the left endpoint , the given power series becomes the alternating series , which also diverges by the nth-term test because .
|
•
|
Hence, the interval of convergence is .
|
•
|
Maple can actually sum this series - Figure 8.4.21(a) is a graph of this function on the interval of convergence.
|
•
|
Enter the series.
Context Panel: Simplify≻Assuming Real Range≻
|
|
>
|
module()
local S,p;
S:=sum((n!)^2/(2*n)!*x^n,n=2..infinity) assuming abs(x)<4;
p:=plot(S,x=-4..4,0..20,labels=[x,y]);
print(p);
end module:
|
|
Figure 8.4.21(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
|