Solutions to the
2005 AP Calculus AB (Form B) Exam
Free Response Questions

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

Problem 1.

In[1]:=

f[x_] = 1 + Sin[2x]

Out[1]=

1 + Sin[2 x]

In[2]:=

g[x_] = ^(x/2)

Out[2]=

^(x/2)

In[3]:=

FindRoot[f[x] g[x], {x, 1}]

Out[3]=

{x1.13569}

In[4]:=

a = x/.%

Out[4]=

1.13569

a)

In[5]:=

∫_0^a (f[x] - g[x]) x

Out[5]=

0.429101

b)

In[6]:=

π ∫_0^a ((f[x])^2 - (g[x])^2) x

Out[6]=

4.26655

c)

In[7]:=

π/2∫_0^a (1/2 (f[x] - g[x]))^2x

Out[7]=

0.0776573

Problem 2.

In[8]:=

W[t_] = 95 t^(1/2) (Sin[t/6])^2

Out[8]=

95 t^(1/2) Sin[t/6]^2

In[9]:=

R[t_] = 275 (Sin[t/3])^2

Out[9]=

275 Sin[t/3]^2

a)

In[10]:=

W[15] - R[15]

Out[10]=

95 15^(1/2) Sin[5/2]^2 - 275 Sin[5]^2

In[11]:=

N[%]

Out[11]=

-121.09

When t = 15, The difference is negative, so water is being removed from the tank at a higher rate than it is being pumped in, so the amount of water in the tank at that time is decreasing.

b)

The amount of water in the tank at time t is A[t] = 1200 + ∫_0^t (W[τ] - R[τ]) τ.  Integrating numerically, we find that A[18] is

In[12]:=

1200 + NIntegrate[(W[τ] - R[τ]), {τ, 0, 18}]

Out[12]=

1309.79

To the nearest whole number, this is 1310 gallons.

c)

We have A '[t] = W(t) - R(t).  We therefore seek the zeros of W[t] - R[t].  From the graph,

In[13]:=

Plot[W[t] - R[t], {t, 0, 18}]

[Graphics:HTMLFiles/index_31.gif]

Out[13]=

⁃Graphics⁃

we see that these zeros are near t = 0, t = 6.5, and t = 13..  The first of these is at t = 0.  We solve numerically for the second and the third.

In[14]:=

FindRoot[W[t] - R[t] 0, {t, 6.5}]

Out[14]=

{t6.49484}

In[15]:=

r2 = t/.%

Out[15]=

6.49484

In[16]:=

FindRoot[W[t] - R[t] 0, {t, 13}]

Out[16]=

{t12.9748}

In[17]:=

r3 = t/.%

Out[17]=

12.9748

We calculate A for each of these and for t = 18.  First we note that A[0] = 1200.

In[18]:=

A[t_] := 1200 + NIntegrate[(W[τ] - R[τ]) , {τ, 0, t}]

In[19]:=

A[r2]

Out[19]=

525.242

In[20]:=

A[r3]

Out[20]=

1697.44

In[21]:=

A[18]

Out[21]=

1309.79

The amount of water in the tank is minimal when t ~ 6.495.

d)

With A and R defined as above, we must solve A(18) - ∫_18^kR(τ) τ = 0 for k.

Problem 3.

In[22]:=

v[t_] = Log[t^2 - 3 t + 3]

Out[22]=

Log[3 - 3 t + t^2]

a)

Acceleration is

In[23]:=

v '[t]

Out[23]=

(-3 + 2 t)/(3 - 3 t + t^2)

At t = 4, this is

In[24]:=

v '[4]

Out[24]=

5/7

b)

The particle changes direction where v changes sign.  This can occur only where v(t) = 0, or where t^2 - 3 t + 3 = 1.  Thus, t^2 - 3 t + 2 = 0, or (t - 1) (t - 2) = 0.  v(t) = 0, therefore, when t = 1 and when t = 2.  Now t^2 - 3 t + 2 has a graph which is a parabola opening upward.  Consequently, v(t) > 0 when t<1 and when t>2.  v(t) <0 when 1<t<2.  This means that the particle changes direction at t = 1 and at t = 2.

c)

The position of the particle at time t is x(t) = 8 + ∫_0^tv(τ) τ.  When t = 2, this is

In[25]:=

8 + ∫_0^2v[t] t

Out[25]=

4 + (3^(1/2) π)/2 + Log[27]/2

Numerically, this is

In[26]:=

N[%]

Out[26]=

8.36862

d)

Average speed on the interval [0, 2]  is 1/2∫_0^2 | v(τ) | τ.  Using what we have learned about the sign of v in part b) above, we find that the required average speed is;

