Callahan:
    ch 3.5: 12, 16, 20
    ch 3.6: 2 (d) (f) (g), 3, 6, 11, 14
    ch 4.2: 1-5,17-23

[Graphics:Images/CalcWk5_gr_1.gif]

12)  What is the slope of the graph of [Graphics:Images/CalcWk5_gr_2.gif] at [Graphics:Images/CalcWk5_gr_3.gif]?

[Graphics:Images/CalcWk5_gr_4.gif]
[Graphics:Images/CalcWk5_gr_5.gif]
[Graphics:Images/CalcWk5_gr_6.gif]

16)  If the radius of a spherical balloon is [Graphics:Images/CalcWk5_gr_7.gif] inches, its volume is [Graphics:Images/CalcWk5_gr_8.gif] cubic inches.

    a) At what rate does the volume increase, in cubic inches per inch, when the radius is 4 inches?

[Graphics:Images/CalcWk5_gr_9.gif]
[Graphics:Images/CalcWk5_gr_10.gif]
[Graphics:Images/CalcWk5_gr_11.gif]

    b) Write the microscope equation for the volume when [Graphics:Images/CalcWk5_gr_12.gif] inches.

[Graphics:Images/CalcWk5_gr_13.gif]
[Graphics:Images/CalcWk5_gr_14.gif]

    c) When the radius is 4 in., approximately how much does it increase if the volume is increased by 50 [Graphics:Images/CalcWk5_gr_15.gif]?

[Graphics:Images/CalcWk5_gr_16.gif]

    d) Suppose someone is inflating the balloon at the rate of 10 cubic inches of air per second.  If the radius is 4 inches, at what rate is it increasing, in inches per sec.?

[Graphics:Images/CalcWk5_gr_17.gif]
[Graphics:Images/CalcWk5_gr_18.gif]
[Graphics:Images/CalcWk5_gr_19.gif]
[Graphics:Images/CalcWk5_gr_20.gif]
[Graphics:Images/CalcWk5_gr_21.gif]
[Graphics:Images/CalcWk5_gr_22.gif]

20)  A steel ball is rolling along a 20-inch-long straight track so that its distance from the midpoint of the track is [Graphics:Images/CalcWk5_gr_23.gif] inches after [Graphics:Images/CalcWk5_gr_24.gif] have passed.

    a) Find a formula for the velocity of the ball after [Graphics:Images/CalcWk5_gr_25.gif].  What is happening when the velocity is positive; negative; zero?  Describe the motion of the ball.

[Graphics:Images/CalcWk5_gr_26.gif]

    When the velocity is positive the ball is moving to the right.

    When the velocity is negative the ball is moving to the left.

    When the velocity is zero the ball is pausing instantaneously as it changes direction at the extreme left or right..

    b) How far from the midpoint of the track does the ball get?

    Where the ball changes direction it also reaches its maximum distance from the center point.  This is where the velocity is zero:

[Graphics:Images/CalcWk5_gr_27.gif]
[Graphics:Images/CalcWk5_gr_28.gif]

    c) How fast is the ball moving at the midpoint of the track?

    The midpoint of the track is where [Graphics:Images/CalcWk5_gr_29.gif]:

[Graphics:Images/CalcWk5_gr_30.gif]
[Graphics:Images/CalcWk5_gr_31.gif]

    This is the maximum speed because [Graphics:Images/CalcWk5_gr_32.gif] reaches its maximum [Graphics:Images/CalcWk5_gr_33.gif] value at [Graphics:Images/CalcWk5_gr_34.gif].

[Graphics:Images/CalcWk5_gr_35.gif]

3.6: 2 (d) (f) (g))  Find the derivatives of the following:

    d) [Graphics:Images/CalcWk5_gr_36.gif]

[Graphics:Images/CalcWk5_gr_37.gif]
[Graphics:Images/CalcWk5_gr_38.gif]
[Graphics:Images/CalcWk5_gr_39.gif]
[Graphics:Images/CalcWk5_gr_40.gif]

    f) [Graphics:Images/CalcWk5_gr_41.gif]

[Graphics:Images/CalcWk5_gr_42.gif]
[Graphics:Images/CalcWk5_gr_43.gif]
[Graphics:Images/CalcWk5_gr_44.gif]
[Graphics:Images/CalcWk5_gr_45.gif]

    g) [Graphics:Images/CalcWk5_gr_46.gif]

