5
INTEGRALS
5.1
Areas and Distances
1. (a) Sincei is increasing, we can obtain a lower estimate by using
left endpoints. We are instructed to use ve rectangles, soq = 5.
O5= 5 S l=1i({l1) { [{ = ed q = 10 05 = 2]
= i({0) · 2 + i({1) · 2 + i({2) · 2 + i({3) · 2 + i({4) · 2
= 2 [i(0) + i(2) + i(4) + i(6) + i(8)] 2(1 + 3 + 4=3 + 5=4 + 6=3) = 2(20) = 40
Sincei is increasing, we can obtain an upper estimate by using
right endpoints.
U5= 5
S
l=1i({l) {
= 2 [i({1) + i({2) + i({3) + i({4) + i({5)]
= 2 [i(2) + i(4) + i(6) + i(8) + i(10)] 2(3 + 4=3 + 5=4 + 6=3 + 7) = 2(26) = 52
ComparingU5toO5, we see that we have added the area of the rightmost upper rectangle,i(10) · 2, to the sum and subtracted the area of the leftmost lower rectangle,i(0) · 2, from the sum.
(b)O10= 10 S l=1i({l1) { [{ = 10 0 10 = 1]
= 1 [i({0) + i({1) + · · · + i({9)]
= i(0) + i(1) + · · · + i (9) 1 + 2=1 + 3 + 3=7 + 4=3 + 4=9 + 5=4 + 5=8 + 6=3 + 6=7 = 43=2 U10= 10 S
l=1i({l) { = i(1) + i(2) + · · · + i(10)
= O10+ 1 · i(10) 1 · i(0)
add rightmost upper rectangle, subtract leftmost lower rectangle
= 43=2 + 7 1 = 49=2
233
TX.10
3. (a)U4 =S4 l=1i({l) { { = @2 04 = 8 = S4 l=1i({l) { = [i({1) + i({2) + i({3) + i({4)] {
=cos
8 + cos28 + cos38 + cos48
8
(0=9239 + 0=7071 + 0=3827 + 0)
8 0=7908
Sincei is decreasing on [0> @2], an underestimate is obtained by using the right endpoint approximation, U4. (b)O4= 4 S l=1i({l1) { = S4 l=1i ({l1) { = [i({0) + i({1) + i({2) + i({3)] {
=cos 0 + cos 8 + cos28 + cos38 8 (1 + 0=9239 + 0=7071 + 0=3827) 8 1=1835
O4is an overestimate. Alternatively, we could just add the area of the leftmost upper rectangle and subtract the area of the rightmost lower rectangle; that is,O4 = U4+ i(0) ·8 i2·8.
5. (a)i({) = 1 + {2and{ = 2 (1)
3 = 1
U3= 1 · i(0) + 1 · i(1) + 1 · i(2) = 1 · 1 + 1 · 2 + 1 · 5 = 8.
{ = 2 (1)6 = 0=5
U6 = 0=5[i(0=5) + i(0) + i(0=5) + i(1) + i(1=5) + i(2)]
= 0=5(1=25 + 1 + 1=25 + 2 + 3=25 + 5) = 0=5(13=75) = 6=875
(b)O3 = 1 · i(1) + 1 · i(0) + 1 · i(1) = 1 · 2 + 1 · 1 + 1 · 2 = 5
O6 = 0=5[i(1) + i(0=5) + i(0) + i(0=5) + i(1) + i(1=5)]
= 0=5(2 + 1=25 + 1 + 1=25 + 2 + 3=25) = 0=5(10=75) = 5=375
(c)P3 = 1 · i(0=5) + 1 · i(0=5) + 1 · i(1=5)
= 1 · 1=25 + 1 · 1=25 + 1 · 3=25 = 5=75 P6 = 0=5[i(0=75) + i(0=25) + i(0=25)
+ i(0=75) + i(1=25) + i(1=75)]
= 0=5(1=5625 + 1=0625 + 1=0625 + 1=5625 + 2=5625 + 4=0625) = 0=5(11=875) = 5=9375
SECTION 5.1 AREAS AND DISTANCES ¤ 235 7.Here is one possible algorithm (ordered sequence of operations) for calculating the sums:
1 Let SUM = 0, X_MIN = 0, X_MAX = 1, N = 10 (depending on which sum we are calculating), DELTA_X = (X_MAX - X_MIN)/N, and RIGHT_ENDPOINT = X_MIN + DELTA_X. 2 Repeat steps 2a, 2b in sequence until RIGHT_ENDPOINTA X_MAX.
2a Add (RIGHT_ENDPOINT)^4 to SUM. 2b Add DELTA_X to RIGHT_ENDPOINT.
At the end of this procedure, (DELTA_X)·(SUM) is equal to the answer we are looking for. We nd that U10= 110 10 S l=1 l 10 4 0=2533, U30= 130 30 S l=1 l 30 4 0=2170, U50= 150 50 S l=1 l 50 4 0=2101> and U100= 1 100 100S l=1 l 100 4
0=2050. It appears that the exact area is 0=2.
The following display shows the program SUMRIGHT and its output from a TI-83 Plus calculator. To generalize the program, we have input (rather than assign) values for Xmin, Xmax, and N. Also, the function,{4, is assigned toY1, enabling us to evaluate any right sum merely by changingY1and running the program.
9.In Maple, we have to perform a number of steps before getting a numerical answer. After loading the student package [command: with(student);] we use the command
left_sum:=leftsum(1/(xˆ2+1),x=0..1,10 [or 30, or 50]); which gives us the expression in summation notation. To get a numerical approximation to the sum, we use evalf(left_sum);. Mathematica does not have a special command for these sums, so we must type them in manually. For example, the rst left sum is given by
(1/10)*Sum[1/(((i-1)/10)ˆ2+1)],{i,1,10}], and we use the N command on the resulting output to get a numerical approximation.
In Derive, we use the LEFT_RIEMANN command to get the left sums, but must dene the right sums ourselves. (We can dene a new function using LEFT_RIEMANN withn ranging from 1 to q instead of from 0 to q 1.) (a) Withi({) = 1
{2+ 1,0 { 1, the left sums are of the form Oq= 1q q S l=1 1 l1 q 2+ 1. Specically,O10 0=8100,
O30 0=7937, and O50 0=7904. The right sums are of the form Uq= 1q q S l=1 1 l q 2+ 1. Specically,U10 0=7600, U30 0=7770, and U50 0=7804.
TX.10
(b) In Maple, we use the leftbox (with the same arguments as left_sum) and rightbox commands to generate the graphs.
left endpoints,q = 10 left endpoints,q = 30 left endpoints,q = 50
right endpoints,q = 10 right endpoints,q = 30 right endpoints,q = 50
(c) We know that since| = 1@({2+ 1) is a decreasing function on (0> 1), all of the left sums are larger than the actual area, and all of the right sums are smaller than the actual area. Since the left sum withq = 50 is about 0=7904 ? 0=791 and the right sum withq = 50 is about 0=7804 A 0=780, we conclude that 0=780 ? U50? exact area ? O50? 0=791, so the exact area is between0=780 and 0=791.
11. Sincey is an increasing function, O6will give us a lower estimate andU6will give us an upper estimate.
O6= (0 ft@s)(0=5 s) + (6=2)(0=5) + (10=8)(0=5) + (14=9)(0=5) + (18=1)(0=5) + (19=4)(0=5) = 0=5(69=4) = 34=7 ft
U6= 0=5(6=2 + 10=8 + 14=9 + 18=1 + 19=4 + 20=2) = 0=5(89=6) = 44=8 ft
13. Lower estimate for oil leakage:U5= (7=6 + 6=8 + 6=2 + 5=7 + 5=3)(2) = (31=6)(2) = 63=2 L.
Upper estimate for oil leakage:O5= (8=7 + 7=6 + 6=8 + 6=2 + 5=7)(2) = (35)(2) = 70 L.
15. For a decreasing function, using left endpoints gives us an overestimate and using right endpoints results in an underestimate. We will useP6to get an estimate.w = 1, so
P6= 1[y(0=5) + y(1=5) + y(2=5) + y(3=5) + y(4=5) + y(5=5)] 55 + 40 + 28 + 18 + 10 + 4 = 155 ft
For a very rough check on the above calculation, we can draw a line from(0> 70) to (6> 0) and calculate the area of the triangle:12(70)(6) = 210. This is clearly an overestimate, so our midpoint estimate of 155 is reasonable.
17. i({) =4{, 1 { 16. { = (16 1)@q = 15@q and {l= 1 + l { = 1 + 15l@q. D = lim qUq= limq q S l=1i({l) { = limq q S l=1 4 u 1 + 15lq · 15q.
19. i({) = { cos {, 0 { 2. { = (2 0)@q =2@q and {l= 0 + l { =2l@q. D = limqUq= limq q S l=1i({l) { = limq q S l=1 l 2qcos l 2q · 2q.
SECTION 5.2 THE DEFINITE INTEGRAL ¤ 237 21. lim q q S l=1
4qtan l4qcan be interpreted as the area of the region lying under the graph of| = tan { on the interval
0> 4
,
since for| = tan { on0>4with{ = @4 0
q = 4q,{l= 0 + l { = l4q, and{l = {l, the expression for the area is D = lim q q S l=1i ({ l) { = limq q S l=1tan l 4q
4q. Note that this answer is not unique, since the expression for the area is the same for the function| = tan({ n) on the intervaln> n +4, wheren is any integer.
23. (a)| = i({) = {5. { = 2 0 q = 2q and{l = 0 + l { = 2lq. D = limqUq= limq q S l=1i({l) { = limq q S l=1 2l q 5 · 2q= limqSq l=1 32l5 q5 · 2q = limq 64 q6 q S l=1l 5. (b) Sq l=1l 5 CAS= q2(q + 1)2 2q2+ 2q 1 12 (c) lim q 64 q6 · q2(q + 1)22q2+ 2q 1 12 = 6412qlim q2+ 2q + 12q2+ 2q 1 q2· q2 = 163 lim q 1 + 2q+ 1q2 2 + 2q 1q2 =16 3 · 1 · 2 = 323 25.| = i({) = cos {. { = e 0 q = eqand{l= 0 + l { = elq. D = limqUq= lim q q S l=1i({l) { = limq q S l=1cos el q · eq CAS = limq 5 9 9 7 e sin e 1 2q+ 1 2q sin e 2q e2q 6 : : 8CAS= sin e Ife =2, thenD = sin2 = 1.
5.2
The Definite Integral
1.i({) = 3 12{, 2 { 14. { = e d
q = 14 26 = 2. Since we are using left endpoints,{l = {l1.
O6= 6
S
l=1i({l1) {
= ({) [i({0) + i({1) + i({2) + i({3) + i({4) + i({5)]
= 2[i(2) + i(4) + i(6) + i(8) + i(10) + i(12)] = 2[2 + 1 + 0 + (1) + (2) + (3)] = 2(3) = 6
The Riemann sum represents the sum of the areas of the two rectangles above the{-axis minus the sum of the areas of the three rectangles below the{-axis; that is, the net area of the rectangles with respect to the {-axis.
3. i({) = h{ 2, 0 { 2. { = e d
q = 2 04 = 12. Since we are using midpoints,{l = {l=12({l1+ {l).
P4 = 4
S
l=1i({l) { = ({) [i({1) + i({2) + i({3) + i({4)]
=1 2 i1 4 + i3 4 + i5 4 + i7 4 =1 2 k (h1@4 2) + (h3@4 2) + (h5@4 2) + (h7@4 2)l 2=322986
The Riemann sum represents the sum of the areas of the three rectangles above the{-axis minus the area of the rectangle below the{-axis; that is, the net area of the rectangles with respect to the {-axis.
5. { = (e d)@q = (8 0)@4 = 8@4 = 2.
(a) Using the right endpoints to approximateU08i({) g{, we have
4
S
l=1i({l) { = 2[i(2) + i(4) + i(6) + i(8)] 2[1 + 2 + (2) + 1] = 4.
(b) Using the left endpoints to approximateU08i({) g{, we have
4
S
l=1i({l1) { = 2[i(0) + i(2) + i(4) + i(6)] 2[2 + 1 + 2 + (2)] = 6.
(c) Using the midpoint of each subinterval to approximateU08i({) g{, we have
4
S
l=1i({l) { = 2[i(1) + i(3) + i(5) + i(7)] 2[3 + 2 + 1 + (1)] = 10.
7. Sincei is increasing, O5U025i({) g{ U5. Lower estimate= O5=S5
l=1i({l1) { = 5[i(0) + i(5) + i(10) + i(15) + i(20)]
= 5(42 37 25 6 + 15) = 5(95) = 475 Upper estimate= U5=
5
S
l=1i({l) { = 5[i(5) + i(10) + i(15) + i(20) + i(25)]
= 5(37 25 6 + 15 + 36) = 5(17) = 85
9. { = (10 2)@4 = 2, so the endpoints are 2, 4, 6, 8, and 10, and the midpoints are 3, 5, 7, and 9. The Midpoint Rule givesU210{3+ 1 g{ S4
l=1i({l) { = 2
33+ 1 +53+ 1 +73+ 1 +93+ 1 124=1644.
11. { = (1 0)@5 = 0=2, so the endpoints are 0, 0.2, 0.4, 0.6, 0.8, and 1, and the midpoints are 0.1, 0.3, 0.5, 0.7, and 0.9. The Midpoint Rule gives
U1 0 sin({2) g{ 5 S l=1i({l) { = 0=2
SECTION 5.2 THE DEFINITE INTEGRAL ¤ 239 13.In Maple, we use the command with(student); to load the sum and box commands, then
m:=middlesum(sin(xˆ2),x=0..1,5);which gives us the sum in summation notation, then M:=evalf(m); which givesP5 0=30843908, conrming the result of Exercise 11. The command middlebox(sin(xˆ2),x=0..1,5) generates the graph. Repeating forq = 10 and q = 20 gives P10 0=30981629 and P20 0=31015563.
15.We’ll create the table of values to approximateU0sin { g{ by using the program in the solution to Exercise 5.1.7 withY1= sin {, Xmin = 0,
Xmax = , and q = 5, 10, 50, and 100. The values ofUqappear to be approaching2.
q Uq 5 1=933766 10 1=983524 50 1=999342 100 1=999836 17.On[2> 6], lim q q S l=1{lln(1 + { 2 l) { =U62{ ln(1 + {2) g{= 19.On[1> 8], lim q q S l=1 s 2{ l + ({l)2{ = U8 1 2{ + {2g{. 21.Note that{ = 5 (1) q = 6q and{l= 1 + l { = 1 + 6lq. ] 5 1(1 + 3{) g{ = limq q S l=1i({l) { = limq q S l=1 1 + 3 1 + 6lq 6 q = limq 6 q q S l=1 2 + 18lq = limqq6 Sq l=1(2) + q S l=1 18l q = limq6q 2q + 18q Sq l=1l = limqq6 2q + 18q · q(q + 1)2 = limq 12 + 108q2 · q(q + 1)2 = lim q 12 + 54q + 1 q = lim q 12 + 541 + 1 q = 12 + 54 · 1 = 42 23.Note that{ = 2 0 q = 2qand{l= 0 + l { = 2lq. ] 2 0 2 {2g{ = lim q q S l=1i({l) { = limq q S l=1 2 4lq22 2 q = lim q 2 q Sq l=12 4q2 q S l=1l 2 = limq2q 2q 4q2 Sq l=1l 2= lim q 4 8q3 · q(q + 1)(2q + 1)6 = lim q 4 43· q + 1q · 2q + 1q = lim q 4 43 1 + 1q 2 + 1q = 4 4 3 · 1 · 2 = 43
TX.10
25. Note that{ = 2 1 q = 1q and{l= 1 + l { = 1 + l(1@q) = 1 + l@q. ] 2 1 { 3g{ = lim q q S l=1i({l) { = limq q S l=1 1 + lq 31 q = limqq1 Sq l=1 q + l q 3 = lim q 1 q4 q S l=1 q3+ 3q2l + 3ql2+ l3= lim q 1 q4 Sq l=1q 3+Sq l=13q 2l +Sq l=13ql 2+Sq l=1l 3 = limqq14 q · q3+ 3q2Sq l=1l + 3q q S l=1l 2+Sq l=1l 3 = lim q 1 + 3q2 · q(q + 1)2 + 3q3 · q(q + 1)(2q + 1)6 + 1q4 · q2(q + 1)4 2 = limq 1 + 32· q + 1q + 12· q + 1q · 2q + 1q + 14· (q + 1)q2 2 = limq % 1 + 32 1 + 1q + 12 1 + 1q 2 + 1q + 14 1 + 1q 2& = 1 + 32+1 2· 2 +14 = 3=75 27. ] e d { g{ = limq e d q q S l=1 d + e dq l = limq d(e d) q q S l=11 + (e d) 2 q2 q S l=1l = limq d(e d) q q + (e d) 2 q2 · q(q + 1)2 = d (e d) + limq(e d)2 2 1 + 1q = d(e d) +1 2(e d)2= (e d) d +1 2e 12d = (e d)1 2(e + d) =12 e2 d2 29. i({) = {
1 + {5,d = 2, e = 6, and { = 6 2q = 4q. Using Theorem 4, we get{l = {l= 2 + l { = 2 + 4lq,
so ] 6 2 { 1 + {5g{ = limqUq= limq q S l=1 2 + 4lq 1 + 2 + 4lq 5 · 4q. 31. { = ( 0)@q = @q and {l = {l = l@q. ] 0 sin 5{ g{ = limq q S l=1(sin 5{l) q = lim q q S l=1 sin 5l q q CAS = lim q 1 qcot 5 2q CAS = 2 5 = 2 5
33. (a) Think ofU02i({) g{ as the area of a trapezoid with bases 1 and 3 and height 2. The area of a trapezoid is D =12(e + E)k, soU02i({) g{ =12(1 + 3)2 = 4. (b)U05i({) g{ =U02i({) g{ trapezoid +U23i({) g{ rectangle +U35i({) g{ triangle = 1 2(1 + 3)2 + 3 · 1 + 12· 2 · 3 = 4 + 3 + 3 = 10
(c)U57i({) g{ is the negative of the area of the triangle with base 2 and height 3.U57i({) g{ = 12· 2 · 3 = 3. (d)U79i({) g{ is the negative of the area of a trapezoid with bases 3 and 2 and height 2, so it equals
1 2(E + e)k = 12(3 + 2)2 = 5. Thus, U9 0 i({) g{ = U5 0 i({) g{ + U7 5 i({) g{ + U9 7 i({) g{ = 10 + (3) + (5) = 2.
SECTION 5.2 THE DEFINITE INTEGRAL ¤ 241 35.U0312{ 1g{ can be interpreted as the area of the triangle above the x-axis
minus the area of the triangle below the x-axis; that is,
1 2(1) 1 2 1 2(2)(1) =14 1 = 34. 0
37.U30 1 +9 {2g{ can be interpreted as the area under the graph of i({) = 1 +9 {2between{ = 3 and { = 0. This is equal to one-quarter
the area of the circle with radius3, plus the area of the rectangle, so U0
3
1 +9 {2g{ =1
4 · 32+ 1 · 3 = 3 +94.
39.U12 |{| g{ can be interpreted as the sum of the areas of the two shaded triangles; that is, 12(1)(1) +12(2)(2) = 12+42 =52.
0
41.Usin2{ cos4{ g{ = 0 since the limits of intergration are equal.
43.U01(5 6{2) g{ =U015 g{ 6U01{2g{ = 5(1 0) 613= 5 2 = 3 45.U13h{ + 2g{ =U13h{ · h2g{ = h2U13h{g{ = h2(h3 h) = h5 h3
47.U22 i({) g{ +U25i({) g{ U21i({) g{ =U25 i({) g{ +U12i({) g{ [by Property 5 and reversing limits]
=U15 i({) g{ [Property 5]
49.U09[2i({) + 3j({)] g{ = 2U09i({) g{ + 3U09j({) g{ = 2(37) + 3(16) = 122
51.Using Integral Comparison Property 8,p i({) P p(2 0) U02i({) g{ P(2 0) 2p U2
0 i({) g{ 2P.
53.If1 { 1, then 0 {2 1 and 1 1 + {2 2, so 1 1 + {2 2 and 1[1 (1)] U11 1 + {2g{ 2 [1 (1)] [Property 8]; that is, 2 U1
1
1 + {2g{ 22.
55.If1 { 4, then 1 { 2> so 1(4 1) U41{ g{ 2(4 1); that is, 3 U41{ g{ 6.
57.If 4 { 3, then1 tan { 3, so 13 4U@3@4tan { g{ 33 4or 12 U@3@4tan { g{ 123. 59.The only critical number ofi({) = {h{on[0> 2] is { = 1. Since i(0) = 0, i(1) = h1 0=368, and
i(2) = 2h2 0=271, we know that the absolute minimum value of i on [0> 2] is 0, and the absolute maximum is h1. By
Property 8> 0 {h{ h1for0 { 2 0(2 0) U02{h{g{ h1(2 0) 0 U02{h{g{ 2@h. 61.{4+ 1 {4= {2, soU13{4+ 1 g{ U13{2g{ = 1333 13= 263.
63. Using right endpoints as in the proof of Property 2, we calculate Ue dfi({) g{ = limq q S l=1fi({l) { = limqf q S l=1i({l) { = f limq q S l=1i({l) { = f Ue di({) g{.
65. Since |i({)| i({) |i({)|, it follows from Property 7 that
Ued|i({)| g{ Uedi({) g{ Ued|i({)| g{ Uedi({) g{
Ue
d|i({)| g{
Note that the denite integral is a real number, and so the following property applies:d e d |e| d for all real numberse and nonnegative numbers d.
67. To show thati is integrable on [0> 1] > we must show that lim
q q
S
l=1i({
l) { exists. Let n denote a positive integer and divide
the interval[0> 1] into n equal subintervals 0> 1 q , 1 q> 2q ,=== , q 1 q > 1
. If we choose{l to be a rational number in the ith
subinterval, then we obtain the Riemann sumSq
l=1i({ l) · 1q = 0, so limq q S l=1i({
l) · 1q = limq0 = 0. Now suppose we
choose{l to be an irrational number. Then we get Sq
l=1i({ l) · 1q = q S l=11 · 1q = q · 1q = 1 for each q, so lim q q S l=1i({
l) · 1q = limq1 = 1. Since the value of limq q
S
l=1i({
l) { depends on the choice of the sample points {l, the
limit does not exist, andi is not integrable on [0> 1].
69. lim q q S l=1 l4 q5 = limq q S l=1 l4 q4 · 1q = limq q S l=1 l q 4 1
q. At this point, we need to recognize the limit as being of the form lim
q q
S
l=1i({l) {, where { = (1 0)@q = 1@q, {l= 0 + l { = l@q, and i({) = {
4. Thus, the denite integral
isU10{4g{. 71. Choose{l= 1 + lq and{l = {l1{l= v 1 + l 1q 1 + lq . Then U2 1 {2g{ = limqq1 q S l=1 1 1 +l 1 q 1 + l q = lim qq q S l=1 1 (q + l 1)(q + l) = lim qq q S l=1 1 q + l 1 1q + l
[by the hint] = lim
qq q1S l=0 1 q + l q S l=1 1 q + l = limqq 1 q+ 1q + 1+ · · · +2q 11 1 q + 1+ · · · +2q 11 + 12q = limqq 1 q 12q = limq1 1 2 =1 2
5.3
The Fundamental Theorem of Calculus
1. One process undoes what the other one does. The precise version of this statement is given by the Fundamental Theorem of Calculus. See the statement of this theorem and the paragraph that follows it on page 387.
SECTION 5.3 THE FUNDAMENTAL THEOREM OF CALCULUS ¤ 243 3. (a)j({) =U0{i(w) gw.
j(0) =U0
0 i(w) gw = 0
j(1) =U01i(w) gw = 1 · 2 = 2 [rectangle],
j(2) =U02i(w) gw =U01i(w) gw +U12i(w) gw = j(1) +U12i(w) gw = 2 + 1 · 2 +1
2· 1 · 2 = 5 [rectangle plus triangle],
j(3) =U03i(w) gw = j(2) +U23i(w) gw = 5 +1
2· 1 · 4 = 7,
j(6) = j(3) +U36i(w) gw [the integral is negative since i lies under the {-axis] = 7 +1
2· 2 · 2 + 1 · 2
= 7 4 = 3
(d)
(b)j is increasing on (0> 3) because as { increases from 0 to 3, we keep adding more area. (c)j has a maximum value when we start subtracting area; that is, at { = 3.
5. (a) By FTC1 withi(w) = w2andd = 1, j({) =U1{w2gw
j0({) = i({) = {2. (b) Using FTC2,j({) =U1{w2gw =13w3{ 1= 13{313 j0({) = {2. 7.i(w) = 1 w3+ 1andj({) = ] { 1 1 w3+ 1gw, so by FTC1, j0({) = i({) = 1
{3+ 1. Note that the lower limit,1, could be any
real number greater than1 and not affect this answer.
9.i(w) = w2sin w and j(|) =U2|w2sin w gw, so by FTC1, j0(|) = i(|) = |2sin |.
11.I ({) = ] { 1 + sec w gw = ] { 1 + sec w gw I0({) = g g{ ] { 1 + sec w gw = 1 + sec { 13.Letx = 1 {. Thengxg{ = 1{2. Also, gkg{ = gkgxgxg{, so k0({) = g g{ ] 1@{ 2 arctan w gw = ggx ] x
2 arctan w gw · gxg{= arctan x gxg{ = arctan(1@{){2
.
15.Letx = tan {. Then gx
g{= sec2{. Also, g|g{ = g|gxgxg{, so |0= g g{ ] tan { 0 t w +w gw = ggx]x 0 t
w +w gw · gxg{ =tx +x gxg{ =ttan { +tan { sec2{.
17.Letz = 1 3{. Then gz g{ = 3. Also, g|g{ = g|gzgzg{, so |0= g g{ ] 1 13{ x3 1 + x2 gx = ggz ] 1 z x3 1 + x2gx · gzg{ = ggz ] z 1 x3 1 + x2gx · gzg{ = z 3 1 + z2(3) = 3(1 3{) 3 1 + (1 3{)2 19. ] 2 1 {3 2{g{ ={4 4 {2 2 1= 24 4 22 (1)4 4 (1)2 = (4 4) 1 4 1 = 0 3 4 =3 4
TX.10
21. U41(5 2w + 3w2) gw =5w w2+ w341= (20 16 + 64) (5 1 + 1) = 68 5 = 63 23. U01{4@5g{ = k 5 9{9@5 l1 0= 5 9 0 = 59 25. ] 2 1 3 w4gw = 3 ] 2 1 w 4gw = 3w3 3 2 1= 33 1 w3 2 1= 1 1 8 1 = 78 27. U20{(2 + {5) g{ =U20(2{ + {6) g{ ={2+17{720=4 +1287 (0 + 0) = 1567 29. ] 9 1 { 1 { g{ = ] 9 1 { { 1{ g{ =] 9 1 ({ 1@2 {1@2) g{ =k2 3{3@2 2{1@2 l9 1 =2 3· 27 2 · 3 2 3 2 = 12 4 3 =40 3
31. U0@4sec2w gw =tan w@40 = tan4 tan 0 = 1 0 = 1
33. U21(1 + 2|)2g| =U21(1 + 4| + 4|2) g| =| + 2|2+43|321=2 + 8 +3231 + 2 +34= 623 133 =493 35. ] 9 1 1 2{g{ = 12 ] 9 1 1 {g{ =12 k ln |{|l9 1= 1 2(ln 9 ln 1) =12ln 9 0 = ln 91@2= ln 3 37. ] 3@2 1@2 6 1 w2 gw = 6 ] 3@2 1@2 1 1 w2gw = 6 sin1w3@2 1@2 = 6 k sin13 2 sin11 2 l = 6 3 6 = 6 6 = 39. U11 hx+1gx =hx+111= h2 h0= h2 1 [or start with hx+1= hxh1]
41. Ifi({) = + sin { if 0 { ? @2 cos { if @2 { then U 0i({) g{ = U@2 0 sin { g{ + U @2cos { g{ = cos {@20 + [sin {]
@2= cos2 + cos 0 + sin sin2
= 0 + 1 + 0 1 = 0
Note thati is integrable by Theorem 3 in Section 5.2.
43. i({) = {4is not continuous on the interval[2> 1], so FTC2 cannot be applied. In fact, i has an innite discontinuity at { = 0, soU12{4g{ does not exist.
45. i() = sec tan is not continuous on the interval [@3> ], so FTC2 cannot be applied. In fact, i has an innite discontinuity at{ = @2, soU@3sec tan gdoes not exist.
47. From the graph, it appears that the area is about60. The actual area is U27 0 {1@3g{ = k 3 4{4@3 l27 0 = 3 4· 81 0 = 2434 = 60=75. This is34 of the
SECTION 5.3 THE FUNDAMENTAL THEOREM OF CALCULUS ¤ 245 49.It appears that the area under the graph is about 23of the area of the viewing
rectangle, or about23 2=1. The actual area is U
0 sin { g{ = [ cos {]0 = ( cos ) ( cos 0) = (1) + 1 = 2.
51.U12 {3g{ =14{421= 4 14 =154 = 3=75 53.j({) = ] 3{ 2{ x2 1 x2+ 1gx = ] 0 2{ x2 1 x2+ 1gx + ] 3{ 0 x2 1 x2+ 1gx = ] 2{ 0 x2 1 x2+ 1gx + ] 3{ 0 x2 1 x2+ 1gx j0({) = (2{)2 1 (2{)2+ 1· gg{(2{) + (3{) 2 1 (3{)2+ 1· gg{(3{) = 2 · 4{ 2 1 4{2+ 1+ 3 · 9{ 2 1 9{2+ 1
55.| =U{3{w sin w gw =U1{w sin w gw +U1{3w sin w gw = U1{w sin w gw +U1{3w sin w gw
|0= 4{ (sin{ ) · g g{( { ) + {3@2sin({3) · g g{ {3= 4{ sin{ 2{ + {3@2sin({3)(3{2) = 3{7@2sin({3) sin{ 24{ 57.I ({) = ] { 1 i(w) gw I 0({) = i({) =]{ 2 1 1 + x4 x gx % sincei(w) = ] w2 1 1 + x4 x gx & I00({) = i0({) = s 1 + ({2)4 {2 · gg{ {2= 1 + {8 {2 · 2{ = 2 1 + {8 { . SoI00(2) = 1 + 28=257.
59.By FTC2,U14i0({) g{ = i(4) i(1), so 17 = i(4) 12 i(4) = 17 + 12 = 29.
61. (a) The Fresnel functionV({) =U0{sin2w2gw has local maximum values where 0 = V0({) = sin2w2and V0changes from positive to negative. For{ A 0, this happens when
2{2= (2q 1) [odd multiples of ]
{2 = 2(2q 1) { =4q 2, q any positive integer. For { ? 0, V0changes from positive to negative where
2{2= 2q [even multiples of ] {2= 4q { = 2
q. V0does not change sign at{ = 0.
(b)V is concave upward on those intervals where V00({) A 0. Differentiating our expression for V0({), we get V00({) = cos 2{2 2 2{ = { cos 2{2
. For{ A 0, V00({) A 0 where cos(2{2) A 0 0 ? 2{2? 2 or 2q 1 2 ? 2{2? 2q +1 2
, q any integer 0 ? { ? 1 or4q 1 ? { ?4q + 1, q any positive integer. For{ ? 0, V00({) A 0 where cos(2{2) ? 0 2q 32 ? 2{2?2q 12, q any integer
4q 3 ? {2? 4q 1 4q 3 ? |{| ?4q 1 4q 3 ? { ?4q 1
4q 3 A { A 4q 1, so the intervals of upward concavity for { ? 0 are4q 1> 4q 3,q any positive integer. To summarize:V is concave upward on the intervals (0> 1),3> 1,3>5,7> 5,
7> 3,= = = .
(c) In Maple, we use plot({int(sin(Pi*tˆ2/2),t=0..x),0.2},x=0..2);. Note that Maple recognizes the Fresnel function, calling it FresnelS(x). In Mathematica, we use
Plot[{Integrate[Sin[Pi*tˆ2/2],{t,0,x}],0.2},{x,0,2}]. In Derive, we load the utility le FRESNELand plot FRESNEL_SIN(x). From the graphs, we see thatU0{sin2w2gw = 0=2 at { 0=74.
63. (a) By FTC1,j0({) = i({). So j0({) = i({) = 0 at { = 1> 3> 5> 7, and 9. j has local maxima at { = 1 and 5 (since i = j0 changes from positive to negative there) and local minima at{ = 3 and 7. There is no local maximum or minimum at { = 9, since i is not dened for { A 9.
(b) We can see from the graph thatU01i gw ?U13i gw ?U35i gw ? U57i gw ?U79i gw. So j(1) =U01i gw, j(5) =U5 0 i gw = j(1) U3 1 i gw + U5 3 i gw, and j(9) = U9 0 i gw = j(5) U7 5 i gw + U9 7 i gw. Thus,
j(1) ? j(5) ? j(9), and so the absolute maximum of j({) occurs at { = 9. (c)j is concave downward on those intervals where j00? 0. But j0({) = i({),
soj00({) = i0({), which is negative on (approximately)12> 2,(4> 6) and (8> 9). So j is concave downward on these intervals.
(d) 65. lim q q S l=1 l3 q4 = limq1 0q q S l=1 l q 3 = ] 1 0 { 3g{ ={4 4 1 0= 14
67. Supposek ? 0. Since i is continuous on [{ + k> {], the Extreme Value Theorem says that there are numbers x and y in [{ + k> {] such that i(x) = p and i(y) = P, where p and P are the absolute minimum and maximum values of i on [{ + k> {]. By Property 8 of integrals, p(k) U{+k{ i(w) gw P(k); that is, i(x)(k) U{{+ki(w) gw i(y)(k). Sincek A 0, we can divide this inequality by k: i(x) 1
k ] {+k { i (w) gw i(y). By Equation 2, j({ + k) j({) k = 1k ] {+k
{ i(w) gw for k 6= 0, and hence i(x) j({ + k) j({)k i(y), which is Equation 3 in the
SECTION 5.4 INDEFINITE INTEGRALS AND THE NET CHANGE THEOREM ¤ 247 69. (a) Leti({) ={ i0({) = 1@(2{ ) A 0 for { A 0 i is increasing on (0> ). If { 0, then {3 0, so
1 + {3 1 and since i is increasing, this means that i1 + {3 i(1) 1 + {3 1 for { 0. Next let
j(w) = w2 w j0(w) = 2w 1 j0(w) A 0 when w 1. Thus, j is increasing on (1> ). And since j(1) = 0,
j(w) 0 when w 1. Now let w =1 + {3, where{ 0. 1 + {3 1 (from above) w 1 j(w) 0
1 + {31 + {3 0 for { 0. Therefore, 1 1 + {3 1 + {3for{ 0.
(b) From part (a) and Property 7: U011 g{ U101 + {3g{ U01(1 + {3) g{ {10U101 + {3g{ { +1 4{4 1 0 1 U1 0 1 + {3g{ 1 +1 4 = 1=25. 71.0 ? { 2 {4+ {2+ 1 ? { 2 {4 = 1{2 on[5> 10], so 0 ] 10 5 {2 {4+ {2+ 1g{ ? ] 10 5 1 {2g{ = 1{ 10 5 = 110 15 = 110= 0=1= 73.Using FTC1, we differentiate both sides of6 +
] { d i(w) w2 gw = 2 { to get i({) {2 = 2 12{ i({) = {3@2.
To ndd, we substitute { = d in the original equation to obtain 6 + ] d d i(w) w2 gw = 2 d 6 + 0 = 2d 3 =d d = 9.
75. (a) LetI (w) =U0wi(v) gv. Then, by FTC1, I0(w) = i(w) = rate of depreciation, so I (w) represents the loss in value over the interval[0> w]. (b)F(w) = 1 w D +] w 0 i(v) gv
= D + I (w)w represents the average expenditure per unit ofw during the interval [0> w], assuming that there has been only one overhaul during that time period. The company wants to minimize average expenditure. (c)F(w) = 1 w D +]w 0 i(v) gv . Using FTC1, we haveF0(w) = 1 w2 D +] w 0 i(v) gv + 1wi(w). F0(w) = 0 w i(w) = D +] w 0 i(v) gv i(w) = 1w D +]w 0 i(v) gv = F(w).
5.4
Indefinite Integrals and the Net Change Theorem
1. g g{ {2+ 1 + F= g g{ k {2+ 11@2+ Fl=1 2 {2+ 11@2· 2{ + 0 = { {2+ 1 3. g g{ sin { 1 3sin3{ + F = gg{sin { 1 3(sin {)3+ F = cos { 1 3 · 3(sin {)2(cos {) + 0
= cos {(1 sin2{) = cos {(cos2{) = cos3{
5. ] ({2+ {2) g{ = {3 3 + { 1 1 + F = 13{3 1{+ F
TX 10
ECTION 5 ECTION 57. ] {412{3+14{ 2g{ = { 5 5 12{ 4 4 + 14{ 2 2 2{ + F =15{581{4+18{2 2{ + F 9. ] (1 w)(2 + w2) gw =] (2 2w + w2 w3) gw = 2w 2 w2 2 + w 3 3 w 4 4 + F = 2w w2+13w314w4+ F 11. ] {3 2{ { g{ = ] {3 { 2{ 1@2 { g{ =] ({2 2{1@2) g{ = {3 3 2 { 1@2 1@2 + F = 13{3 4 { + F 13. U(sin { + sinh {) g{ = cos { + cosh { + F
15. U( csc cot ) g =122+ csc + F 17. U(1 + tan2) g =Usec2 g = tan + F
19. U cos { +12{g{ = sin { +14{2+ F. The members of the family in the gure correspond toF = 5, 0, 5, and 10.
21. U02(6{2 4{ + 5) g{ =6 ·13{3 4 ·12{2+ 5{20=2{3 2{2+ 5{20= (16 8 + 10) 0 = 18 23. U10 (2{ h{) g{ ={2 h{01= (0 1) 1 h1= 2 + 1@h 25. U22 (3x + 1)2gx =U229x2+ 6x + 1gx =9 ·13x3+ 6 ·12x2+ x22=3x3+ 3x2+ x22 = (24 + 12 + 2) (24 + 12 2) = 38 (14) = 52 27. U41w (1 + w) gw =U41(w1@2+ w3@2) gw = k 2 3w3@2+25w5@2 l4 1 = 16 3 +645 2 3+25 = 14 3 +625 =25615 29. ] 1 2 4|3+ 2 |3 g| = 4 ·1 4|4+ 2 · 12|2 1 2= |4 1 |2 1 2= (1 1) 16 1 4 = 63 4 31. U10{ 3 { +4{g{ =U1 0({4@3+ {5@4) g{ = k 3 7{7@3+49{9@4 l1 0= 3 7+49 0 = 55 63 33. U41s5@{ g{ =5U14{1@2g{ =5 k 2{l4 1 = 5 (2 · 2 2 · 1) = 25 35. U0(4 sin 3 cos ) g = 4 cos 3 sin 0 = (4 0) (4 0) = 8
37. ] @4 0 1 + cos2 cos2 g = ] @4 0 1 cos2+ cos 2 cos2 g =] @4 0 (sec 2 + 1) g =tan + @40 =tan 4 +4 (0 + 0) = 1 + 4
SECTION 5.4 INDEFINITE INTEGRALS AND THE NET CHANGE THEOREM ¤ 249 39. ] 64 1 1 +3{ { g{ =]64 1 1 {1@2 + { 1@3 {1@2 g{ =] 64 1 {1@2+ {(1@3) (1@2)g{ =]64 1 ({ 1@2+ {1@6) g{ =k2{1@2+6 5{5@6 l64 1 = 16 +192 5 2 +6 5 = 14 +186 5 =2565 41. ] 1@3 0 w2 1 w4 1gw = ] 1@3 0 w2 1 (w2+ 1)(w2 1)gw = ] 1@3 0 1 w2+ 1gw =
arctan w1@0 3= arctan1@3 arctan 0 = 6 0 = 6 43.U12 ({ 2 |{|) g{ =U10 [{ 2({)] g{ +U02[{ 2({)] g{ =U10 3{ g{ +U02({) g{ = 312{210 12{220 = 30 1 2 (2 0) = 7 2 = 3=5
45.The graph shows that| = { + {2 {4has{-intercepts at { = 0 and at { = d 1=32. So the area of the region that lies under the curve and above the {-axis is Ud 0({ + {2 {4) g{ = 1 2{2+13{315{5 d 0 =1 2d2+13d315d5 0 0=84 47.D =U022| |2g| =|231|320=4 83 0 = 43
49.Ifz0(w) is the rate of change of weight in pounds per year, then z(w) represents the weight in pounds of the child at age w. We know from the Net Change Theorem thatU510z0(w) gw = z(10) z(5), so the integral represents the increase in the child’s weight (in pounds) between the ages of5 and 10.
51.Sinceu(w) is the rate at which oil leaks, we can write u(w) = Y0(w), where Y (w) is the volume of oil at time w. [Note that the minus sign is needed becauseY is decreasing, so Y0(w) is negative, but u(w) is positive.] Thus, by the Net Change Theorem, U120
0 u(w) gw =
U120
0 Y0(w) gw = [Y (120) Y (0)] = Y (0) Y (120), which is the number of gallons of oil that leaked
from the tank in the rst two hours (120 minutes).
53.By the Net Change Theorem,U10005000U0({) g{ = U(5000) U(1000), so it represents the increase in revenue when production is increased from1000 units to 5000 units.
55.In general, the unit of measurement forUdei({) g{ is the product of the unit for i({) and the unit for {. Since i({) is measured in newtons and{ is measured in meters, the units forU0100i({) g{ are newton-meters. (A newton-meter is abbreviated N·m and is called a joule.)
57. (a) Displacement=U03(3w 5) gw =32w2 5w3 0= 272 15 = 32 m (b) Distance traveled=U03|3w 5| gw =U05@3(5 3w) gw +U5@33 (3w 5) gw =5w 3 2w2 5@3 0 + 3 2w2 5w 3 5@3=253 32·259 +272 15 3 2·259 253 =41 6 m
59. (a)y0(w) = d(w) = w + 4 y(w) =12w2+ 4w + F y(0) = F = 5 y(w) =12w2+ 4w + 5 m@s (b) Distance traveled=U010|y(w)| gw =U01012w2+ 4w + 5gw = U01012w2+ 4w + 5gw =16w3+ 2w2+ 5w10
0 = 500 3 + 200 + 50 = 41623 m
TX 10
ECTION 5 ECTION 561. Sincep0({) = ({), p =U04({) g{ =U049 + 2{g{ =k9{ +43{3@2l4
0= 36 + 32
3 0 = 1403 = 4623 kg.
63. Letv be the position of the car. We know from Equation 2 that v(100) v(0) =U0100y(w) gw. We use the Midpoint Rule for 0 w 100 with q = 5. Note that the length of each of the ve time intervals is 20 seconds = 20
3600hour = 1801 hour.
So the distance traveled is U100
0 y(w) gw 1801 [y(10) + y(30) + y(50) + y(70) + y(90)] = 1801 (38 + 58 + 51 + 53 + 47) =247180 1=4 miles.
65. From the Net Change Theorem, the increase in cost if the production level is raised from 2000 yards to 4000 yards isF(4000) F(2000) =U20004000F0({) g{. U4000 2000 F0({) g{ = U4000 2000 3 0=01{ + 0=000006{2g{ =3{ 0=005{2+ 0=000002{34000 2000= 60,0002,000 = $58,000
67. (a) We can nd the area between the Lorenz curve and the line| = { by subtracting the area under | = O({) from the area under| = {. Thus,
coefcient of inequality= area between Lorenz curve and line| = { area under line| = { =
U1 0 [{ O({)] g{U 1 0 { g{ = U1 0 [{ O({)] g{ [{2@2]1 0 = U1 0 [{ O({)] g{ 1@2 = 2 U1 0 [{ O({)] g{
(b)O({) =125{2+127{ O(50%) = O21=485 +247 = 1948= 0=39583, so the bottom 50% of the households receive at most about40% of the income. Using the result in part (a),
coefcient of inequality= 2U10[{ O({)] g{ = 2U10{ 125{2127{g{ = 2U10125{ 125{2g{ = 2U10 5 12({ {2) g{ = 56 1 2{213{3 1 0=56 1 213 =5 6 1 6 = 5 36
5.5
The Substitution Rule
1. Letx = {. Then gx = g{> so g{ = gx. Thus,Uh{g{ =Uhx(gx) = hx+ F = h{+ F. Don’t forget that it is often very easy to check an indenite integration by differentiating your answer. In this case,
g
g{(h{+ F) = [h{(1)] = h{, the desired result. 3. Letx = {3+ 1. Then gx = 3{2g{ and {2g{ =13gx, so
] {2s{3+ 1 g{ =] x1 3gx = 13x3@23@2+ F = 13· 23x3@2+ F = 2 9({3+ 1)3@2+ F.
5. Letx = cos . Then gx = sin gand sin g = gx, so ]
cos3 sin g=] x3(gx) = x4
4 + F = 14cos4 + F.
SECTION 5.5 THE SUBSTITUTION RULE ¤ 251 9.Letx = 3{ 2. Then gx = 3 g{ and g{ = 13gx, soU(3{ 2)20g{ =Ux2013gx=13·211x21+ F = 631(3{ 2)21+ F. 11.Letx = 2{ + {2. Thengx = (2 + 2{) g{ = 2(1 + {) g{ and ({ + 1) g{ = 12gx, so
] ({ + 1)s2{ + {2g{ =] x1 2gx = 12 x3@23@2+ F = 1 3 2{ + {23@2 + F.
Or: Letx =2{ + {2. Thenx2 = 2{ + {2 2x gx = (2 + 2{) g{ x gx = (1 + {) g{, so U
({ + 1)2{ + {2g{ =Ux · x gx =Ux2gx =1
3x3+ F = 13(2{ + {2)3@2+ F.
13.Letx = 5 3{. Then gx = 3 g{ and g{ = 13gx, so ] g{ 5 3{ = ] 1 x 1 3gx = 1 3ln |x| + F = 13ln |5 3{| + F.
15.Letx = w. Then gx = gw and gw =1gx, soUsin w gw =Usin x1gx= 1( cos x) + F = 1cos w + F. 17.Letx = 3d{ + e{3. Then gx = (3d + 3e{2) g{ = 3(d + e{2) g{, so
] d + e{2 3d{ + e{3g{ = ] 1 3gx x1@2 = 13 ] x1@2gx = 1 3· 2x2+ F = 23 s 3d{ + e{3+ F. 19.Letx = ln {. Then gx = g{ {, so ] (ln {)2 { g{ = U x2gx =1 3x3+ F = 13(ln {)3+ F. 21.Letx =w. Then gx = gw 2wand 1 wgw = 2 gx, so ] cosw w gw = U
cos x (2 gx) = 2 sin x + F = 2 sinw + F. 23.Letx = sin . Then gx = cos g, soUcos sin6g=Ux6gx = 17x7+ F = 17sin7 + F.
25.Letx = 1 + h{. Thengx = h{g{, soUh{1 + h{g{ =U x gx =23x3@2+ F = 23(1 + h{)3@2+ F.
Or: Letx =1 + h{. Thenx2 = 1 + h{and2x gx = h{g{, so U
h{1 + h{g{ =Ux · 2x gx = 2
3x3+ F = 23(1 + h{)3@2+ F.
27.Letx = 1 + }3. Thengx = 3}2g} and }2g} = 13gx, so ] }2 3 1 + }3g} = ] x1@31 3gx =1 3 ·32x2@3+ F = 12(1 + }3)2@3+ F.
29.Letx = tan {. Then gx = sec2{ g{, soUhtan {sec2{ g{ =Uhxgx = hx+ F = htan {+ F.
31.Letx = sin {. Then gx = cos { g{, so
] cos { sin2{g{ = ] 1 x2gx = ] x2gx = x1 1 + F = 1x+ F = 1sin {+ F [or csc { + F ].
33.Letx = cot {. Then gx = csc2{ g{ and csc2{ g{ = gx, so ]
cot { csc2{ g{ =] x (gx) = x3@2
3@2 + F = 23(cot {)3@2+ F.
35.
] sin 2{
1 + cos2{g{ = 2
] sin { cos {
1 + cos2{g{ = 2L. Let x = cos {. Then gx = sin { g{, so
2L = 2] 1 + xx gx2 = 2 ·1
2ln(1 + x2) + F = ln(1 + x2) + F = ln(1 + cos2{) + F. Or: Letx = 1 + cos2{.
37. ]
cot { g{ =] cos {sin {g{. Let x = sin {. Then gx = cos { g{, so] cot { g{ =] x1gx = ln |x| + F = ln |sin {| + F. 39. Letx = sec {. Then gx = sec { tan { g{, so
U
sec3{ tan { g{ =Usec2{ (sec { tan {) g{ =Ux2gx =1
3x3+ F = 13sec3{ + F.
41. Letx = sin1{. Then gx = 1
1 {2 g{, so ] g{ 1 {2sin1{= ] 1 xgx = ln |x| + F = lnsin1{ +F. 43. Letx = 1 + {2. Thengx = 2{ g{, so ] 1 + { 1 + {2g{ = ] 1 1 + {2g{ + ] { 1 + {2 g{ = tan1{ + ] 1 2gx x = tan1{ +12ln|x| + F = tan1{ +1 2ln1 +{2 +F = tan1{ +12ln 1 + {2+ F [since 1 + {2A 0]. 45. Letx = { + 2. Then gx = g{, so ] { 4 { + 2g{ = ] x 2 4 x gx = ] (x3@4 2x1@4) gx = 4 7x7@4 2 ·43x3@4+ F = 4 7({ + 2)7@483({ + 2)3@4+ F In Exercises 47–50, leti({)denote the integrand andI ({)its antiderivative (withF = 0).
47. i({) = {({2 1)3. x = {2 1 gx = 2{ g{> so U {({2 1)3g{ =Ux31 2gx =1 8x4+ F =18({2 1)4+ F
Wherei is positive (negative), I is increasing (decreasing). Where i changes from negative to positive (positive to negative),I has a local minimum (maximum).
49. i({) = sin3{ cos {. x = sin { gx = cos { g{, so U
sin3{ cos { g{ =Ux3gx = 1
4x4+ F = 14sin4{ + F
Note that at{ = 2,i changes from positive to negative and I has a local maximum. Also, bothi and I are periodic with period , so at { = 0 and at{ = , i changes from negative to positive and I has local minima.
51. Letx = { 1, so gx = g{. When { = 0, x = 1; when { = 2, x = 1. Thus,U02({ 1)25g{ =U11 x25gx = 0 by Theorem 7(b), sincei(x) = x25is an odd function.
SECTION 5.5 THE SUBSTITUTION RULE ¤ 253 53.Letx = 1 + 2{3, sogx = 6{2g{. When { = 0, x = 1; when { = 1, x = 3. Thus,
U1 0{2 1 + 2{35g{ =U3 1x5 1 6gx =1 6 1 6x6 3 1= 361(36 16) = 361(729 1) = 72836 =1829 .
55.Letx = w@4, so gx = 14gw. When w = 0, x = 0; when w = , x = @4. Thus, U 0 sec2(w@4) gw = U@4 0 sec2x (4 gx) = 4 tan x@40 = 4tan 4 tan 0 = 4(1 0) = 4. 57.U@6@6 tan3g= 0 by Theorem 7(b), since i() = tan3 is an odd function.
59.Letx = 1@{, so gx = 1@{2g{. When { = 1, x = 1; when { = 2, x = 12. Thus, ] 2 1 h1@{ {2 g{ = ] 1@2 1 h x(gx) = hx1@2 1 = (h1@2 h) = h h. 61.Letx = 1 + 2{, so gx = 2 g{. When { = 0, x = 1; when { = 13, x = 27. Thus,
] 13 0 g{ 3 t (1 + 2{)2 = ] 27 1 x 2@31 2gx =k1 2· 3x1@3 l27 1 = 3 2(3 1) = 3.
63.Letx = {2+ d2, sogx = 2{ g{ and { g{ =12gx. When { = 0, x = d2; when{ = d, x = 2d2. Thus, ] d 0 { s {2+ d2g{ =]2d 2 d2 x 1@21 2gx = 1 2 k 2 3x3@2 l2d2 d2 = k 1 3x3@2 l2d2 d2 = 1 3 k (2d2)3@2 (d2)3@2l= 1 3 22 1d3
65.Letx = { 1, so x + 1 = { and gx = g{. When { = 1, x = 0; when { = 2, x = 1. Thus, ] 2 1 { { 1 g{ =] 1 0 (x + 1) x gx =] 1 0 (x 3@2+ x1@2) gx =k2 5x5@2+23x3@2 l1 0= 2 5+23 =1615. 67.Letx = ln {, so gx = g{
{ . When{ = h, x = 1; when { = h4;x = 4. Thus, ] h4 h g{ {ln {= ] 4 1 x 1@2gx = 2kx1@2l4 1= 2(2 1) = 2.
69.Letx = h}+ }, so gx = (h}+ 1) g}. When } = 0, x = 1; when } = 1, x = h + 1. Thus, ] 1 0 h}+ 1 h}+ }g} = ] h+1 1 1 xgx = k ln |x|lh+1 1 = ln |h + 1| ln |1| = ln(h + 1).
71.From the graph, it appears that the area under the curve is about
1 +a little more than12· 1 · 0=7, or about1=4. The exact area is given by D =U1
0
2{ + 1 g{. Let x = 2{ + 1, so gx = 2 g{. The limits change to 2 · 0 + 1 = 1 and 2 · 1 + 1 = 3, and D =U13x1 2gx = 1 2 k 2 3x3@2 l3 1= 1 3 33 1=3 1 3 1=399.
73.First write the integral as a sum of two integrals: L =U22 ({ + 3)4 {2g{ = L1+ L2=U2 2{ 4 {2g{ +U2 23 4 {2g{. L1= 0 by Theorem 7(b), since
i({) = {4 {2is an odd function and we are integrating from{ = 2 to { = 2. We interpret L2as three times the area of
a semicircle with radius2, so L = 0 + 3 ·12 · 22= 6.
TX.10
75. First Figure Letx ={, so { = x2andg{ = 2x gx. When { = 0, x = 0; when { = 1, x = 1. Thus, D1=U01h {g{ =U1 0hx(2x gx) = 2 U1 0 xhxgx. Second Figure D2=U012{h{g{ = 2U01xhxgx.
Third Figure Letx = sin {, so gx = cos { g{. When { = 0, x = 0; when { = 2,x = 1. Thus,
D3=U0@2hsin {sin 2{ g{ =U0@2hsin {(2 sin { cos {) g{ =U01hx(2x gx) = 2U01xhxgx.
SinceD1= D2= D3, all three areas are equal.
77. The rate is measured in liters per minute. Integrating fromw = 0 minutes to w = 60 minutes will give us the total amount of oil that leaks out (in liters) during the rst hour.
U60 0 u(w) gw = U60 0 100h0=01wgw [x = 0=01w, gx = 0=01gw] = 100U0=60 hx(100 gx) = 10,000hx0=6 0 = 10,000(h0=6 1) 4511=9 4512 liters
79. The volume of inhaled air in the lungs at timew is Y (w) =U0wi(x) gx =U0w1 2sin 2 5 x gx =U02w@51 2sin y 5 2gy substitutey =25 x, gy =25 gx = 5 4 cos y2w@50 = 5 4 cos2 5 w + 1= 5 4 1 cos2 5 w liters 81. Letx = 2{. Then gx = 2 g{, soU02i(2{) g{ =U04i(x)21gx= 12U04i(x) gx =12(10) = 5. 83. Letx = {. Then gx = g{, so Ue di({) g{ = Ue di(x)(gx) = Ud e i(x) gx = Ud e i({) g{
From the diagram, we see that the equality follows from the fact that we are reecting the graph ofi, and the limits of integration, about the |-axis. 85. Letx = 1 {. Then { = 1 x and g{ = gx, so
U1 0{d(1 {)eg{ = U0 1(1 x)dxe(gx) = U1 0xe(1 x)dgx = U1 0{e(1 {)dg{. 87. { sin {
1 + cos2{ = { ·2 sinsin {2{ = { i(sin {), where i(w) = 2 ww 2. By Exercise 86,
] 0 { sin { 1 + cos2{g{ = ] 0 { i(sin {) g{ = 2 ] 0 i(sin {) g{ = 2 ] 0 sin { 1 + cos2{g{
Letx = cos {. Then gx = sin { g{. When { = , x = 1 and when { = 0, x = 1. So 2 ] 0 sin { 1 + cos2{g{ = 2 ] 1 1 gx 1 + x2 = 2 ] 1 1 gx 1 + x2 = 2 tan1x1 1 = 2[tan11 tan1(1)] = 2k4 4l= 42
CHAPTER 5 REVIEW ¤ 255
5
Review
1. (a)Sql=1i({l) { is an expression for a Riemann sum of a function i. {
l is a point in thelth subinterval [{l1> {l] and { is the length of the subintervals.
(b) See Figure 1 in Section 5.2.
(c) In Section 5.2, see Figure 3 and the paragraph beside it. 2. (a) See Denition 5.2.2.
(b) See Figure 2 in Section 5.2.
(c) In Section 5.2, see Figure 4 and the paragraph by it (contains “net area”). 3.See the Fundamental Theorem of Calculus after Example 9 in Section 5.3. 4. (a) See the Net Change Theorem after Example 5 in Section 5.4.
(b)Uww2
1 u(w) gw represents the change in the amount of water in the reservoir between time w1and timew2.
5. (a)U60120y(w) gw represents the change in position of the particle from w = 60 to w = 120 seconds. (b)U60120|y(w)| gw represents the total distance traveled by the particle from w = 60 to 120 seconds. (c)U60120d(w) gw represents the change in the velocity of the particle from w = 60 to w = 120 seconds. 6. (a)Ui({) g{ is the family of functions {I | I0= i}. Any two such functions differ by a constant.
(b) The connection is given by the Net Change Theorem:Udei({) g{ =U i({) g{e
difi is continuous.
7.The precise version of this statement is given by the Fundamental Theorem of Calculus. See the statement of this theorem and the paragraph that follows it at the end of Section 5.3.
8.See the Substitution Rule (5.5.4). This says that it is permissible to operate with theg{ after an integral sign as if it were a differential.
1.True by Property 2 of the Integral in Section 5.2. 3.True by Property 3 of the Integral in Section 5.2.
5.False. For example, leti({) = {2. ThenU01{2g{ =U01{ g{ = 12, buttU01{2g{ = t
1 3 =13.
7.True by Comparison Property 7 of the Integral in Section 5.2.
9.True. The integrand is an odd function that is continuous on[1> 1], so the result follows from Theorem 5.5.7(b).
TX.10
11. False. The functioni({) = 1@{4is not bounded on the interval[2> 1]. It has an innite discontinuity at { = 0, so it is not integrable on the interval. (If the integral were to exist, a positive value would be expected, by Comparison Property 6 of Integrals.)
13. False. For example, the function| = |{| is continuous on R, but has no derivative at { = 0.
15. False. Uedi({) g{ is a constant, so g g{
Ue di({) g{
= 0, not i({) [unless i({) = 0]. Compare the given statement carefully with FTC1, in which the upper limit in the integral is{.
1. (a) O6= S6
l=1i({l1) {
[{ =6 06 = 1]
= i({0) · 1 + i({1) · 1 + i({2) · 1 + i({3) · 1 + i({4) · 1 + i({5) · 1
2 + 3=5 + 4 + 2 + (1) + (2=5) = 8
The Riemann sum represents the sum of the areas of the four rectangles above the{-axis minus the sum of the areas of the two rectangles below the {-axis. (b) P6= 6 S l=1i({l) { [{ = 6 0 6 = 1]
= i({1) · 1 + i({2) · 1 + i({3) · 1 + i({4) · 1 + i({5) · 1 + i({6) · 1
= i(0=5) + i(1=5) + i(2=5) + i(3=5) + i(4=5) + i(5=5) 3 + 3=9 + 3=4 + 0=3 + (2) + (2=9) = 5=7
3. U01{ +1 {2g{ =U01{ g{ +U011 {2g{ = L1+ L2. L1can be interpreted as the area of the triangle shown in the gure andL2can be interpreted as the area of the quarter-circle. Area=12(1)(1) +14()(1)2 =12+4.
5. U06i({) g{ =U04i({) g{ +U46i({) g{ 10 = 7 +U46i({) g{ U46i({) g{ = 10 7 = 3
7. First note that eitherd or e must be the graph ofU0{i(w) gw, sinceU00i(w) gw = 0, and f(0) 6= 0. Now notice that e A 0 when f is increasing, and thatf A 0 when d is increasing. It follows that f is the graph of i({), e is the graph of i0({), and d is the graph ofU0{i(w) gw.
9. U128{3+ 3{2g{ =8 ·14{4+ 3 ·13{321=2{4+ {321=2 · 24+ 23 (2 + 1) = 40 3 = 37 11. U011 {9g{ ={ 101 {1010=1 101 0 =109
CHAPTER 5 REVIEW ¤ 257 13. ] 9 1 x 2x2 x gx = ] 9 1 (x 1@2 2x) gx =k2x1@2 x2l9 1= (6 81) (2 1) = 76
15.Letx = |2+ 1, so gx = 2| g| and | g| = 12gx. When | = 0, x = 1; when | = 1, x = 2. Thus, U1 0|(|2+ 1)5 g| = U2 1x5 1 2gx = 1 2 1 6x6 2 1=121(64 1) =6312 =214. 17. ] 5 1 gw
(w 4)2 does not exist because the functioni(w) =(w 4)1 2 has an innite discontinuity atw = 4;
that is,i is discontinuous on the interval [1> 5].
19.Letx = y3, sogx = 3y2gy. When y = 0, x = 0; when y = 1, x = 1. Thus, U1 0 y2cos(y3) gy = U1 0 cos x 1 3gx = 1 3 sin x10=1 3(sin 1 0) = 13sin 1. 21. ] @4 @4 w4tan w
2 + cos wgw = 0 by Theorem 5.5.7(b), since i(w) = w
4tan w
2 + cos wis an odd function. 23. ] 1 { { 2 g{ =] 1{ 1 2 g{ =] {12 2{+ 1 g{ = 1{ 2 ln |{| + { + F 25.Letx = {2+ 4{. Then gx = (2{ + 4) g{ = 2({ + 2) g{, so ] { + 2 {2+ 4{g{ = ] x1@21 2gx = 1 2· 2x1@2+ F = x + F =s{2+ 4{ + F.
27.Letx = sin w. Then gx = cos w gw, soUsin w cos w gw =Ux1gx= 1·12x2+ F =21 (sin w)2+ F.
29.Letx ={. Then gx = g{ 2{, so ] h{ {g{ = 2 ] hxgx = 2hx+ F = 2h{+ F.
31.Letx = ln(cos {). Then gx = sin {
cos { g{ = tan { g{, so U tan { ln(cos {) g{ = Ux gx = 1 2x2+ F = 12[ln(cos {)]2+ F. 33.Letx = 1 + {4. Thengx = 4{3g{, so ] {3 1 + {4g{ = 14 ] 1 xgx = 14ln|x| + F =14ln 1 + {4+ F.
35.Letx = 1 + sec . Then gx = sec tan g, so ]
sec tan 1 + sec g =
] 1
1 + sec (sec tan g) = ]
1
xgx = ln |x| + F = ln |1 + sec | + F.
37.Since{2 4 ? 0 for 0 { ? 2 and {2 4 A 0 for 2 ? { 3, we have{2 4 = ({2 4) = 4 {2for0 { ? 2 and {2 4 = {2 4 for 2 ? { 3. Thus, ]3 0 { 2 4g{ =] 2 0 (4 { 2) g{ +] 3 2 ({ 2 4) g{ =4{ {3 3 2 0+ {3 3 4{ 3 2 =8 8 3 0 + (9 12) 8 3 8 = 16 3 3 +163 =323 93 =233
TX.10
In Exercises 39 and 40, leti({)denote the integrand andI ({)its antiderivative (withF = 0). 39. Letx = 1 + sin {. Then gx = cos { g{, so
] cos { g{
1 + sin { = U
x1@2gx = 2x1@2+ F = 21 + sin { + F.
41. From the graph, it appears that the area under the curve| = {{ between { = 0 and{ = 4 is somewhat less than half the area of an 8 × 4 rectangle, so perhaps about13 or 14. To nd the exact value, we evaluate
U4 0 { { g{ =U04{3@2g{ =k2 5{5@2 l4 0= 2 5(4)5@2=645 = 12=8. 43. I ({) = ] { 0 w2 1 + w3gw I0({) = gg{ ] { 0 w2 1 + w3gw = { 2 1 + {3 45. Letx = {4. Then gx g{ = 4{3. Also, gjg{= gjgxgxg{, so j0({) = g g{ ] {4 0 cos(w 2) gw = g gx ] x 0 cos(w 2) gw · gx g{ = cos(x2) gxg{ = 4{3cos({8). 47. | = ] { { hw w gw = ] 1 { hw w gw + ] { 1 hw w gw = ] { 1 hw w gw + ]{ 1 hw w gw g| g{= gg{ #] { 1 hw w gw $ + g g{ ] { 1 hw w gw . Letx ={. Then g g{ ]{ 1 hw w gw = gg{ ]x 1 hw w gw = ggx ] x 1 hw w gw gx g{= h x x · 12{= h { { · 12{= h { 2{ , sog| g{= h { 2{ + h { {. 49. If1 { 3, then12+ 3 {2+ 3 32+ 3 2 {2+ 3 23, so 2(3 1) U3 1 {2+ 3 g{ 23(3 1); that is, 4 U3 1 {2+ 3 g{ 43.
51. 0 { 1 0 cos { 1 {2cos { {2 U01{2cos { g{ U01{2g{ =13{310=13 [Property 7]. 53. cos { 1 h{cos { h{ U01h{cos { g{ U01h{g{ = [h{]10= h 1
55. { = (3 0)@6 =12, so the endpoints are0,12,1,32,2, 52, and3, and the midpoints are14,34,54, 74, 94, and114. The Midpoint Rule gives
U3 0sin({3) g{ 6 S l=1i({l) { = 1 2 k sin1 4 3 + sin3 4 3 + sin5 4 3 + sin7 4 3 + sin9 4 3 + sin11 4 3l 0=280981.
CHAPTER 5 REVIEW ¤ 259 57.Note thatu(w) = e0(w), where e(w) = the number of barrels of oil consumed up to time w. So, by the Net Change Theorem,
U8
0 u(w) gw = e(8) e(0) represents the number of barrels of oil consumed from Jan. 1, 2000, through Jan. 1, 2008.
59.We use the Midpoint Rule withq = 6 and w = 24 06 = 4. The increase in the bee population was U24
0 u(w) gw P6= 4[u(2) + u(6) + u(10) + u(14) + u(18) + u(22)]
4[50 + 1000 + 7000 + 8550 + 1350 + 150] = 4(18,100) = 72,400 61.Letx = 2 sin . Then gx = 2 cos gand when = 0, x = 0; when = 2,x = 2. Thus,
U@2
0 i(2 sin ) cos g=
U2 0i(x) 1 2gx = 1 2 U2 0i(x) gx = 12 U2 0i({) g{ =12(6) = 3.
63.Area under the curve| = sinh f{ between { = 0 and { = 1 is equal to 1 U1
0 sinh f{ g{ = 1 1f
cosh f{10= 1 1
f(cosh f 1) = 1
cosh f 1 = f cosh f = f + 1. From the graph, we get f = 0 and f 1=6161, but f = 0 isn’t a solution for this problem since the curve | = sinh f{ becomes | = 0 and the area under it is 0. Thus, f 1=6161.
65.Using FTC1, we differentiate both sides of the given equation,U0{i(w) gw = {h2{+U0{hwi(w) gw, and get i({) = h2{+ 2{h2{+ h{i({) i({)1 h{= h2{+ 2{h2{ i({) = h2{(1 + 2{)
1 h{ .
67.Letx = i({) and gx = i0({) g{. So 2Udei({)i0({) g{ = 2Ui(d)i(e)x gx =x2i(e)i(d)= [i(e)]2 [i(d)]2.
69.Letx = 1 {. Then gx = g{, soU01i(1 {) g{ =U10i(x)(gx) =U01i(x) gx =U01i({) g{.
71.The shaded region has areaU01i({) g{ =13. The integralU01i1(|) g| gives the area of the unshaded region, which we know to be1 13 = 23. SoU01i1(|) g| =23.
PROBLEMS PLUS
1. Differentiating both sides of the equation{ sin { =U0{2i(w) gw (using FTC1 and the Chain Rule for the right side) gives sin { + { cos { = 2{i({2). Letting { = 2 so that i({2) = i(4), we obtain sin 2 + 2 cos 2 = 4i(4), so
i(4) =1
4(0 + 2 · 1) = 2.
3. Differentiating the given equation,U0{i(w) gw = [i({)]2, using FTC1 givesi({) = 2i({) i0({) i({)[2i0({) 1] = 0, so i({) = 0 or i0({) = 1
2. Sincei({) is never 0, we must have i0({) = 12andi0({) = 12
i({) = 1
2{ + F. To nd F, we substitute into the given equation to get
U{ 0 1 2w + F gw =1 2{ + F 2 1
4{2+ F{ = 14{2+ F{ + F2. It follows thatF2 = 0, so F = 0, and i({) =12{.
5. i({) = ] j({) 0 1 1 + w3gw, where j({) = ] cos { 0 [1 + sin(w
2)] gw. Using FTC1 and the Chain Rule (twice) we have
i0({) = s 1 1 + [j({)]3j 0({) = s 1 1 + [j({)]3[1 + sin(cos 2{)]( sin {). Now j 2 = ] 0 0 [1 + sin(w 2)] gw = 0, so i0 2 = 1 1 + 0(1 + sin 0)(1) = 1 · 1 · (1) = 1.
7. By l’Hospital’s Rule and the Fundamental Theorem, using the notationexp(|) = h|, lim {0 U{ 0(1 tan 2w)1@wgw { H
= lim{0(1 tan 2{)1 1@{ = exp lim {0 ln(1 tan 2{) { H = exp lim {0 2 sec2 2{ 1 tan 2{ = exp 2 · 12 1 0 = h2
9. i({) = 2 + { {2= ({ + 2)({ + 1) = 0 { = 2 or { = 1. i({) 0 for { [1> 2] and i({) ? 0 everywhere else. The integralUde(2 + { {2) g{ has a maximum on the interval where the integrand is positive, which is [1> 2]. So d = 1, e = 2. (Any larger interval gives a smaller integral since i({) ? 0 outside [1> 2]. Any smaller interval also gives a smaller integral sincei({) 0 in [1> 2].)
11. (a) We can split the integralU0q[[{]] g{ into the sumSq
l=1
kUl
l1[[{]] g{
l
. But on each of the intervals[l 1> l) of integration, [[{]] is a constant function, namely l 1. So the ith integral in the sum is equal to (l 1)[l (l 1)] = (l 1). So the original integral is equal toSq
l=1(l 1) = q1S
l=1l = (q 1)q2 .
261
TX.10
(b) We can writeUde[[{]] g{ =U0e[[{]] g{ U0d[[{]] g{.
NowU0e[[{]] g{ =U0[[e]][[{]] g{ +U[[e]]e [[{]] g{. The rst of these integrals is equal to12([[e]] 1) [[e]], by part (a), and since[[{]] = [[e]] on [[[e]] > e], the second integral is just [[e]] (e [[e]]). So
Ue
0 [[{]] g{ =12([[e]] 1) [[e]] + [[e]] (e [[e]]) = 12[[e]] (2e [[e]] 1) and similarly
Ud
0 [[{]] g{ =12[[d]] (2d [[d]] 1).
Therefore,Ude[[{]] g{ =12[[e]] (2e [[e]] 1) 12[[d]] (2d [[d]] 1).
13. LetT({) = ] { 0 S (w) gw = dw + e2w2+ f 3w3+ g4w4 { 0= d{ + e2{ 2+ f
3{3+ g4{4. ThenT(0) = 0, and T(1) = 0 by the given condition,d + e
2+ f3+ g4 = 0. Also, T0({) = S ({) = d + e{ + f{2+ g{3by FTC1. By Rolle’s Theorem, applied to T on [0> 1], there is a number u in (0> 1) such that T0(u) = 0, that is, such that S (u) = 0. Thus, the equation S ({) = 0 has a
root between0 and 1.
More generally, ifS ({) = d0+ d1{ + d2{2+ · · · + dq{qand ifd0+ d1
2 + d32 + · · · + dq + 1q = 0> then the equation S({) = 0 has a root between 0 and 1= The proof is the same as before:
LetT({) = ] {
0 S (w) gw = d0{ + d 1
2 {2+ d32{3+ · · · + dq + 1q {q. ThenT(0) = T(1) = 0 and T0({) = S ({). By Rolle’s Theorem applied toT on [0> 1], there is a number u in (0> 1) such that T0(u) = 0, that is, such that S (u) = 0.
15. Note that g g{ ] { 0 ] x 0 i(w) gw gx =] { 0 i(w) gw by FTC1, while g g{ ] { 0 i(x)({ x) gx = gg{ {]{ 0 i(x) gx gg{ ] { 0 i(x)x gx =U{0i(x) gx + {i({) i({){ =U{0i(x) gx Hence,U{0i(x)({ x) gx =U{0Ux0i(w) gwgx + F. Setting { = 0 gives F = 0.
17. lim q 1 qq + 1+ 1 qq + 2 + · · · + 1 q q + q = lim q 1 q u q q + 1+ u q q + 2+ · · · + u q q + q = lim q 1 q # 1 s 1 + 1@q+ 1 s 1 + 2@q+ · · · + 1 1 + 1 $ = lim q 1 q q [ l=1 i l q wherei({) = 1 1 + { = ] 1 0 1 1 + {g{ = 21 + {10= 22 1