29.06.2016 Views

Thomas Calculus 13th [Solutions]

  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Section 10.1 Sequences 711<br />

133. a2k<br />

L given an 0 there corresponds an N 1 such that 2 k N1 a2k<br />

L . Similarly,<br />

2 1 .<br />

a2k<br />

1 L k N2 a2k<br />

1 L Let 1 2<br />

is even or odd, and hence a L.<br />

n<br />

N max{ N , N }. Then n N an<br />

L whether n<br />

134. Assume a n 0. This implies that given an 0 there corresponds an N such that n N a n 0<br />

an an an 0 a n 0. On the other hand, assume a n 0. This implies that given<br />

an 0 there corresponds an N such that for n N,<br />

a 0 a a a 0<br />

a n<br />

0.<br />

n n n n<br />

135. (a)<br />

2<br />

2 2<br />

2<br />

2<br />

a<br />

xn xn a<br />

xn<br />

n<br />

n<br />

x n<br />

2xn 2xn 2xn<br />

2<br />

2<br />

x a x a<br />

f ( x) x a f ( x) 2x xn 1 xn xn<br />

1<br />

(b) x1 2, x2 1.75, x3 1.732142857, x4 1.73205081, x 5 1.732050808; we are finding the positive<br />

2<br />

2<br />

number where x 3 0; that is, where x 3, x 0, or where x 3.<br />

136. x1 1, x2 1 cos(1) 1.540302306, x3 1.540302306 cos(1 cos(1)) 1.570791601,<br />

x 4 1.570791601 cos(1.570791601) 1.570796327 to 9 decimal places. After a few steps, the arc<br />

2<br />

x n 1 and line segment cos x n 1 are nearly the same as the quarter circle.<br />

137-148. Example CAS Commands:<br />

Mathematica: (sequence functions may vary):<br />

Clear[a, n]<br />

_ a[n ]:<br />

n<br />

1/ n<br />

first25 Table[N[a[n]],{n, 1, 25}]<br />

Limit[a[n], n 8]<br />

The last command (Limit) will not always work in Mathematica. You could also explore the limit by enlarging<br />

your table to more than the first 25 values.<br />

If you know the limit (1 in the above example), to determine how far to go to have all further terms within 0.01<br />

of the limit, do the following.<br />

Clear[minN, lim]<br />

lim 1<br />

Do[{diff Abs[a[n] lim], If[diff .01, {minN n, Abort[]}]}, {n, 2, 1000}]<br />

minN<br />

For sequences that are given recursively, the following code is suggested. The portion of the command<br />

a[n _]: a[n] stores the elements of the sequence and helps to streamline computation.<br />

Clear[a, n]<br />

a[1] 1;<br />

a[n _]: a[n] a[n 1] (1/5)<br />

n 1<br />

first25 Table[N[a[n]],{n, 1, 25}]<br />

Copyright<br />

2014 Pearson Education, Inc.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!