[Graphics:Images/CalcWk5_gr_47.gif]
[Graphics:Images/CalcWk5_gr_48.gif]
[Graphics:Images/CalcWk5_gr_49.gif]
[Graphics:Images/CalcWk5_gr_50.gif]

    You can use the rule:

[Graphics:Images/CalcWk5_gr_51.gif]
[Graphics:Images/CalcWk5_gr_52.gif]

    Or this program allows you to determine the value [Graphics:Images/CalcWk5_gr_53.gif] for any base:    (you could write a better program but this works OK)

from visual.graph import*

def f(x) :
    return 2**(x)

xinitial = -1
xfinal = 1
x = xinitial

numberofsteps = 1000
deltax = (xfinal - xinitial)/float(numberofsteps)

graph = gdisplay()
fcurve = gcurve(color = (1, 0, 0))
fprimecurve = gcurve(color = (0, 1, 0))

    
for k in range(1,numberofsteps+1) :
    y = f(x)
    fcurve.plot(pos = (x, y))
    
    fprime = (f(x+deltax)-f(x-deltax))/(2*deltax)
    fprimecurve.plot(pos = (x, fprime))

    if x>=-0.001 and x<=0.001:
        print 'x=', x, '   ', 'y=', y, '   ', 'Slope=', fprime
    
    x = x + deltax

[Graphics:Images/CalcWk5_gr_54.gif]

3)  If [Graphics:Images/CalcWk5_gr_55.gif], where [Graphics:Images/CalcWk5_gr_56.gif] is some function satisfying [Graphics:Images/CalcWk5_gr_57.gif] and [Graphics:Images/CalcWk5_gr_58.gif], what is [Graphics:Images/CalcWk5_gr_59.gif]?

[Graphics:Images/CalcWk5_gr_60.gif]
[Graphics:Images/CalcWk5_gr_61.gif]
[Graphics:Images/CalcWk5_gr_62.gif]

6)  If [Graphics:Images/CalcWk5_gr_63.gif], what are the numerical values of  [Graphics:Images/CalcWk5_gr_64.gif] and [Graphics:Images/CalcWk5_gr_65.gif]?

[Graphics:Images/CalcWk5_gr_66.gif]
[Graphics:Images/CalcWk5_gr_67.gif]
[Graphics:Images/CalcWk5_gr_68.gif]
[Graphics:Images/CalcWk5_gr_69.gif]
[Graphics:Images/CalcWk5_gr_70.gif]
[Graphics:Images/CalcWk5_gr_71.gif]

11)

    a)  Write the microscope equation for the function at [Graphics:Images/CalcWk5_gr_72.gif]:

[Graphics:Images/CalcWk5_gr_73.gif]

    The microscope equation is:

[Graphics:Images/CalcWk5_gr_74.gif]

    So we can see that we need [Graphics:Images/CalcWk5_gr_75.gif]:

[Graphics:Images/CalcWk5_gr_76.gif]
[Graphics:Images/CalcWk5_gr_77.gif]
[Graphics:Images/CalcWk5_gr_78.gif]
[Graphics:Images/CalcWk5_gr_79.gif]
[Graphics:Images/CalcWk5_gr_80.gif]

    b)  Using the microscope equation, estimate the following values:

[Graphics:Images/CalcWk5_gr_81.gif]
[Graphics:Images/CalcWk5_gr_82.gif]
[Graphics:Images/CalcWk5_gr_83.gif]

    The real value is:

[Graphics:Images/CalcWk5_gr_84.gif]
[Graphics:Images/CalcWk5_gr_85.gif]
[Graphics:Images/CalcWk5_gr_86.gif]
[Graphics:Images/CalcWk5_gr_87.gif]
[Graphics:Images/CalcWk5_gr_88.gif]

    The real value is:

[Graphics:Images/CalcWk5_gr_89.gif]
[Graphics:Images/CalcWk5_gr_90.gif]

14)

[Graphics:Images/CalcWk5_gr_91.gif]

4.2: 1)  Verify that the given formula is a solution to the initial value problem:

    a)  [Graphics:Images/CalcWk5_gr_92.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_93.gif]

    Now see if the derivative of the function matches:

[Graphics:Images/CalcWk5_gr_94.gif]
[Graphics:Images/CalcWk5_gr_95.gif]
[Graphics:Images/CalcWk5_gr_96.gif]

    So it is a solution!

[Graphics:Images/CalcWk5_gr_97.gif]

    b)  [Graphics:Images/CalcWk5_gr_98.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_99.gif]

    Now see if the derivative of the function matches:

