Chapter 8: Infinite Sequences and Series
Section 8.2: Series
|
Example 8.2.8
|
|
Obtain the sum of the series and show that the sum is the limit of the sequence of partial sums.
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
The given series is a telescoping series. (See Table 8.2.2.) The th partial sum is then
Consequently, the sum of the series is given by .
|
|
Maple Solution
|
|
Obtain the sum of the series
|
•
|
Control-drag the series.
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
Obtain an expression for the th partial sum
|
•
|
Control-drag the series and change ∞ to .
|
•
|
Context Panel: Evaluate and Display Inline
|
•
|
Context Panel: Assign to a Name≻S[k]
|
|
=
|
Display the first few partial sums
|
•
|
Type and press the Enter key.
|
•
|
Context Panel: Sequence≻
In the resulting dialog box, set to
|
•
|
Context Panel: Conversions≻To List
|
•
|
Context Panel: Approximate≻5 (digits)
|
|
|
Obtain the limit of the partial sums
|
•
|
Calculus palette: Limit template≻Apply to
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
|
|
Figure 8.2.8(a) shows the convergence of the first 15 members of the sequence of partial sums to .
>
|
use plots in
module()
local Sk,X,Y,p1,p2,p3,k;
unassign('S');
Sk:=k->sum(sin(1/n)-sin(1/(n+1)),n=1..k);
X:=[seq(k,k=1..15)];
Y:=[seq(Sk(k),k=1..15)];
p1:=pointplot(X,Y,symbol=solidcircle,symbolsize=15,color=red,labels=[k,typeset(S[k])],view=[0..15,0..1]);
p2:=plot(sin(1),k=0..15,color=black);
p3:=display(p1,p2);
print(p3)
end module:
end use:
|
|
Figure 8.2.8(a) Convergence of to
|
|
|
|
|
|
<< Previous Example Section 8.2
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
|