Solution Manual For Intermediate Dynamics 2nd Edition by Patrick Hamill
Solution Manual For Intermediate Dynamics 2nd Edition by Patrick Hamill
SOLUTIONS FOR
mtt
INTERMEDIATE
DYNAMICS
bb99
Second Edition
Patrick Hamill
88@
@
ggm
maa
iill..cc
oom
m
Contents
Problem 1.1. Two ships are sailing in a thick fog. Initially, ship
A is 10 miles north of ship B. Ship A sails directly east at 30 miles
per hour. Ship B sails due east at constant speed vB then turns and
sails due north at the same speed. After two hours, the ships collide.
Determine vB .
Solution 1.1.
xA (t) = xB (t)
yA (t) = yB (t)
where t = total time
Let t1 = time boat 1 sails East and t2 = time it sails North. Then
t = t1 + t2
So at time t we have
yA = 10
yB = vB t2
and
xA = 30t
xB = vB t1
So
xB + yB = xA + y A
vB t1 + vB t2 = 30t + 10
vB t = 30t + 10
vB = 30 + 10/t
1
Problem 1.3. The first train leaves the station and accelerates at a
maa
constant rate to its maximum speed of 100 km/hr, reaching this speed
at a distance of 2 km from the station. Five minutes later, a second
train leaves the station and accelerates to 100 km/hr in 4 km. What is
the distance between the two trains when they both reach maximum
speed?
Solution 1.3. At the instant train B reaches 100 km/hr, it will be
4 km from the station and train A will be at 2+v(t − ta ) km from the
iill..cc
5 2
t= +
60 25
m
Consequently
5 1
xa = 2 + 100 − = 14.33 km
60 25
and
xb = 4 km
so distance between trains is
14.33 − 4 = 10.33 km
Problem 1.6. There is a long straight road out in the desert and
it goes through a small town that has just one police car. The police
car accelerates at 2 m/sec2 until it reaches a maximum speed of 200
km/hour. A car full of escaped criminals speeds through the town
at its top speed which is 150 km/hour. The police car, starting from
rest, gives chase. How far from the town do the police catch up to the
criminals?
ssm
4 1. CHAPTER ONE PROBLEMS
accelerates at 2 miles per hour per second. How far from the starting
point does the police car overtake the speeder? How fast are they
going at that time? Why is the speed you calculated for the police car
unrealistic?
Solution 1.7. Changing miles per hour to feet per second (60
mph = 88 ft/s) we have initial speed of teenager = 110 ft/s and the
iill..cc
d1 = d2
1 2 1 2
a1 t + v0 t = a2 t
oom
2 2
a1 t + 2v0 = a2 t
m
1. CHAPTER ONE PROBLEMS 5
or
t(a1 − a2 ) = 2v0
2(110)
t = = 25 s.
11.73 − 2.93
The distance traveled is
1
d = a2 t2 = 0.5(11.73)(25)2 = 3665 ft = 0.69 mi
2
and the speeds of the two cars are:
v1 = v0 + a1 t = 110 + 2.93(25) = 183 ft/s = 125 mph,
s = (1/2)at2 ,
since it started from rest. But we have an expression for s and we have
an expression for a, so subbing we obtain
v02 /2g 1
= (g sin θ − µg cos θ) t2 .
sin θ + µ cos θ 2
Call this time to slide back down, tbot , that is
iill..cc
v02 /g
sin θ+µ cos θ v02 /g 2
t2bot = =
g(sin θ − µ cos θ) (sin θ + µ cos θ)(sin θ − µ cos θ)
v02 /g 2
= .
sin2 θ − µ cos2 θ
(c) The velocity at the bottom is given by
oom
v02 /2g
and now v0 = 0 and a = g sin θ − µg cos θ and s = sin θ+µ sin θ
, so
2g(sin θ − µ cos θ)(v02 /2g)
= vf2
sin θ + µ cos θ
or s
sin θ − µ cos θ
vf = v0 .
sin θ + µ cos θ
s = 1.38 meters.
Problem 1.12. (a) Determine the rotational kinetic energy of a
wheel of your bicycle when your linear speed is 20 km/hour. You
may assume the wheel is a hoop of mass 1.5 kg and radius 30 cm. (b)
Compare your result with the translational kinetic energy of the wheel.
(c) Is the equality of parts (a) and (b) just a numerical coincidence or
is it always true? (d) Would the energies be equal if the wheel were a
disk rather than a hoop?
∆ω
α= = −2.67 × 10−23 rad/sec/sec.
100 × 365.24 × 24 × 3600
m
1. CHAPTER ONE PROBLEMS 9
1
∴ V20 = (22 − 4Vc0 ).
3
Since this collision is elastic we can use conservation of energy to write
1 1 1 1
Mc Vc2 + M2 V22 = Mc (Vc0 )2 + M2 (V20 )2
2 2 2 2
4(4) + 3(2) = 4(Vc ) + 3(V20 )2
2 2 0 2
oom
1
∴ Vc0 2 = 76 − 3(V20 )2 .
4
m
1. CHAPTER ONE PROBLEMS 11
2 2 2 2 5 r
so
1 1 7
mgh = M v 2 + M v 2 = M v 2
q 2 5 10
gh
That is, v = 0.7
gh
(b) The translational kinetic energy is Tt = 21 M v 2 = 12 M g 0.7 =
oom
10
14
M gh
The rotational kinetic energy is Tr = M gh − 10
14
4
M gh = 14 M gh.
m
subplot(1,2,2)
plot(t,totdis);
title(’distance vs time’);
xlabel(’time (arbitrary units)’);
ylabel(’position (arbitrary units)’);
reasonable. Eventually the policeman will catch the teenager, but your
answer is not reasonable if the distance required is hundreds of miles!)
n=1000
for i=1:n
x(i)=rand(1);
y(i)=rand(1);
z(i)=rand(1);
end
sumx=0;
iill..cc
sumy=0;
sumz=0;
for i=1:n
sumx=sumx+x(i);
sumy=sumy+y(i);
sumz=sumz+z(i);
end
oom
cmx=sumx/n
cmy=sumy/n
m
1. CHAPTER ONE PROBLEMS 17
cmz=sumz/n
n=10000
for i=1:n
x(i)=rand(1);
y(i)=rand(1);
z(i)=rand(1);
end
sumx=0;
sumy=0;
sumz=0;
for i=1:n
sumx=sumx+x(i);
sumy=sumy+y(i);
sumz=sumz+z(i);
end
cmx=sumx/n
cmy=sumy/n
cmz=sumz/n