Math 1322 Spring 1999

Exam 1

Calculator Usage: You may use any approved calculator (including the TI 81, 82, 83, and 85). Your calculator may evaluate integrals numerically but you will not receive credit for any answers that are so obtained. For example, a calculator may be used to obtain the value -3.977627090 on Problem 10. No points will be awarded for numerical answers unless the appropriate work leading up to the answer is included. For each problem, the exact answer to the question is required. Exact answers need not be decimalized. Sums may be left as sums.

1.

If [Maple Math] and [Maple Math] are both antiderivatives of the same function, if [Maple Math] , [Maple Math] , and [Maple Math] , then what is [Maple Math] ?

Solution

> G := x -> F(x) + C;

[Maple Math]

> eqn := G(1) = 11;

[Maple Math]

> C := solve( subs( F(1) = 2, eqn) , C );

[Maple Math]

> G(3);

[Maple Math]

> subs( F(3) = 7 , % );

[Maple Math]

2.

Evaluate [Maple Math] .

Solution

> Int(1/x,x = 1 .. exp(1)) =
subs( x = exp(1), int(1/x,x))-subs( x = 1, int(1/x,x));

[Maple Math]

> simplify( % );

[Maple Math]

3.

If [Maple Math] is an antiderivative of [Maple Math] , then what is the rate of change of [Maple Math] at [Maple Math] ?

Solution:

> F := t -> Int( (7 + t^3)/(1 + t^2) , t);

[Maple Math]

> D(F)(2);

[Maple Math]

or

> F := t -> Int( (7 + t^3)/(1 + t^2) , t);

[Maple Math]

> F := t -> Int( (7 + t^3)/(1 + t^2) , t );

[Maple Math]

> diff( F(t) , t );

[Maple Math]

> subs( t = 2 , % );

[Maple Math]

4.

Over the course of a 2 hour period a water heater leaked at the following rates

[Maple OLE 2.0 Object]

Estimate the total leakage (in liters) by using the Midpoint Rule with 4 subintervals each of length 30 minutes.

Solution:

The plotted points are

> points_on_graph := [ [0,0] , [15,1/16] , [30 , 2/16] ,
[45,3/16] , [60,3/16] , [75,4/16] ,
[90,3/16], [105,1/16] , [120,0] ]:

> plot( [ points_on_graph ] , style = POINT, symbol = CIRCLE );

[Maple Plot]

When we add the Midpoint Rule approximating rectangles we obtain:

[Maple OLE 2.0 Object]

The apploximate leakage in liters is

> (1/16*liters/minute + 3/16*liters/minute
+ 4/16*liters/minute + 1/16*liters/minute)*(30*minute);

[Maple Math]

5.

Suppose that [Maple Math] is approximated by a Riemann sum [Maple Math] where [Maple Math] is the width of the subintervals and where [Maple Math] is the right endpoint of the j th subinterval. Each summand of A may be interpreted as the area of a rectangle. What is the area of the third rectangle (counting from the left endpoint) ?

Solution:

> restart:
with(student):

> f := x -> exp(8*x^2);

[Maple Math]

> xi := seq( j*((1 - 0)/4) , j = 1 .. 4);

[Maple Math]

> Area_of_third_rectangle := f(xi[3])*(xi[3]-xi[2]);

[Maple Math]

6.

If [Maple Math] and if [Maple Math] is the antiderivative of [Maple Math] for which [Maple Math] , then what is [Maple Math] ?

Solution:

> restart:

> f := x -> sqrt(x)*(x^3-x);

[Maple Math]

> F := x ->subs( u = x , int( f(u) , u )) + C;

[Maple Math]

> C := solve( F(0) = -2 , C );

[Maple Math]

> F(1);

[Maple Math]

7.

A particle moves along a coordinate axis in such a way that its velocity [Maple Math] at time [Maple Math] is given by the equation [Maple Math] . If the coordinate of the particle is 3 at time [Maple Math] , then what is its position at time [Maple Math] ?

Solution:

> restart:

> v := t -> 4*t^3+t^2+1;

[Maple Math]

> p := int(v(t),t)+C;

[Maple Math]

> C := solve( 3 = subs( t = 1, p ) , C );

[Maple Math]

> subs( t = 2 , p );

[Maple Math]

8.

The area under the graph of [Maple Math] and over the interval [0,8] is approximated by the Riemann sum [Maple Math] where [Maple Math] is the midpoint of the j 'th subinterval. What is the approximation?

Solution:

> restart:
with(student):

> f := x -> x/(x+1);

[Maple Math]

> middlebox( f(x), x = 0..8 , 4);

[Maple Plot]

> middlesum(f(x), x = 0..8 , 4);

[Maple Math]