In[27]:=

1/2 (∫_0^1v[τ] τ - ∫_1^2v[τ] τ)

Out[27]=

1/2 (-π/(2 3^(1/2)) + (3 Log[3])/2)

Numerically, this is

In[28]:=

N[%]

Out[28]=

0.370509

Problem 4.

a)

g(-1) = ∫_ (-4)^xf(t) d t is the negative of the area of the trapezoid defined by the x-axis, the vertical lines x = -4 and x = -1 and the line segment joining the points (-4, -3) and (-1, -2).  Thus, g(-1) = -1/2 (3 + 2) · 3 = -15/2.   By the Fundamental Theorem of Calculus, g ' (x) = f(x), so g ' (-1) = -2.  Because g ' (x) = f(x), it follows that g'' (x) = f ' (x), iff the latter exists.  Because of the corner in the graph of f(x) at the point corresponding to x = -1, f ' (-1) does not exist.  (In fact, f_ -' (-1) = 1/3, while f_ +' (-1) = 2.)  Thus, g'' (-1) does not exist.

b)

The inflection points of g occur at the values of x for which g ' = f has relative extrema.   But f has just one relative extremum in the interval (-4, 3), at x = 1--as is evident from the graph.  Thus the only relative extremum for g is to be found at x = 1.

c)

If h(x) = ∫_x^3f(t) t = -∫_3^xf(t) t, then the zeros of h are to be found at those values of x for which the graph of f has just as much area above the x-axis as below in the interval [x, 3].  These values are evidently x = -1 an x = 1.  And, of course, we shouldn't forget the trivial solution x = 3.

d)

With h given as in part c), above, we have by the Fundamental Theorem of Calculus h ' (x) = -f(x).  Therefore, h is decreasing on the closures of those intervals for which -f(x) < 0, or, equivalently, where f ' (x) > 0.  From the graph, it is evident that h is decreasing on [0, 2].

Problem 5.

a)

By implicit differentiation, we have 2 y y ' = y + x y ', so that (2 y - x) y ' = y, or y ' = y/(2 y - x), provided that 2 y - x ≠0.  But 2y - x = 0 implies that x = 2 y, and, substituting this in the original equation, we find that y^2 = 2 + (2y) y, or y^2 + 2 = 0.  This is not possible for real y, so we conclude that y ' = y/(2y - x) whenever (x, y) lies on the curve y^2 = 2 + x y.

b)

If y ' = 1/2, then 1/2 = y/(2y - x), or 2y - x = 2y.  Thus x = 0.  Now if (x, y) lies on the curve y^2 = 2 + x y and x = 0, then y^2 = 2.  The required points are thus (0, 2^(1/2)) and (0, -2^(1/2)).

c)

If the tangent line to y^2 = 2 + x y is horizontal at a point (x_0, y_0), then we must have 0 = y ' (x_0) = y_0/(2y_0 - x_0), and this implies that y_0 = 0.   But then 0 = y_0^2 = 2 + x_0y_0 = 2 + 0 = 2, or 0 = 2.  The contradiction shows that there can be no point on the curve y^2 = 2 + x y where the tangent line is horizontal.

d)

We differentiate the equation for the curve implicitly again, but this time we treat x and y both as functions of t and the prime means differentiation with respect to t.  This gives 2y y ' = x ' y + x y '.  Putting y = 3, y ' = 6 in both the original equation and the derived equation leads to the system 9 = 2 + 3 x; 36 = 3 x ' + 6x .  From the first of these two, we find that x = 7/3.  Substituting this for x in the second equation, we find that 36 = 3 x ' + 14, whence x ' = 22/3.

Problem 6.

a)

[Graphics:HTMLFiles/index_181.gif]

b)

We are given a solution f of the differential equation with f(-1) = 2.  Hence f ' (-1) = -((-1) (2)^2)/2 = 2.  The equation of the line tangent to the graph of y = f(x) at the point (-1, 2) is therefore y = 2 + 2 (x + 1), or y = 2 x + 4.

c)

We may rewrite the differential equation as y ' (x)/[y(x)]^2 = -x/2.  Thus, ∫_ (-1)^xy ' (t)/[y(t)]^2 t = -∫_ (-1)^x (t/2) t, or [1/y(-1) ] - [1/y(x)] = (1/4) - (x^2/4).  But y(-1) = 2, so this equation becomes (1/y) = (1/2) -[(1 - x^2)/4], which simplifies to y = 4/(1 + x^2).


Created by Mathematica  (March 24, 2010)