Math 132 Summer 1998

Exam 1

Instructions: Only the right side pages will be graded . Do all scratch work on the left side and then neatly present your solution on the right. Your solution must include not only the answer but also all the work that is necessary to obtain the answer.

1. Find the area of the region bounded by the curves [Maple Math] and [Maple Math] .

Answer:

> plot( [x,x^2], x=0..1, color = [black,navy]);

[Maple Plot]

> Area := int( x - x^2 , x = 0 .. 1);

[Maple Math]

2. Find the area of the region bounded by [Maple Math] and [Maple Math] .

Answer:

> solve( (x/2)^2 = 8 - x , x );

[Maple Math]

> with(plots):

> implicitplot( {y=x/2,y^2=8-x} , x = - 8 .. 8 , y = -4 .. 2 );

[Maple Plot]

> Area := int( (8-y^2) - 2*y , y = -4 .. 2 );

[Maple Math]

3. What is the average value of [Maple Math] for [Maple Math] in the interval [Maple Math] ?

Answer:

> Average := 1/(sqrt(3) - 1/sqrt(3))*Int(1/(1+x^2) ,
x = 1/sqrt(3) .. sqrt(3) );

[Maple Math]

> value(Average);

[Maple Math]

4. The graph of [Maple Math] for [Maple Math] in the interval [Maple Math] is rotated about the x-axis. What is the volume of the solid of revolution?


Answer:

> implicitplot( y = sqrt(sin(x)) , x = 0 .. Pi , y = 0 .. 1);

[Maple Plot]

> Volume := Int( Pi*sqrt(sin(x))^2 , x = 0 .. Pi );

[Maple Math]

> value(Volume);

[Maple Math]

5. The region in the first quadrant that lies under [Maple Math] and above [Maple Math] is rotated about the y-axis. What is the volume of the solid of revolution?

Answer:

> plot( [4*sqrt(x),(x/2)^3] , x = 0 .. 4 , color = [black,navy] );

[Maple Plot]

Disk-Washer Method:

> solve( y = (x/2)^3 , x );

[Maple Math]

> solve( y = 4*sqrt(x) , x );

[Maple Math]

> Volume := Int( Pi*(2*y^(1/3))^2 - Pi*(1/16*y^2)^2 , y = 0 .. 8);

[Maple Math]

> Volume := value(Volume);

[Maple Math]

> simplify(Volume);

[Maple Math]

Cylindrical Shell Method:

> Volume := Int( 2*Pi*x*( 4*sqrt(x)-(x/2)^3 ), x = 0 .. 4 );

[Maple Math]

> value(Volume);

[Maple Math]

6. The shaded region in the accompanying figure has a boundary that consists of two line segments and an arc of the circle centered at (0,3). If this figure is rotated about the y-axis, then what is the volume of the resulting solid of revolution ?

[Maple Metafile]

Answer:

Cylindrical Shell Method:

> solve( x^2 + (y-3)^2 = 1 , y );

[Maple Math]

> Volume := Int( 2*Pi*x*( (3+(1-x^2)^(1/2))-3*x ), x = 0 .. 1 );

[Maple Math]

> value(Volume);

[Maple Math]

7. The "triangular" region bounded by [Maple Math] , [Maple Math] , and [Maple Math] is rotated about [Maple Math] . Express the volume of the solid of revolution by means of an integral. You do not need to evaluate the integral.

Answer:

[Maple Metafile]

Disk-Washer Method:

> Volume := Int( Pi*2^2 - Pi*(2-y^(1/3))^2 , y = 0 .. 8 );

[Maple Math]

> simplify(value(Volume));

[Maple Math]

Cylindrical Shell Method:

> Volume := Int( 2*Pi*(8-x^3)*(2-x) , x = 0 .. 2);

[Maple Math]

> value(Volume);

[Maple Math]

8. A spring is stretched [Maple Math] meters beyond its equilibrium position. The number [Maple Math] is not noted but it is noted that a [Maple Math] force is needed to maintain the spring at that position. It is also noted that [Maple Math] of work must be done to stretch the spring an additional [Maple Math] (that is, from the unrecorded stretched position). Find the value of the spring constant and determine the value of [Maple Math] .

Answer:

> equation1 := 3 = k*xi;

[Maple Math]

> equation2 := 5 = int(k*x , x = xi .. xi+1);

[Maple Math]

> solve( { equation1 , equation2 } , { k , xi } );

[Maple Math]

9. A [Maple Math] cable is suspended from the top of a building. The cable is uniform and weighs [Maple Math] per foot. A bucket of cement is attached to the end of the cable. The cable is cranked so that the bucket rises [Maple Math] . If doing so requires [Maple Math] work, then how much does the bucket of cement weigh?

Answer:

Let [Maple Math] be the unknown weight of the bucket of cement. We then have the following work equation:

> work_equation := 2000 = W*20 + 10*20 + int( x , x = 0 .. 20);

[Maple Math]

> solve( work_equation , W );

[Maple Math]

10. Evaluate [Maple Math] . (You must show your work. A calculator-generated numerical answer is not acceptable.)

Answer:

> with(student):

Warning, new definition for D

> J := intparts( Int( x*sin(x) , x = 0 .. Pi ) , x );

[Maple Math]

> value(J);

[Maple Math]

11. Evaluate [Maple Math] . (You must show your work. A calculator-generated numerical answer is not acceptable.)

Answer:

> with(student):

Warning, new definition for D

> J := Int( ln(x^3) , x = 1 .. exp(1)) ;

[Maple Math]

> expand(J);

[Maple Math]

>

>

> J := intparts( 3*Int(ln(x),x = 1 .. exp(1)) , ln(x) );

[Maple Math]

> value(J);

[Maple Math]

12. Suppose that [Maple Math] is a constant different from [Maple Math] . Evaluate [Maple Math] .

Answer:

> with(student):

Warning, new definition for D

> J := intparts( Int( x^n*ln(x) , x) , ln(x) );

[Maple Math]

> value(J);

[Maple Math]