> value( % );

[Maple Math]

9.

If [Maple Math] , then what is [Maple Math] (the derivative of [Maple Math] at 2 )?

Solution:

> F := (x) -> Int(t^3/(1+t^2),t = 1 .. x);

[Maple Math]

> D(F)(x);

[Maple Math]

> D(F)(2);

[Maple Math]

10.

Evaluate [Maple Math] .

Solution:

> int(1/x-exp(x), x );

[Maple Math]

> subs( x = 2 ,% ) - subs( x = 1 ,% );

[Maple Math]

> simplify( % );

[Maple Math]

11.

If [Maple Math] for [Maple Math] in the interval [2,4] and if [Maple Math] , then what is [Maple Math] ?

Solution:

> restart:

> int(f(x),x = 0 .. 2) = int(f(x),x = 0 .. 4) - int(f(x),x = 2 .. 4);

[Maple Math]

> subs( int(f(x),x = 0 .. 4) = 14 , % );

[Maple Math]

> lhs( % ) = subs( f(x) = 4 , rhs( % ) );

[Maple Math]

> simplify( % );

[Maple Math]

12.

There are constants [Maple Math] and [Maple Math] such that [Maple Math] is an antiderivative of [Maple Math] . Find the constants [Maple Math] and [Maple Math] .

Solution:

> solve( identity( diff( a*x*ln(2*x)+b*x , x ) = ln(2*x) , x) , {a,b} );

[Maple Math]

13.

Evaluate [Maple Math] .

Solution:

> restart:
with(student):

> J := Int(x/sqrt(x^2+1),x);

[Maple Math]

> K := changevar( u = x^2 + 1 , J , u );

[Maple Math]

> answer := subs( u = x^2 + 1 , value(K) ) + C;

[Maple Math]

14.

Suppose that [Maple Math] where [Maple Math] is the function whose graph appears below:

[Maple OLE 2.0 Object]

Describe the interval(s) on which [Maple Math] is increasing.

Solution:

[Maple Math] is increasing on the interval(s) on which its derivative, namely [Maple Math] , is positive. Therefore [Maple Math] is increasing on the interval (1,2) .

15.

Suppose that [Maple Math] and [Maple Math] are as in the preceding problem. Describe the relative extrema (maxima and minima) of [Maple Math] .

Solution:

[Maple Math] has a relative maximum at a point at which its graph changes over from rising to falling. At such a point the derivative [Maple Math] of [Maple Math] changes from positive to negative. Therefore [Maple Math] has a local maximum at [Maple Math] .

[Maple Math] has a relative minimum at a point at which its graph changes over from falling to rising. At such a point the derivative [Maple Math] of [Maple Math] changes from negative to positive. Therefore [Maple Math] has a local maximum at [Maple Math] .

16.

Evaluate [Maple Math] .

Solution:

> restart:
with(student):

> J := Int(exp(x)/(exp(x)+1),x = 0 .. b);

[Maple Math]

> K := changevar( u = exp(x) + 1 , J , u );

[Maple Math]

> value( K );

[Maple Math]

> assume( b , real);

> combine( % , ln);

[Maple Math]

17.

If [Maple Math] , then find [Maple Math] .

Solution:

> restart:

> A := int(D(g)(x),x = a .. b);

[Maple Math]

> g := (x) -> x^3*sin(x)/(x+1);
a := 0;
b := 1;

[Maple Math]

[Maple Math]

[Maple Math]

> A;

[Maple Math]

18.

Evaluate [Maple Math] .

Solution:

> restart:
with(student):

> J := Int(sin(x/3+2/3),x = 0 .. b);

[Maple Math]

> K := changevar( u = x/3 + 2/3 , J , u );

[Maple Math]

> value( % );

[Maple Math]

19.

If [Maple Math] then evaluate [Maple Math] .

Solution:

> restart:

> A := D( x -> int( f(t) , t = v(x) .. u(x) ))(x);

[Maple Math]

> u := x -> x^2;
v := x -> x;
f := t -> sqrt( 1 + t^3 );

[Maple Math]

[Maple Math]

[Maple Math]

> A;

[Maple Math]

20.

Evaluate [Maple Math]

Solution:

> J :=
Int(theta*cos(theta^2)*sqrt(sin(theta^2)),theta = 0 .. sqrt(Pi/2));

[Maple Math]

> with(student):

> K := changevar( u = sin(theta^2) , J , u );

[Maple Math]

> value(K);

[Maple Math]


Brian E. Blank
Department of Mathematics
Washington University in St. Louis
St. Louis, MO 63130
e-mail: brian@math.wustl.edu

Last Updated: February 04 1999

Copyright © 1999 Washington University. All rights reserved.