Chapter 8: Infinite Sequences and Series
Section 8.3: Convergence Tests
|
Example 8.3.2
|
|
Determine if the series diverges, converges absolutely, or converges conditionally.
If it converges conditionally, determine if it also converge absolutely.
|
|
|
|
Solution
|
|
•
|
Divergence of this series can be established by the Integral test.
|
•
|
Figure 8.3.2(a) contains a graph of the function (in red) and of its derivative (in green).
|
•
|
On the basis of this graph, it may be conjectured that is monotone decreasing and bounded below by zero, provided . (The derivative appears to be negative for .)
|
•
|
Consequently, the Integral test may be tried, provided the integration starts from, say, . This is a nontrivial integration, one Maple evaluates in terms of the special function .
|
Calculus palette: Definite integral template
Context Panel: Evaluate and Display Inline
=
|
>
|
module()
local F,p;
F:=1/x/ln(x);
p:=plot([F,diff(F,x)],x=1..5,color=[red,green],view=[0..5,-10..10],tickmarks=[5,default]);
print(p);
end module:
|
|
Figure 8.3.2(a) Graph of (red) and (green)
|
|
|
|
|
|
•
|
Since the integral is unbounded, the series diverges.
|
|
|
<< Previous Example Section 8.3
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
|