[Graphics:Images/CalcWk5_gr_100.gif]
[Graphics:Images/CalcWk5_gr_101.gif]
[Graphics:Images/CalcWk5_gr_102.gif]

    So it is a solution!

[Graphics:Images/CalcWk5_gr_103.gif]

    c)  [Graphics:Images/CalcWk5_gr_104.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_105.gif]

    Now see if the derivative of the function matches:

[Graphics:Images/CalcWk5_gr_106.gif]
[Graphics:Images/CalcWk5_gr_107.gif]
[Graphics:Images/CalcWk5_gr_108.gif]

    So it is a solution!

[Graphics:Images/CalcWk5_gr_109.gif]

    d)  Write a general formula for the solution of the initial value problem for any integer [Graphics:Images/CalcWk5_gr_110.gif]:

[Graphics:Images/CalcWk5_gr_111.gif]
[Graphics:Images/CalcWk5_gr_112.gif]

    e)  Write a general formula for the solution of the initial value problem for any integer [Graphics:Images/CalcWk5_gr_113.gif] and any constant [Graphics:Images/CalcWk5_gr_114.gif]:

[Graphics:Images/CalcWk5_gr_115.gif]
[Graphics:Images/CalcWk5_gr_116.gif]
[Graphics:Images/CalcWk5_gr_117.gif]

2)

[Graphics:Images/CalcWk5_gr_118.gif]

3)

[Graphics:Images/CalcWk5_gr_119.gif]

4)

[Graphics:Images/CalcWk5_gr_120.gif]

5)

[Graphics:Images/CalcWk5_gr_121.gif]

17)  Verify that [Graphics:Images/CalcWk5_gr_122.gif] is a solution to the differential equation:

[Graphics:Images/CalcWk5_gr_123.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_124.gif]

    Now see if the derivative of the function matches:

[Graphics:Images/CalcWk5_gr_125.gif]
[Graphics:Images/CalcWk5_gr_126.gif]
[Graphics:Images/CalcWk5_gr_127.gif]

    So it is a solution!

[Graphics:Images/CalcWk5_gr_128.gif]

18 & 19)  Since [Graphics:Images/CalcWk5_gr_129.gif], and since [Graphics:Images/CalcWk5_gr_130.gif], the positive [Graphics:Images/CalcWk5_gr_131.gif] of the body satisfies the differential equation and initial condition:

[Graphics:Images/CalcWk5_gr_132.gif]

    Find a formula for [Graphics:Images/CalcWk5_gr_133.gif] that solves this differential equation.  This function describes how a body moves under the force of gravity.

    We know that the formula for [Graphics:Images/CalcWk5_gr_134.gif] has to satisfy the initial condition and has to have the correct derivative.  Lets start by making a formula that has the given expression for [Graphics:Images/CalcWk5_gr_135.gif] as its derivative.  Because of the rules for taking derivatives of power functions, we start out by guessing:

[Graphics:Images/CalcWk5_gr_136.gif]

    We can see that we are off by a factor of [Graphics:Images/CalcWk5_gr_137.gif] in the first term, so lets multiply the first term in the [Graphics:Images/CalcWk5_gr_138.gif] guess by [Graphics:Images/CalcWk5_gr_139.gif]:

[Graphics:Images/CalcWk5_gr_140.gif]

    Now everything works, but we still need to check that the initial condition is satisfied:

[Graphics:Images/CalcWk5_gr_141.gif]

    We are only off by [Graphics:Images/CalcWk5_gr_142.gif], so it looks like we need to add [Graphics:Images/CalcWk5_gr_143.gif] to our [Graphics:Images/CalcWk5_gr_144.gif] equation to make it satisfy the initial condition.  Because the derivative of a constant is zero, this will have no impact on the value of [Graphics:Images/CalcWk5_gr_145.gif].  With this addition we now have a general solution to our differential equation:

[Graphics:Images/CalcWk5_gr_146.gif]
[Graphics:Images/CalcWk5_gr_147.gif]

20)

    a)  Suppose a body is held motionless 200 m above the ground, and then released.  What values do [Graphics:Images/CalcWk5_gr_148.gif] and [Graphics:Images/CalcWk5_gr_149.gif] have?  And what is the formula for the motion of this body as it falls towards the ground?

[Graphics:Images/CalcWk5_gr_150.gif]
[Graphics:Images/CalcWk5_gr_151.gif]
[Graphics:Images/CalcWk5_gr_152.gif]
[Graphics:Images/CalcWk5_gr_153.gif]
[Graphics:Images/CalcWk5_gr_154.gif]
[Graphics:Images/CalcWk5_gr_155.gif]
[Graphics:Images/CalcWk5_gr_156.gif]

    So we can see that the formula for the motion of this body as it falls with the given initial conditions is:

