Solutions to the
2000 AP Calculus AB Exam
Free Response Questions

Louis A. Talman
Department of Mathematical & Computer Sciences
Metropolitan State College of Denver

Problem 1.

a.

We must first find the point in the first quadrant where ^(-x^2) = 1 - cos x.  We'll call it b:

b = x/.FindRoot[^(-x^2) 1 - Cos[x], {x, 1}]

0.941944

The area between the two curves is ∫_0^b (^(-x^2) - (1 - cos x)) x.  We integrate numerically:

NIntegrate[^(-x^2) - (1 - Cos[x]), {x, 0, b}]

0.590962

b.

By the method of washers, and integrating numerically, the volume generated when R is revolved about the x-axis is π ∫_0^b[(^(-x^2))^2 - (1 - cos x)^2] x:

. π NIntegrate[(^(-x^2))^2 - (1 - Cos[x])^2, {x, 0, b}]

1.74661

c.

Integrating numerically, we obtain the volume of the solid described as ∫_0^b (^(-x^2) - (1 - cos x))^2x.

NIntegrate[(^(-x^2) - (1 - Cos[x]))^2, {x, 0, b}]

0.461064

Problem 2

a.

From the graph of runner A's velocity, which is given, we see that her velocity at time t = 2 is 20/3 meters per second.  Runner B's velocity at time t is given as (24 t)/(2 t + 3), so runner B's velocity at t = 2 is 48/7 meters per second.

b.

Acceleration is the derivative, taken with respect to time, of velocity.  In the case of runner A, at time t = 2, the slope of the velocity curve is 10/3, so her acceleration at time t = 2 is 10/3 meters per second per second.  

D[(24 t)/(2 t + 3), t]/.t2

72/49

Runner B's acceleration at t = 2 is 72/49 meters per second per second.

c.

Distance travelled is the integral of velocity.  Hence, reasoning from the graph of runner A's velocity, we find that runner A covered 1/2 · 3 · 10 + 7 · 10 = 85 meters over the interval 0≤t≤10.  

∫_0^10 (24 t)/(2 t + 3) t

6 (20 - 3 Log[23] + Log[27])

N[%]

83.3361

Runner B covered 6 (20 - 3 Log[23] + Log[27]) meters, or about 83.336 meters, in the same time interval.

Problem 3.

a.

According to the First Derivative Test, a differentiable function attains a relative minimum at a point where its derivative changes sign from negative to positive as the independent variable increases.  There is just one such point for the derivative whose graph is shown:  x = -1.  Consequently, f has a relative minimum at x = -1.

b.

According to the First Derivative Test, a differentiable function attains a relative maximum at a point where its derivative changes sign from positive to negative as the independent variable increases.  There is just one such point for the derivative whose graph is shown:  x = -5.  Consequently, f has a relative minimum at x = -5.

c.

The second derivative is negative throughout intervals where f ' has a tangent line that slopes downward to the right.  There are three such intervals:  FormBox[Cell[(-7,-3)], TraditionalForm], (2, 3), and (3, 5).  (Note that the vertical tangent at x = 3 is a point where f'' is undefined.)

d.

By the Fundamental Theorem of Calculus, f[t] = ∫_ (-7)^tf '[x] x.  Thus, f[t]  gives the algebraic sum of the signed area that is bounded by the x-axis, the curve y = f '[x], and the vertical lines x = -7 and x = t.  (We observe the usual convention that area above the horizontal axis is positive area, while area below the horizontal axis is negative area.)  It is evident from the picture that the maximal such area, taking signs into account, is that for which t = 7, so the absolute maximum for f[t] occurs at t = 7.

Problem 4

a.

Water leaks out of the tank at the rate of (t + 1)^(1/2) gallons per minute, so the tank loses ∫_0^3 (t + 1)^(1/2) t = 2/3 (t + 1)^(3/2) Underoverscript[|, 0, arg3] = 14/3 gallons during the interval 0≤t≤3.

b.

During the interval 0≤t≤3, a total of 14/3 gallons of water have leaked from the tank, while 3 · 8 = 24 gallons have entered the tank.  Because there were 30 gallons of water in the tank at time t = 0, the tank contains 30 + 24 - 14/3 = 148/3 gallons when t = 3.

c.

The amount A[t] of water in the tank at time t is A[t] = 30 + 8 t - ∫_0^t (τ + 1)^(1/2) τ.

d.

We have A '[t] = 8 - (t + 1)^(1/2).  This vanishes when t = 63, is positive for 0<t<63, and is negative for 63<t<120.  It follows that A[t] is maximal when t = 63, because A is increasing on [0, 63] and decreasing on [63, 120].

Problem 5

a.

Differentiating both sides of the equation x y^2 - x^3y = 6 implicitly, we obtain y^2 + 2 x y y ' - 3 x^2y - x^3y ' = 0, whence (2 x y - x^3) y ' = 3 x^2y - y^2.  Dividing both sides of the latter equation by 2 x y - x^3, which we must assume to be non-zero, we obtain y ' = (3 x^2y - y^2)/(2 x y - x^3), as desired.

b.

Setting x = 1 in the original equation, we obtain y^2 - y = 6, whence y = 3 or y = -2.  There are therefore two points with x-coordinate 1; they are (1, 3) and (1, -2).  At (1, 3), we have FormBox[RowBox[{y ',  , =,  , RowBox[{(3 · 1^2 · 3 - 3^2)/(2 · 1 · 3 - 1^3), =,  , RowBox[{0/5, =,  , RowBox[{0, Cell[]}]}]}]}], TraditionalForm], so that an equation of the line tangent to the curve at (1, 3) is y = 3.  At (1, -2), we have y ' = (3 · 1^2 · (-2) - (-2)^2)/(2 · 1 · (-2) - 1^3) = -10/-5 = 2.  An equation of the line tangent to the curve at (1, -2) is therefore y = -2 + 2 (x - 1), or y = 2 x - 4.

c.

We treat y as the independent variable in the original equation, and letting the prime denote differentiation with respect to y, implicit differentiation now gives us x ' y^2 + 2 x y - 3 x^2x ' y - x^3 = 0, whence x ' = (x^3 - 2 x y)/(y^2 - 3 x^2y).  At a point with a vertical tangent, x ' must vanish, so we must have x^3 - 2 x y = 0.  Thus, x = 0 or y = 1/2x^2. But x y^2 - x^3y = 6, so x = 0 is not possible.  On the other hand, substituting y = 1/2x^2 in the original equation yields 1/4x^5 - 1/2x^5 = 6, or x^5 = -24.  There is thus a vertical tangent at the point (-24^(1/5), 18^(1/5)).

Problem 6

a.

If y/x = (3 x^2)/3^(2y), then ∫_0^x ^(2 y[ξ]) y '[ξ] ξ = ∫_0^x3 ξ^2ξ, or 1/2^(2 y[ξ]) Underoverscript[|, 0, arg3] = ξ^3Underoverscript[|, 0, arg3].  Thus, 1/2^(2 y[x]) - 1/2^(2y[0]) = x^3, or y[x] = 1/2ln (2 x^3 + ^(2y[0])).  Our initial condition y[0] = 1/2 therefore leads us to f[x] = 1/2ln(2 x^3 + ).

b.

The domain of the function f of part a) above is the set {x ∈ : 2x^3 +  > 0} = {x∈ : x> -(/2)^(1/3)}.  Because the equation v = 2 x^3 +  has a solution for every v>0, the range of f is .


Created by Mathematica  (June 1, 2004)