Chapter 8: Infinite Sequences and Series
Section 8.3: Convergence Tests
|
Example 8.3.14
|
|
Determine if the series diverges, converges absolutely, or converges conditionally.
If it converges conditionally, determine if it also converge absolutely.
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
The series is alternating, suggesting the Leibniz test. For this, must eventually become a monotone decreasing sequence with limit zero. Consequently, the following calculations are executed.
= and for
The conditions of the Leibniz test apply, and by that test, the series converges conditionally.
To test for absolute convergence, apply the Integral test: = .
By this test, the series of absolute values does not converge, so the series is not absolutely convergent.
|
|
Maple Solution
|
|
•
|
Figure 8.3.14(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 as a test for absolute convergence, provided the integration starts from, say, .
|
Calculus palette: Definite integral template
Context Panel: Evaluate and Display Inline
=
|
>
|
module()
local F,p,N;
F:=1/ln(x);
N:=10;
p:=plot([F,diff(F,x)],x=1..N,color=[red,green],view=[0..N,-5..5],tickmarks=[N,4],labels=[x,y]);
print(p);
end module:
|
|
Figure 8.3.14(a) Graph of (red) and (green)
|
|
|
|
|
|
•
|
Since the integral diverges, the series does not converge absolutely.
|
The following two calculations support the use of the Integral test.
•
|
Calculus palette: Limit operator
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
•
|
Calculus palette: Differentiation operator
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
|
|
The derivative is negative for . (This is consistent with Figure 8.3.14(a).) Since the criteria of the test are satisfied, it follows that the series does not converge absolutely. The Leibniz test applies, and by it, this alternating series is seen to converge conditionally.
|
|
|
<< 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
|