[Graphics:Images/CalcWk5_gr_157.gif]
[Graphics:Images/CalcWk5_gr_158.gif]
[Graphics:Images/CalcWk5_gr_159.gif]

    b)  How far has the body fallen in [Graphics:Images/CalcWk5_gr_160.gif]?  In [Graphics:Images/CalcWk5_gr_161.gif]?

    So the difference in position at [Graphics:Images/CalcWk5_gr_162.gif] is:

[Graphics:Images/CalcWk5_gr_163.gif]

    So the difference in position at [Graphics:Images/CalcWk5_gr_164.gif] is:

[Graphics:Images/CalcWk5_gr_165.gif]
[Graphics:Images/CalcWk5_gr_166.gif]

    c)  How long does it take for the body to reach the ground?

[Graphics:Images/CalcWk5_gr_167.gif]
[Graphics:Images/CalcWk5_gr_168.gif]
[Graphics:Images/CalcWk5_gr_169.gif]

21)  Show that the following is a solution to the differential equation [Graphics:Images/CalcWk5_gr_170.gif] (including air resistance):

[Graphics:Images/CalcWk5_gr_171.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_172.gif]

    Now see if the derivative of the function matches:

[Graphics:Images/CalcWk5_gr_173.gif]
[Graphics:Images/CalcWk5_gr_174.gif]

    We know from problem 3.6: 2 (g) that [Graphics:Images/CalcWk5_gr_175.gif], so

[Graphics:Images/CalcWk5_gr_176.gif]

    And if we plug the equation for [Graphics:Images/CalcWk5_gr_177.gif] into our equation for [Graphics:Images/CalcWk5_gr_178.gif] we have:

[Graphics:Images/CalcWk5_gr_179.gif]

    Because they are identical, the solution is valid.

[Graphics:Images/CalcWk5_gr_180.gif]

22)  Show that the position [Graphics:Images/CalcWk5_gr_181.gif] of a body that falls against air resistance from an initial height of [Graphics:Images/CalcWk5_gr_182.gif] is given by the formula:

[Graphics:Images/CalcWk5_gr_183.gif]

    We can show this by showing that it is a solution to the differential equation:

[Graphics:Images/CalcWk5_gr_184.gif]

    First check the initial value:

[Graphics:Images/CalcWk5_gr_185.gif]

    Now we see if the derivative of the function matches.  In order to do this derivative we differentiate each term separately:

[Graphics:Images/CalcWk5_gr_186.gif]
[Graphics:Images/CalcWk5_gr_187.gif]
[Graphics:Images/CalcWk5_gr_188.gif]
[Graphics:Images/CalcWk5_gr_189.gif]
[Graphics:Images/CalcWk5_gr_190.gif]

    We know from problem 3.6: 2 (g) that [Graphics:Images/CalcWk5_gr_191.gif], so

[Graphics:Images/CalcWk5_gr_192.gif]

    Because [Graphics:Images/CalcWk5_gr_193.gif], the solution is valid.

[Graphics:Images/CalcWk5_gr_194.gif]

    b)  Suppose the coefficient of air resistance is [Graphics:Images/CalcWk5_gr_195.gif].  If a body is held motionless 200 m above the ground, and then released, how far will it fall in [Graphics:Images/CalcWk5_gr_196.gif]?  In [Graphics:Images/CalcWk5_gr_197.gif]?  How does this compare to the values if their was no air resistance?

[Graphics:Images/CalcWk5_gr_198.gif]

    So the difference in position at [Graphics:Images/CalcWk5_gr_199.gif] is:

[Graphics:Images/CalcWk5_gr_200.gif]
[Graphics:Images/CalcWk5_gr_201.gif]

    So the difference in position at [Graphics:Images/CalcWk5_gr_202.gif] is:

[Graphics:Images/CalcWk5_gr_203.gif]
[Graphics:Images/CalcWk5_gr_204.gif]

    c)  How long does it take for the body to reach the ground?  How does this compare to the value if their was no air resistance?

[Graphics:Images/CalcWk5_gr_205.gif]
[Graphics:Images/CalcWk5_gr_206.gif]

    So there is a difference is:

[Graphics:Images/CalcWk5_gr_207.gif]


Converted by Mathematica      March 3, 2004