Full File at Https://testbanku - eu/Solution-Manual-for-Engineering-Mechanics-Dynamics-1st-Edition-by-Soutas-Little
Full File at Https://testbanku - eu/Solution-Manual-for-Engineering-Mechanics-Dynamics-1st-Edition-by-Soutas-Little
∆v 60 mph − 0 88 ft/sec − 0
α= − = = 9.57 ft/sec2
∆t 9.2 − 0 9.2 sec
1.5 Solution: v(t) = ẋ(t) = 6 cos 2t m/s. a(t) = ẍ(t) = v̇(t) = −12 sin(2t) m/sec2 .
Setting −12 sin(2t) = 0, yields 2t = π, or t = 0, π/2 s, π, 3π/2...nπ/2, for the
times for the acceleration to hit zero.
1.9 Note: The purpose of this problem is to hit home the idea that the distance
traveled and the displacement are different. This problem is easiest to solve
using computational software as it involves plots. Students could also use a
symbolic processor to compute the derivatives, although it would be a little over
π
t 0 , .01 ..
2
x t 0.3 sin 2 . t
.
v t 0.6 . cos 2 . t
a t 1.2 . sin 2 . t
x t
0 0.5 1 1.5 2
v t
a t 1
FIGURE S1.9
t 0 , 0.1 .. 12.2
1000
x t 500
v t
a t
0 2 4 6 8 10 12 14
500
FIGURE S1.10
1.11 The following code in Matlab computes the velocity from the displacement data
and plots it:
x=[8 9 11 13 14 15 17 18 22 27 32 37 41 44 46 48 49 49 48 47 46];
t=0;,01:02;
n=length (x);
v=0*x;
dt=.01;
for i=1:n-1
v(i+1)=(x(i+1)-x(i)/dt;
end
v
plot(t,v),xlabel(‘t*dt or elapsed time’), title (‘velocity versus time’)
400
300
200
100
-100
0 0.05 0.1 0.15 0.2 0.25
t*dt or elapsed time
FIGURE S1.11a
The following produces the corresponding acceleration:
EDU>>a=0*v;
EDU>>for i=1:n-1
a(i+1)=(v(i+1)-v(i))/dt;
end
EDU>a
a=
Columns 1 through 6
0 10000 10000 0 -10000 0
Columns 7 through 12
10000 -10000 30000 10000 0 0
Columns 13 through 18
-10000 -10000 -10000 0 -10000 -10000
x 10
4 acceleration versus time
3
2.5
1.5
0.5
-0.5
-1
0 0.05 0.1 0.15 0.2 0.25
elapsed time
FIGURE S1.11b
1.12 Consider the following Matlab code which uses the central difference to compute
the velocity:
x=[8 9 11 13 14 15 17 18 22 27 32 37 41 44 46 48 49 49 48 47 46];
t=0:,.01:0.2;
n=length (x);
v=0*x;
dt=.01;
for i=1:n-1
v(i)=(x(i+1)-x(i-1))/(2*dt);
end
v
plot(t,v),xlabel(’t*dt or elapsed time’),title(velocity versus time’)
400
300
200
100
-100
0 0.05 0.1 0.15 0.2 0.25
t*dt or elapsed time
i 1. . 19 ∆ t=0.01
xi 1 xi 1
v
i 1
2. ∆t
600
400
v 200
i
200
0 0.05 0.1 0.15 0.2
t
a = v̇ = −9.81 (m/s)
The position, velocity and acceleration at t = 5 are
y(5) = −22.625 m, v(5) = −29.05 m/s, a(5) = −9.81 m/s2
Note that the ball returns to its initial state of y(5) = 0 when t satisfies
−4.905t2 + 20t = 0 or, t = 20/4905 = 2.07 sec.
Then to obtain the total distance traveled by the ball, we need to calculate
when the ball changes direction, i.e., when v(t) = 0.
v(t) = 0 = −9.81t + 20 or t = 2.0395.
From t = 0 to 2.039 sec. the ball travels a distance of y = 20.39 ft.
It then travels back past zero (the top of the building) another 20.39 ft. to
y(0) = 0.
It then travels on a distance of y(5) = −22.625, beyond zero.
Thus the total distance traveled by the ball is 20.39 + 20.39 + 22.625 = 63.4 m.
1.15 Solution:
x(t) = 3t3 − 2t2 + 5, x(0) = 5m
v(t) = ẋ(t) = 9t2 − 4t, v(0) = 0 m/s
a(t) = v̇(t) = 18t − 4, a(0) = −4 m/s2
1.18 Solution:
x(t) = exp(−0.1 · t) · (3 cos t cos(2 · t) + sin(2 · t)), x(0) = 3
v(t) = 1.7 · exp(−.1 · t) · cos(2 · t) − 6.1 · exp(−.1 · t) · sin(2 · t), v(0) = 1.7
a(t) = −12.36exp(−0.1t) · cos(2t) − 2.79 · exp(−0.1t) · sin(2t), a(0) = −12.37
1.19 Solution:
x(t) = 5 · t − exp(−t) · 3 · t, x(0) = 0;
v(t) = 5 + 3 · exp(−t) · t − 3 · exp(−t), v(0) = 2;
a(t) = −3 · exp(−t) · t + 6 · exp(−t), a(0) = 6.
t 0 , .01 .. 10
y t 5 . t. Φ 5 t 25 20 . sin π . t π .Φ t 5
200
y11 t
y1 t 0 5 10
200
FIGURE S1.20
10
5t 0<t<5
y(t) =
20 sin(πt − π) t>5
5 0<t<5
′
y (t) =
20π cos(πt − π) t>5
0 0<t<5
y ′′(t) = 2
−20π sin(πt − π) t>5
1.22 One answer: a 4 min mile is near a record speed for trained runners so:
1 mile 1 mile 1 min 5280 ft
v= 4 min
= 4 min 60 sec
· mile
= 22 ft/sec
or about 6.71 meter/s, or about 15 mph. On the other hand a sprinter can
cover 100 m dash in 10 seconds, or 10 m/s.
1.23 The Matlab solution follows (see problem 1.11 and 1.12 also):
%first assign the data to the vector v
v = [0 0.2 0.27 0.3 0.3 0.3 0.3 0.3 0.35 0.4 0.5]; n=length(v);
%assign the time step
t=0:,0.1:11;
dt=0.1; a=0.*v; x=0.*v; % zeros in a and x
%using a loop (see statics supplement or student ed. of Matlab)
11
1.24 Solution:
Here is the Mathcad solution. From the plot estimate the following data:
x0 0 x1 0 x2 0 x3 .02 x 4 .04 x 11 0
x5 .1 x 6 0.18 x 7 0.25 x 8 0.38 x 9 0.5 x 10 0.7
These are measured every 0.1 sec. Thus the velocity becomes:
n 0 , 1 .. 10
x n 1 xn
vn Which is plotted below
0.1
5
0
vn
10
0 0.2 0.4 0.6 0.8 1
n. 0.1
100
an 0
100
0 0.2 0.4 0.6 0.8 1
0.1 . n
12
1.25 This is of second order and is linear x(t). The term sin(πt) is nonlinear but in
t, not x.
1.28 This is second order in θ and nonlinear because of the term sin θ(t).
1.29 This is second order in θ(t) and nonlinear because of the terms (dθ/dt)|dθ/dt|
and sin θ(t).
13
x t 1
2
0 1 2
t
FIGURE S1.33
1.34 Solution:
a(t) = 40t cos πt
Rv Rt
3 dv = 0 40x cos πxdx
40
v(t) = 3 + π2
[cos πt + tπ sin πt − 1]
Rx 40 Rt
5 dx = 3t + π2 0 (cos πx + xπ sin πx − 1)dx
x(t) = 5 + 3t + 40
π3
sin πt − 40 π
t + π403 [sin πx − πx cos πx]t0
x(t) = 5 + (3t − 40
π
t) + π403 [2 sin πt − πt cos πx]
14
t 0 , .01 .. 10
40 . 40 .
x t 5 3 t 2 . sin π . t π . t . cos π t
π2 π3
50
x t 0
50
0 5 10
t
1.36 a) This is constant acceleration with a0 = −9.81 m/s2 (taking positive x as up),
v0 = 10 m/s and x0 = 0. Equation (1.30) relates the displacement, acceleration
and velocity. At the top of the motion v = 0, so eq. (1.30) becomes
0 = 2(−9.81)(xtop ) + v02 or xtop = 5.1 m
15
1.38 Here a is a function of x, so consider the development of part 2, eq. (1.17) and
(1.18)
adx = vdv or −kxdx = vdv or
2 v2 x
− kx2 |xx0 = |
2 0
kx20 = kx2 or
v 2 = kx20 − kx2 or
q
v(x) = k(x20 − x2 ).
The position time relationship can be found from (1.20):
Rt Rx Rx
t= 0 dt =
dx
x0 v(x) = x0
√ dx
= √1
k
sin−1 x
x0
|xx0 .
k(x20 −x2 )
1.39 As the elevator starts from rest with constant acceleration to its operating speed
v 2 = 2ax and v = at or
t = v/a = (3 m/s)/25 m/s2 = 1.2 sec
and travels a distance of
x = v 2 /2a = (3 m/s)2 /2(2.5 m/s2 ) = 1.8 m.
Which is also the time and distance required to stop the elevator. Hence 2 ×
1.2 s = 2.4 s and 2 × 1.8 m or 3.6 m are used up in starting up and slowing
down, the remaining distance 200 m - 3.6 m or 196.4 m is traveled at a constant
velocity of 3 m/s so
t = x/v = 196.4/3 m/s = 65.5 sec.
16
1.43 From the problem statement y0 = 40 km, v0 = 6000 km/s calculate an expres-
sion for y. Here acceleration is a function of position, so equations (1.17)-(1.20)
apply. Given
R 2 2 3
a(y) = −g0 (R+y)2 , g0 = 9.81 m/s , R = 6370 × 10 .
R0 R ym h i
2 dy 1 1
v0 vdv = −gR y0 (R+y)2
= g0 R 2 (R+ym )
− (R+y0 )
, or
v02
h i
02 1 1
2
− 2
= g0 R 2 R+ym
− R+y0
.
Thus
h i
60002 1 1
2
= g0 R 2 (R+y0 )
− (R+ym )
or
h i
1 1
4.552 × 10−8 = R+y0
− R+ym
.
Solving for ym yields ym = 2575.
17
h i
1 1 1
lim R+ym
− R+y0
= −2g0 R (R+y 0)
.
ym → ∞
2 1
That is −vesp = −2g0 R2 (R+y 0)
q
Then: vesp = R 2g0 /(R + y0 ) = 11.14 km/s = 11.14 × 103 m/s
1.46 Solution:
a(t) = 5 sin(20t) m/s2 x(0) = 1 m and v(0) = 3 m/s.
Integrating:
Rv Rt 5
0 dv = v − v0 = 0 5 sin 20αdα = − 20 (cos 20t − 1)
where α is used as the “dummy” variable of integration. Then
v(t) = 3 − 0.25 cos 20t + 0.25 = 3.25 − 0.25 cos 20t m/s.
Integrating again yields
x(t) = x0 + 3.25t − 1.25 × 102 sin 20t
x(t) = 1 + 3.25t − 0.0125 sin 20t m
18
1 h 2√gct √ i
x(t) = ℓn e + 1 − gct − 0.693
c
19
1.50 This is a case of uniform acceleration a0 = g = 32.2 ft/s2 , with v0 up, and
tf = 1.71 s. Using eq. (1.29) again with v0 as the unknown yields
(g)t2f
v(tf ) = 30 − 2
+ (−v0 )tf + 0
Here −v0 is used because v0 is up and we have taken down as positive in writing
a plus sign for a0 (= g). This is consistent with the solution to 1.49. Solving for
v0 yields
h i
v0 = ( 2g )t2f − 30 /tf = 9.987 ft/sec.
20
1.54 Both cars undergo uniform acceleration aA = 0.9g and aB = 0.85g. Let them
start at t = 0 in the ame place from rest, i.e., xa (0) = xB (0) = vA (0) = vB (0) =
0. Car A travels 1,000 m or takes the time determine by equation (1.29)
(0.9g)(t2f )
xA (tf ) = 1000 = 2
Then tf = 15.1 sec. During this time car B travels a distance determined by
aB (tf )2 (0.85)(9.81)(15.1)2
xB (15.1) = 2
= 2
= 950.6 m
So car A is 1000 - 950.6 = 49.4 m ahead of car B when it crosses the finish line.
Note that if tf = 15.05 s is used and not rounded off, then the distance becomes
55.47 mm insteady of 49.4 m.
1.55 This can be solved several ways including graphically by computing the area
under the acceleration curve to generate the velocity, and the area under the
velocity versus time curve to compute the position:
First write the acceleration during each interval. For 0 < t < 50s,
a(t) = 2 m/s.
For 50 < t < 70s : a(t) = 0,
for 70 < t < 100, a(t) = 15(t − 70). Last for 100 > t > a(t) = 0.
Now calculate the area under the curve in each of these intervals being careful
to use the appropriate initial conditions at the beginning of each interval:
0 < t < 50 v(t) = 20t m/s
50 < t < 70 v(t) = 1000 m/s
70 < t < 100 v(t) = 7.5(t − 70)2 + 1000 m/s
100 > t v(t) = 7750 m/s so that v(120) = 7750 m/s
Integrating each of these in the interval yields
0 < t < 50 x(t) = 10t2
50 < t < 70 x(t) = 25000 + 1000(t − 50)
70 < t < 100 x(t) = 2.5(t − 70)3 + 1000(t − 70) + 45, 000
t > 100 x(t) = 7750(t − 100) + 142, 500
21
2 /2 2 /2
At 0, v(0) = 10 ft/s so that c = 10 and v(t) = 10e−t + e−t t
22
2
error function when integrated, i.e., x(t) = 12.5 erf(0.71t) − et /2 + 1.
b) This does not have an integrating factor, or other closed formed solution, so
the solution must be found numerically by writing the equation in first order for
and applying an Euler or Runge-Kutta solution. A Mathcad solution is shown.
i 0 .. 4000 ∆t 0.001 ti i . ∆t
x0 1 v0 5
2
a v, t t .v 1 3. t
xi 1 xi vi . ∆t
vi 1 vi a vi , ti . ∆t
15
10
xi
vi
5
0 1 2 3 4
ti
FIGURE S1.58
To solve this problem with Matlab, create and run the following code:
x(1)=1; v(1)=5; t(1)=0;
dt=0.001;
for n=1:4000;
x(n+1)=x(n)+v(n)*dt;
v(n+1)=(-t(n)ˆ.2*v(n)+1+3*t(n))*dt+v(n);
t(n+1)=t(n)+dt;
end
plot(t,x),plot(t,v)
23
k
1.60 Define ω 2 = m = 14 = 4 and ζ = 2mω
c
= 2.795 > 0 so the system is over damped.
Then the problem in standard form is
ẍ + 2ζω ẋ + ω 2 x = ẍ + 5ẋ + 4x = 0
Assume solutions of the form x = Aeλt . The characteristic equation becomes
λ2 + 5λ + 4 = 0 which has roots λ1 = −1, λ2 = −4. Thus the general solution
is of the form
x(t) = A1 e−t + A2 e−4t
Applying the initial condition yields
x(0) = 5 = A1 + A2
v(0) = 0 = −A1 − 4A2
which is a system of two linear equations in the two unknowns A1 and A2 .
Solving yields A1 = 20
3
and A2 = − 35 . Thus the solution is x(t) = 20
3
e−t − 53 e−4t
and v(t) = 20
3
(−e−t + e−4t )
24
∆t .01 c 15
1.5
i 0 ..
∆t
v0 0
x0 .01
vi 1 vi c . vi . ∆t 400 . x i . ∆t
xi 1 xi vi . ∆t
0.01
0.005
xi
0.005
0 0.5 1 1.5
i . ∆t
FIGURE S1.61
Note here that the oscillation dies out at about t = 1 second, for a value of c =
15, or a damping value of 15, 000 kg/s.
The Matlab code for doing this is given below using an Euler method. This
can also be done using ODE which involves a Runge-Kutta routine. Create the
25
1.62 Following the development of the numerical integration section equation (1.51)
becomes
vi+1 v − 900vi ∆t − 4000(xi )2 ∆t
= i
xi+1 xi + vi ∆
with initial condition v0 = 0 and x0 = 20 mm. The Mathcad code is:
i 0 .. 1000 v0 0
∆t .001 x0 20
vi 1 vi 900. vi . ∆t 4000. x i . x i . ∆t
xi 1 xi vi . ∆t
20
x
i 10
FIGURE S1.62
26
1.63 Following the development of the numerical integration section (1.51) becomes
vi+1 v − 90vi ∆t − 100x3i ∆t
= i
xi+1 xi + vi ∆t
with initial condition v0 = 0 and x0 = 10 mm.
The Mathcad code is:
10
5
xi
5
0 0.1 0.2 0.3 0.4 0.5
ti
FIGURE S1.63
The catch gets near zero within 1/20 second.
27
10
xi 0
10
0 0.1 0.2 0.3 0.4 0.5
ti
FIGURE S1.64
28
1.65 Solution: First set up the Euler form of the equation for numerical integration:
vi+1 v − cvi |vi |∆t − 4kxi |xi |∆t
= i
xi+1 xi + vi ∆t
Then resolve for various values of c, k and x0 until a response that dies out in
one oscillation results. There are many answers, the plot shows this is achieved
for x0 = 0.01 m, k = 400 1/ms2 , and c = 1000 m−1 . Another solution is x0 = 2,
c = 6 and k = 40.
The Mathcad solution is:
i 0 .. 3000
vi 1 vi c . vi . vi . ∆t 400 . xi . xi . ∆t
xi 1 xi v . ∆t
i
0.01
0.005
xi
0 5 10 15 20 25 30
0.005
i. ∆t
FIGURE S1.65
29
1.66 Assuming r = xî + y ĵ + z k̂ so that mr̈ = mẍî + mÿ ĵ + mz̈ k̂. Then mr̈ = −g ĵ
yields ẍ = 0, ÿ = −g/m and z̈ = 0. These are linear, decoupled equations.
1.67 Yields the 3 scalar equations ẍ + cẋ = 0, ÿ + cẏ + g = 0 and z̈ + cż = 0 which
are decoupled, linear equations.
1.70 Consider the plane trajectory equations given by eq. (1.74). In this case we
know xf = 450 ft, zf = 12 ft, g = 32.2 ft/s2 , x0 = 0, z0 = 0 and v0 = 130 ft/s.
Thus equation 1.73 becomes
450 = (130 cos θ)t + 0
12 = −16.2t2 + (130 sin θ)t
which is two nonlinear algebraic equations in two unknowns t and θ. Solving
yields t = 6.86 sec, θ = 1.042 rad (59.7◦ ) and t = 4.088, θ = 0.561 rad (32.143◦).
30
1.71 Choose (0,0) in the x − z plane to be on the ground so that vz (0) = 2 m/s,
zf = 0, x0 = 0, z0 = 3m, xf = d, xf = 0. Then equation (1.73) becomes
d = 2t, 0 = − 9.81
2
t2 + v0 (0) + 3. Combining 4.905 t2 = 3 and t = d2 yields
12
d2 = 4.905
or d = 1.56 m.
1.73 Working with equation 1.73 for projectile motion, let the hose be at x0 = z0 =
0 and assume it hits at x(tf ) = x and z(tf ) = 0, then eq. (1.73) becomes
t2
x = v0 cos θtf and 0 = g 2f + v0 sin θtf . Solving this last expression for tf yields
tf = 2v0 gsin θ , the time to hit the ground. Then from the expression for x
2v02
x(tf ) = g
sin θ cos θ
2v2
The max value of x occurs at dx/dθ = 0 or g0 (− sin2 θ + cos2 θ) = 0. This
requires sin θ = cos θ or θ = 45◦, the value at which xf will be maximum.
31
1.75 From the projectile equation for z: z = −16.1t2 + 140 sin 20t+ 4. The maximum
value of the parabolic trajectory would occur at tf /2 except the value of tf
calculated in 1.74 assumes the trajectory is 4 ft off the ground. The equation
for time of flight is −16.1t2f +140 sin 20◦ tf = 0 or tf = 2.97 sec, and tf /2 = 1.487
2
2.92 2.92
sec. Then zmax = −16.1 2
+ 140 sin 20 2
+ 4 = 39.6 ft.
1.76 Consider the projectile equation 1.73 and first solve for v0 so the ball just clears
the bottom window. Picking a coordinate system 1m off the ground yields
x0 = z0 = 0, xf = v0 cos 30◦ tf , zf = 2m = − 9.81
2 f
t2 + v0 sin θtf
where xf = 6.5m. This yields two equations in two unknowns:
7.5
6.5 = v0 (.886)tf or tf = v0
Thus v0 = 12.56 m/s. With yf = 3m, this becomes v0 = 19.18 m/s so that he
must kick through with a speed: 12.56 < v0 < 19.18 m/s.
32
1.79 Sample 1.14 gives the equation for a particle in projectile motion with wind
resistances. The equations are nonlinear and coupled and must be solved nu-
merically. The initial conditions of x(0) = 0, vx (0) = 25, y(0) = 0, vy (0) = 0
will allow the solution computed numerically following sample 1.14. The tra-
jectory can then be plotted along with a line at 45◦ representing the hill. The
intersection will yield the value of d. Since we do not know d, it is best to put
the coordinate system at the end of the ski run and let z (or y) evolve in the
negative direction. Such a line passing through the origin has slope -1 and can
be written as d = −x, or di = −xi in incremental form. The Mathcad code is
vx0 25 x0 0 vy0 0 y0 0
di xi
50
di
y
i
100
150
xi
FIGURE S1.79
Form the plot, then cross about 111 m out or d = 111/ cos 45◦ = 157 m down
the incline.
33
1.80 This is just a repeat of the previous problem with a more accurate nonlinear
damping term. The Mathcad code is:
vx0 25 x0 0 vy0 0 y0 0
2 2 .
vxi 1 vxi c . vxi . vxi vyi ∆t
xi 1 xi vxi . ∆t
vyi 1 2 2
vyi g c . vyi . vxi vyi . ∆t
yi 1
yi vyi . ∆t
di xi
0 20 40 60 80 100 120
50
di
y
i
100
150
xi
FIGURE S1.80
34
1.81 Solution: 300 yards = 900 ft so that xf = x(tf ) = 900. Given that the ball is
at zero to start with x0 = y0 = 0, and hits the ground at yf = 0. With θ = 90◦
given, the trajectory equations are
1.82 Solution: 200 mph = 293.3 ft/s. Here x0 = y0 = 0, θ = 9◦ . Then eq. (1.71)
becomes
x = (293.3) cos 9◦ t = 289.7t (1)
0 = −16.1t2 + 45.8t (2)
From (2) t = 2.849 sec so from (1) x = 825.6 ft
35
40
20
y
i
20
xi
FIGURE S1.83
From the figure x = 758 ft (found by using the trace funciton in Mathcad).
The Matlab code is given in the Matlab supplement.
1.84 Again use the projectile equations of eq. (1.73). Here: x0 = 0, y0 = 0 (so
yf = 3 ft), xf = 20 ft, θ = 45◦ and hence
√
20 = v0 √12 t or t = 20 2
v0
3 = −16.1t2 + v0 · √1 t
2
q
(16.1)800
Solving yields v0 = 17
= v0 = 27.53 ft/s.
36
Given
x f v 0. t f. cos θ x0
t f2
yf g. v 0. t f. sin θ y0
2
1.132 1.132
Find θ , t f = = 64.859
1.568 deg Angle in degrees
A second solution can be found with a lower angle.
v0 30 x0 0 y0 7 xf 20 yf 10
g 32.2
Initial guess for time and angle These values are assumed less.
θ 10. deg t f 1
Given
x f v 0. t f. cos θ x0
t f2
yf g. v 0. t f. sin θ y0
2
0.588 0.588
Find θ , t f = = 33.69
0.801 deg Angle in degrees
The second solution is not valid as the ball would hit the net from below.
37
xf = 176t (1)
0 = −16.1t2 + 10 (2)
From (2) t = 0.7885 sec and from (1) xf = 138.7 ft
1.87 This again uses the projectile motion equation. a)Let x0 = 0, xf = 6ft, y0 = 0,
so yf = 15 −4 = 11 ft, θ = 80◦ and the unknown is v0 . Equation (1.73) becomes
62
11 = 6 tan 80◦ − 16.1 (3)
v02 cos2 80◦
Solving yields v0 = 28.9 f/s. b) Repeating (a) with xf = 16 eq. (3) becomes
162
◦
11 = 16 tan 80 − 16.1 2
v0 cos2 80◦
or v0 = 41.4 ft/s.
1.88 This is circular motion with R = 150 ft, at = 12 ft/s2 . Compute the time t
2
at which an = 24 ft/s2 . From Eq. (1.84), at = αr so that α = art = 12140ft/sft =
0.08 rad/s2 a constant. dw dt
= 0.08 so that w − w0 = 0.08t or w = 0.08t + w0 .
From (1.84) an q = rw = 25 = 150(w0 + 0.08ts )2 (1), where ts = time to slip.
2
√
Also at ts , a = a2t + a2r = 252 + 122 = 27.73 ft/s2 at slip. Solving (1), with
1/2
1 25
ω0 = 0 for ts yields ts = 0.08 150
= 5.104 s.
1.89 This is a circular motion with r = 2 m and at (t) = 6 sin πt(m/s2 ). TheR particle
starts at rest so that θ(0) = ω(0) = 0. For circular motion v(t) = 0t at dt =
Rt 6 v2 1 36 2 18 2
0 6 sin πt = π (1 − cos πt). Also ar = r = 2 ( π 2 )(1 − cosπt) = π 2 (1 − cos π6) .
From equation (1.81) taking the magnitude of a(t) yields
q q
a(t) = a2t + a2n = 62 sin2 πt + [ π182 (1 − cos πt)2 ]2 .
38
t 0 , 0.001 .. 2
6. 18 . 2
v t 1 cos π . t at t 6 . sin π . t an t 1 cos π . t
π π2
2 2
a t at t an t
10
vel m/s accel m/s^2
a t
5
v t
0 0.5 1 1.5 2
t
time s
FIGURE S1.89
The Matlab code for producing the plots is given in the following file:
syms t % declares t symbolic
v=(6/pi)*(1-cos(pi*t)); an=0.5vˆ2;
at=6*sin(pi*t); a=sqrt(atˆ2+anˆ2)
ezplot(a,[0,2]), ezplot(v,[0,2])
3
1.90 From the solution to 1.89 a(t) = (36 sin3 πt + 18
π4
(cos πt − 1)4 )1/2 . Find ts when
a(t) = 5. The answer can be seen from the plot given in figure S1.89 or from
solving
182
52 = 36 sin2 πts + π4
(cos πts − 1)4
for ts which has 2 solutions in the interval of interest. From Mathcad they are:
ts = 0.312 s, and 1.688s.
30 3
1.91 Given r = 200 m, v = 30 km/hrs = 1
× 10 1 m 3600hrsec·hr = 8.33 m/s. For circular
motion, equation (1.81) yields
an = v2
4
= 8.33
200
− 0.3469 m/s2 or an = 0.35 m/s2 .
39
1.94 Solution: α(t) = t cos(πt) rad/s2 , ω0 = R2 rad/s, θ0 = 30◦ = π6 rad. Thus dω(t) =
t cos πtdt or upon integrating ω − 2 = 0t x cos πxdx = π12 [cos πt + πt sin πt − 1]
so that ω(t) = (2 − π12 ) + π12 (cos πt + πt sin πt) rad/s. Integrating again yields
π 1
θ− 6
= π3
[2 sin πt − πt − πt cos πt + 2π 3 t]
and
π 1
θ(t) = 6
+ 2t + π3
(2 sin πt − πt − πt cos πt) rad
1.95 Solution: ω0 = 3 rad/s and α(ω) = −2ω 2 rad/s2 . From eq. (1.87) α = ω dωdt
=
2
R ω dω Rθ ω −2θ
−2ω . Solving yields 3 ω = −2 0 dθ, or ℓn 3 = −2θ. ω = 3e so that
dθ −2θ
R θ 2θ Rt
dt
= 3e or 0 e dθ = 0 3dt = 3t. Evaluating the other integral yields
1 2θ θ
2
e |0 = 3t or e2θ − 1 = 6t
and 2θ = ℓn(6t + 1) or θ(t) = 12 ℓn(6t + 1) and θ(10) = 21 ℓn(61) = 2.055 rad.
40
π
i 0 .. 500 ω0 0 θ0
∆t 0.01 6
ωi 1 ωi 2 . sin θi 0.4 . ωi . ∆t
θi 1 θi ωi . ∆t
4
θ
i
2
0 1 2 3 4 5
i. ∆t
FIGURE S1.97
41
π
i 0 .. 500 ω0 0 θ0
∆t 0.01 6
ωi 1 ωi 3 . cos θi 0.02 . ωi . ωi . ∆t
θi 1 θi ωi . ∆t
2
θ
i
1
0 1 2 3 4 5
i. ∆t
FIGURE S1.98
42
v2 (t)
1.101 From equation 1.100, ρ(t) = |an (t)|
where v 2 (t) is v(t) · v(t) = 9 sin2 t + 9 cos2 t +
16 = 9 + 16 = 25. Compute |an (t)|. From eq. (1.97) êt = v
|v|
= 51 (−3 sin tî +
3 cos tĵ + 4k̂. Then from eq. (1.98)
at (t) = (a · êt )êt = 15 [(−3 cos t)(−3 sin t) + (−3 sin t)(3 cos t) + (0)(4)]êt = 0.
√
Now an = a − at = a − 0 = a. Thus |an (t)| = |a(t)| = 32 cos2 t + 32 sin t = 3.
Thus
2
ρ(t) = |avn(t)
(t)|
= 31 [25] = 8.33 m, a constant so that the motion is circular, moving
at a constant angular velocity.
1.102 Given r(t) = t2 î + 3tĵ + 10 sin tk̂ m, successive differentiation yields the velocity
and acceleration:
v(t) = ṙ(t) = 2tî + 3ĵ + 10 cos tk̂ m/s
a(t) = r̈(t) = 2î − 10 sin tk̂ m/s2
v2 (t)
From eq. (1.100) the radius of curvature is ρ(t) = |an |
Now v 2 = v·v = 4t2 +9+100 cos2 t. Following eq. (1.97) êt (t) = v
|v|
, at = (a·êt )êt ,
v2
an = a − at and ρ(t) = |an |
. Programming these formulations and evaluating at
each value of t yields
a) t = 1s, ρ(1) = 7.23 m
b) t = 3s, ρ(3) = 126.645 m
c) t = 5s, ρ(5) = 13.346 m
43
t 5
2.t 2
v 3 a 0
10 . cos t 10 . sin t
v
et at a . et . et
v an a at
v.v
ρ
an
ρ = 13.346
1.103 Solution: r(t) = 21 (1 + t2 ) and θ = πt2 so that ṙ(t) = t and r̈(t) = 1, θ̇ = 2πt
and θ̈ = 2π. From equation (1.103)
v = ṙêr + r θ̇eθ = têr + πt(1 + t2 )êθ
a = (r̈ − r θ̇2 )êr + (r θ̈ + 2ṙ θ̇)êθ = (1 − 2π 2 t2 (1 + t2 ))êr + (π(1 + t2 ) + 4t2 π)êθ
1+t2
To plot the motion define t : 0, 0.1...2, define r = 2
and θ = πt2 . Then let
x = r cos θ and y = r sin θ which is plotted below.
44
t 0 , 0.01 .. 2
1 t2 2
r t θ t π .t
2 x t r t 8 cos θ t y t r t . sin θ t
20 10 0 10 20
y t
2
x t
FIGURE S1.103
q
1.104 The value of v(t) is always positive. Note that |v(t)| = t2 + π 2 t2 (1 + t2 )2 =
q
t 1 + π 2 (1 + t2 )2 = ds/dt so that
R2q
s − s0 = 0 t2 + π 2 t2 (1 + t2 )2 dt = 18.977 m.
1.105 Solution: r(t) = 2 so that ṙ = r̈ = 0 and there is circular motion. θ(t) = sin πt
so that θ̇ = π cos πt and θ̈ = −π 2 sin πt. From equations (1.103):
v(t) = r θ̇êθ = 2π cos πtêθ and
a(t) = −2π 2 cos2 πtêr − 2π 2 sin2 πtêθ
Let x = r cos θ and y = r sin θ to plot the motion as illustrated below.
45
t 0 , 0.01 . . 2
θ t sin π. t
r t 2
90
120 2 60
1.5
150 30
1
0.5
r t
180 0 0
210 330
240 300
270
θ t
FIGURE S1.105
The Matlab code is:
EDU>linspace(0,2);
EDU>r=2;th=sin(pi*t);
EDU>x=r*cos(th);y=5*sin(th);
EDU>plot(x,y)
1.106 Solution:
ds
√
dt
= |v(t)| = 4π 2 cos2 πt = |2π cos πt|
R2
s − s0 = 0 |2π cos πt|dt = 8 m
1.107 Since the particle starts from rest, ṙ(0) = 0, θ̇(0) = 0 r(0) = 1, and θ(0) = 0.
To determine v(t) and a(t) from eqs.(1.103) we need r(t), θ(t), ṙ(t) and θ̇(t)
which we can calculate by integrating r̈ and θ̈
Rt Rt
ṙ(t) − ṙ(0) = 0 r̈(x)dx = 0 2e−x dx = 2(1 − e−t )
Rt
r(t) − 1 = 2 0 (1 − e−x )dx so that r(t) = 1 + 2(t + e−t − 1) = −1 + 2t + 2e−t
Likewise
Rt Rt πt2
θ̇(t) − 0 = π 0 dx = πt and θ(t) − 0 = π 0 xdx = 2
46
2
1.108 Let r(t) = 1 + 2(t + e−t − 1) and θ(t) = πt2 . Then define x(t) = r(t) cos θ(t),
y(t) = r(t) sin θ(t) and plot (Mathcad solution)
t 0 , 0.01 .. 2 2
r t 1 2. t e
t
1 π .t
θ t
2
x t r t . cos θ t
y t r t . sin θ t
3 2 1 0 1 2 3 4
y t
x t
FIGURE S1.108
R2
The distance traveled is 0 |v(t)|dt = 14.438 m
The Matlab code is:
EDU>linspace(0,2);
EDU>r=1+2*(t-exp(-t)-1);th=(pi*t.ˆ2)/2;
EDU>x=r.*cos(th);y=r.*sin(th);
EDU>plot(x,y)
1.109 Given ω = 2π rad/s and r(t) = r0 + ra sin 2πt, to determine the acceleration
requires expressions for r, θ, ṙ and θ̇. Since ω = 2π, dθ = 2πdt and θ = θ0 + 2πt,
θ̇ = 2π, and θ̈ = 0.
Likewise ṙ = 2πra cos 2πt and r̈ = −4π 2 ra sin 2πt. From eq. 1.103, ar =
r̈ − r θ̇2 = −4π 2 ra sin 2πt − (r0 + ra sin 2πt)4π 2 = −4π 2 (2ra sin 2πt + r0 ) m/s2
aθ = r θ̈ − 2ṙθ̇ = (2)(2πra cos 2πt)(2π) = 8π 2 ra cos 2πt m/sec2
47
t 0 , 0.01 .. 2
r t 2 1.5 . sin 2 . π . t
θ t 2.π .t
90
120 60
150 30
r t
180 0
0 1 2 3
210 330
240 300
270
θ t
FIGURE S1.110
48
rn+1 = rn + xn ∆t r
0
.5
=
yn+1 = (−2xn · yn /rn + cosrnπtr )∆t + yn y0 0
θn+1 = yn ∆t + θn θ0 0
Once these are solved the polar coordinate r(t) and θ(t) are given by the digital
record for rn and θn .
49
i 0 . . 2000 ∆t 0.001
t i. ∆t
1
α v , r, ω, θ , t . cos π . t 2. v. ω
r
2
a v, r, ω, θ , t 2. t r. ω
v0 vi 1
a v i , ri , ω , θ , t . ∆t vi
i i i
0
r0 ri 1 ri vi . ∆t
0.5
ω0 0 ω ω α vi , ri , ω i , θi , t i . ∆t
i 1
i
0
θ0 θ θi ω . ∆t
i 1
i
xi ri . cos θ i yi ri . sin θ i
Trajectory in meters
0.8
0.6
y 0.4
i
0.2
0
0.5 1 1.5 2 2.5 3 3.5
x
i
FIGURE S1.112
50
1.113 The acceleration components in polar coordinates are given in eq. (1.04) to be
ar = r̈ − r θ̇2 and aθ = r θ̈ + 2ṙθ̇.
We are given r̈ and θ̈ which we need to integrate to get ṙ, r, θ and θ̇. First
consider θ̈ = 0 so that θ̇ = constant = 1.5 rad/s. Integrating again yields
θ(t) = 1.5t. Then the above becomes simply
ar = r̈ − (1.5)2 r, aθ = 2(1.5)ṙ = 3ṙ
Integrating r̈ = 3 − 0.01ṙ requires the solution of
r̈ + 0.01ṙ = 3
3t
Which is a second order differential equation with particular solution rP = 0.01 .
The homogeneous equation is r̈ + 0.01ṙ = 0 which has solution r1 = A and
r2 = Beλt . Substitution yields
λ2 + 0.01λ = 0 or λ = −0.01 so the homogeneous solution is
rH (t) = A + Be−0.01t
and the general solution is
r = rH + rP = A + Be−0.01t − 300t
To get A and B apply the initial condition r(0) = 0.4 and ṙ(0) = 0
r(0) = A + B = 0.4, ṙ(0) = 0.01B + 300 = 0 or B = −30, 000
A = 30, 000.4
Thus
r(t) = −30, 000.4 − 30, 000e−0.01t + 300t m
Thus ṙ = 300(1 − e−0.01t ), r̈ = 3e−0.01t so that
ar = 3e−0.01t − 2.25(30000.4 − 30000e−0.01t + 300t)
aθ = (3)(30000.4) − 90, 000e−0.01t + 900t
51
t 0 , 0.1 .. 4
0.01 . t
r t 30000.4 30000 . e 300 . t
θ t 1.5 . t
90
120 60
150 30
r t
180 0
0 1000 2000
210 330
240 300
270
θ t
FIGURE S1.114
The Matlab code is:
EDU>t=linspace(0,4);
EDU>th=1.5*t;r=3000.4-3000*exp(-0.01*t)+300*t;
EDU>x=r.*cos(th);y=r.*sin(th);
EDU>plot(x,y)
1.115 In order to determine the velocity and acceleration from eq. (1.103), r(t), ṙ(t), r̈,
θ, θ̇ and θ̈ are needed. Since θ̇ = π/4 so that θ̈ = 0 and θ(t) = (π/4)t (assuming
θ(0) = 0). Then r(t) = r(θ(t)) = 100 + 60 cos πt 4
so that ṙ(t) = −15π sin πt
4
and
15π 2 πt
r̈ = − 4 cos 4 .
52
1.116 Here we need to find r(t) from the drawing and knowledge of θ(t). θ(t) =
2
π
4
sin πt, so that θ̇ = π4 cos πt and θ̈ = − π4 3 sin πt = −π 2 θ(t). From the drawing
300 = r(t) cos θ(t) so that
r(t) = 300 sec θ(t) = 300 sec ( π4 sin πt)
ṙ(t) = 75π 2 tan( π4 sin πt) sec ( π4 sin πt) cos πt
h i
π2 π4
r̈(t) = 300 16
sin2 πt tan( π4 sin πt) + 16
cos2 πt(tan2 ( π4 sin πt) − 1) sec( π4 sin πt)
Then
v = [75π 2 tan( π4 sin πt)sec( π4 sin πt) cos πt]êr + [75π 2sec( π4 sin πt) cos πt]êθ
The aceleration becomes (in terms of θ, θ̇ and θ̈)
a = 300 sec θ[(2 tan2 θ)θ̇2 + tan θθ̈]êr + 300 sec θ[θ̈ + 2 tan θθ̇2 ]êθ
53
1000
Acceleration in m/s 2
ar t 0
aθ t
1000
2000
3000
0 0.5 1 1.5 2
t
time s
FIGURE S1.117
54
d d
60 . sin θ t . θ t 100 . sin β t . β t
dt dt
d d
rd t 60 . sin θ t . θ t 100 . sin β t . β t
dt dt
2 2
d d2 d d2
60 . cos θ t . θ t 60 . sin θ t . θ t 100 . cos β t . β t 100 . sin β t . β t
dt d t2 dt d t2
2 2
d d2 d d2
rdd t 60 . cos θ t . θ t 60 . sin θ t . θ t 100 . cos β t . β t 100 . sin β t . β t
dt d t2 dt d t2
Now define the acceleration components in terms of r and its derivatives, theta and omega:
2
ar t rdd t r t .ω t aθ t 2 . rd t . ω t r t .α t
100
50
ar t
aθ t 0 2 4 6 8
50
100
FIGURE S1.118
55
i 0 . . 40 t 0.1. i
xi 1.5. cos π . ti yi 1.5 sin π . ti zi 0.5. cos 2. π . ti
0.4
0.2
0
0.2
1
0
1 1
0
1
x, y, z
FIGURE S1.119
The Matlab code for forming this plot is given in the following file:
i=(0:1:40);
x=1.5*cos(pi*i*0.1);y=1.5sin(pi*i*0.1);z=0.5*cos(pi*i*0.1);
plot3(x,y,z)
56
The total distance traveled can also be calculated using software. For example,
the Mathcad code for computing this distance follows:
t 0 , 0.01 . . 2
0
2
v t 1.5. π
v t d t = 10.398
π . sin 2. π . t 0
FIGURE S1.120
1.122 Solution:
q for R = 3m and h = 5 m, v(t) = 0.3êr + 0.6têθ − 0.5êz so that
|v| = (0.3)2 + (0.6t)2 + (0.5)2 as it takes 10 sec to travel to the bottom
R 10 R 10 q
s= 0 |v|dt = 0 (0.3)2 + (0.6t)2 + (1.5)2 dt = 94.67 m
1.123 From eq. (1.111) the given form of the differential equations are êr : 3 =
r̈ − r θ̇2 (1), êθ : 2ṙ θ̈ = 0.1 (2) and from êz : z̈ = −2. Since the particle starts
from rest at zero, all the initial conditions are zero and since the z coordinate is
decoupled it can be directly integrated to yield ż = −2t and z̈ = −t2 . Equations
(1) and (2) for r and θ on the other hand are two coupled nonlinear equations
which must be solved numerically. They are
r̈ = r θ̇2 + 3
θ̈ = −2 ṙrθ̇ + 0.1
r
57
θ 0 θ dθ
The Euler equations then becomes (follow sample 1.22) as illustrated in
rn+1 rn + drn · ∆t r0 0
dr (r · dθ 2 + 3) · ∆t + dr dr 0
n+1 n n n 0
= , =
θn+1 θn + dθn · ∆t θ0 0
dθn+1 dθn + 0.1
rn
− 2 drn ·dθn
rn
· ∆t dθ0 0
Figure S1.123 shows the integration along with a plot of the first 3 s using
Mathcad.
i 0 .. 3000
∆t 0.001
ti ∆t. i
2
ar r , dr , θ , dθ 3 r . dθ
1
aθ r , dr , θ , dθ . 0.1 2 . dr. dθ
r
r0 1 dr0 0 θ0 0 dθ0 0
90
120 60
150 30
r
i 180 0
0 5 10
210 330
240 300
270
θ
i
FIGURE S1.123
58
1.124 Since R(t) = 0.3 + 0.1t2 , Ṙ(t) = 0.2t and R̈(t) = 0.2. Since θ(t) = π sin(πt),
θ̇(t) = π 2 cos πt and θ̈(t) = −π 3 sin πt. Since φ(t) = π2 te−t , φ̇(t) = π2 (e−t − te−t )
and φ̈(t) = π2 (−e−t + (−e−t + te−t )) = π2 e−t (t − 2). Now from equation (1.116)
v(t) = 0.2têR + π2 (0.3 + 0.1t2 )e−t (1 − t)êφ +[0.3 + 0.1t2 ][sin( πt
2
e−t )](π 2 cos πt)êθ
From Eq. (1.118)
a(t) = [0.2 − (0.3 + 0.1t2 )( π2 (1 − t)e−t )2 − (0.3 + 0.1t2 )[sin( πt
2
e−t )]2 (π 4 cos2 πt)]êR
+[(0.3 + 0.1t2 )( π2 (t − 2)e−t ) + 2(0.2t)( π2 e−t (1 − t))
−(0.3 + 0.1t2 )(π 2 cos πt)2 sin( πt
2
e−t ) cos( πt
2
e−t )] êφ
+[(0.3 + 0.1t2 )(−π 3 sin πt) sin( πt
2
e−t ) + 0.4t(π 2 cos πt) sin( πt
2
e−t )
+2(0.3 + 0.1t2 )( π2 e−t (1 − t))(π 2 cos πt) cos( πt
2
e−t ]êθ
1.125 From Sample Problem 1.24 we have a = g sin φêφ , and we are given that R = 200
mm, (Rθ̇)0 = 600 mm/s and that φ0 = π/2, θ0 = 0, g = 9810 mm/s2 . Since
h is constant (R = 200 ⇒ θ̇0 = 3), h = θ̇0 sin2 φ0 = 3 rad/s. Now from
the geometry of spherical coordinates the relation to rectangular coordinates is
(from fig. 1.21)
x(t) = R sin φ cos θ, y = R sin φ sin θ, z = R cos φ
Now to solve the problem we need to integrate (via Eulerian) the two coupled
equations
h h2 cos φ g
θ̇ = sin2 φ
and φ̈ = sin2 φ
+ R
sin φ
subject to the initial condition φ0 = π2 , θ0 = 0, φ̇0 = 0.
59
2
h . cos φ g
aφ φ . sin φ
sin φ
2 R
3
dθ φ
2
sin φ
π
dφ0 0 φ0 θ0 0
2
dφi dφi aφ φi . ∆t
1
φi 1
φi dφi . ∆t
θi 1 θi dθ φi . ∆t
100
0 100
100
100
200
x, y, z
FIGURE S1.125
60
1.126 This is a repeat of problem 1.125 for the case that θ̇0 = 0. Since θ̇0 and the
constant of motion θ̇ sin2 φ = h must hold for all θ, h must be zero and the
kinematic equations become φ̈ = Rg sin φ and θ̇ = 0 which are numerically
integrated in the following figure (Mathcad):
i 0 .. 800 ∆t 0.001 ti ∆t. i h 3 R 200 g 9810
g.
dθ φ 0 aφ φ sin φ
R
π
dφ0 0 φ0 θ0 0
2
dφi 1
dφi aφ φi . ∆t
φi 1
φi dφi . ∆t
θi 1 θi dθ φi . ∆t
100
00.4
0.6
0.8
1.2
100
100
200
x, y, z
FIGURE S1.126
61
1.127 From the solution to problem 1.126, φ̈ = Rg sin φ for the case that the initial
velocity in the circumferential direction is zero (h = 0). We are given that
φ = π + β, β small so that using the trig identity for sin(π + β) we have sin φ =
sin(π + β) = sin π cos β + cos π sin β = − sin β. But since β is assumed small,
we can use the small angle approximation: − sin β = −β, and our differential
2
equation becomes (φ̈ = dtd 2 (π + β) = β̈)
β̈ + Rg β = 0
which was solved analytically in Sample Problem 1.9. The solution is
q q q
g g g
β(t) = β0 cos( R
t) + β̇
R 0
sin( R
t)
where β0 and β̇0 are the initial angle and angular velocity given to the particle.
1.128 From the value of a in spherical coordinates, the following 3 equations result
12 = R̈ − Rφ̇2 − Rθ̇2 sin2 φ
4 = Rφ̈ + 2Ṙφ̇ − Rθ̇2 sin φ cos φ
5 = Rθ̈ sin φ + 2Ṙθ̇ sin φ + 2Rφ̇θ̇ cos φ
which can be numerically integrated subject to the initial conditions
R(0) = 2 Ṙ(0) = 2
θ(0) = 0 θ̇(0) = −2 (since vθ = −4 = R(0) sin φ(0)θ̇(0))
φ(0) = π/2 φ̇(0) = 1/2 (since vφ = R(0)θ̇(0) + 2θ̇(0) + 1)
by direct comparison with v(0) = 2êr + êφ − 4êθ .
62
i 0 .. 1000 ∆t 0.001 ti ∆t . i
1.
aφ R , vR , vφ , vθ , φ 4 2 . vR . vφ R . vθ2 . sin φ . cos φ
R
1
aθ R , vR , vφ , vθ , φ . 5 2 . vR . vφ . sin φ 2 . R . vφ . vθ . cos φ
R sin φ
.
π
vR0 2 R0 2 vφ0 0.5 φ0 vθ0 2 θ0 0
2
vRi 1
vRi aR Ri , vφi , vθi , φi . ∆t
Ri 1 R ivR . ∆t i
vφi 1 vφi aφ Ri , vRi , vφi , vθi , φi . ∆t
φi 1 φ ivφ . ∆t i
vθi 1 vθi aθ Ri , vRi , vφi , vθi , φi . ∆t
θi 1 θ vθ . ∆t
i i
0
1
2
3
15
5 10
0 5
0
x, y, z
FIGURE S1.128
63
1.130 Since the particles start from rest vA (0) = vB (0) = 0 and since vB/A (0) =
vB − vA , vB/A (0) = 0. Since xA = 3t + 2 and xB = 6t2 + 2, vA = 3 and aA = 0,
vB = 12t and aB = 12. Since aB and aA are both constant and different in value:
the two particles never have the same acceleration. The two particles reach the
same position when xB/A = 0. xB/A = 6t2 + 2 − (3t + 2) = 6t2 − 3t = 0 when
t = 0 and when t = 1/2s. Since xB/A = 6t2 − 3t, vB/A = 12t − 3 so that they
have the same velocity when t = 3/12 or t = 1/4s.
1.131 Here you must pick t0 carefully as the cars do not start moving at the same time.
Car B moves with a constant velocity of vB = 15 m/s so that xB = 15t + xB (0)
for all time. Car A on the other hand, starts moving when car B crosses a
position 100 meters out. Starting the clock at 0 when car B crosses the 100
m mark and taking the position x = 0 m as the reference point we can write
xB = 15t+ 100, since vB = 15 m/s implies that xB (t) = 15t+ xB (0) = 15t+ 100.
Now consider car A. We have that xA (t) = t2 until it reaches the speed of 20
m/s. This happens when 2t = 20 or at t = 10 sec. Note that xA (10) = 100 m,
64
1.132 Particle B reverses direction when the velocity is zero. Since xB = 12 + 18t −
18
4.9t2 , vB = 18 − 9.8t = 0 at tr = 9.8 = 1.83s, at this time particle B changes
directions. The two particles will meet when xA = xB or 5+2t = 12+18t−4.9t2 ,
which has solution tc = −0.391, and 3.656s. So they collide at tc = 3.656s. With
relative velocity vB/A (tc ) = 16 − 9.8t = −19.83 m/s. since tc > tr , the particles
collide after B reverses direction as illustrated in the figure.
t 0 , 0.1 .. 4
xB t 12 18 . t 4.9 . t2 xA t 5 2.t
30
xA t 20
xB t
10
0 1 2 3 4
t
FIGURE S1.132
1.133 Let car A be moving to the right with vA (0) = 60 mph = 88 ft/s, xA (0) = 0, and
aA = −16 ft/s2 . Let car B be moving to the left with xB (0) = 300, vB (0) = −88
ft/s and aB = 15 ft/s2 . Integrating each yields
Rt
vA = vA (0) − 0 16dt = 88 − 16t and
xA = xA (0) + 88t − 8t2 = 88t − 8t2
Rt
vB = vB (0) + 16 0 dt = −88 + 16t
xB = xB (0) − 88t + 8t2 = 300 − 88t + 8t2
65
1.134 Solution: vA (0) = 45 mph = 66 ft/s, vB (0) =58 mph = 85 ft/s, xB/A (0) = 500
ft, taking xA (0) = 0 then xB (0) = 500 ft, aA = 4 ft/s and aB = −2 ft/s.
Integrating each yields
vA (t) = vA (0) + 2t = 66 + 2t, xA (t) = xA (0) + 66t + t2 = 66t + t2 ,
vB (t) = vB (0) − 2t = 85 − 2t, xB (t) = xB (0) + 85t − t2 = 500 + 85t − t2 . The
cars meet when xB/A = 0 or when 500 + 85t − 2t2 = 0. This yields two roots for
t, one is negative and the other is t = 33.795s. Using the above formulas, the
cars meet at
xA (33.795) = 3, 373 ft ∼ 0.64 miles and their velocities are
vA (33.795) = 133.59 ft/s and
vB (35.795) = 17.41 ft/s
1.135 Given: aB/A = 3 · m/s2 , vB/A (0) = 0, xB/A (0) = 10 m, and xA = 3t2 + 1
compute aB . Differentiation of xA yields vA = 6t and aA = 6. So that aB/A =
3 = aB − aA = aB − 6, and solving yields aB = 9 m/s2 . Integrating aB/A = 3
yields vB/A (t) = vB/A (0) + 3t = 3t. Integrating again yields xB/A = vB/A (0) +
2
3t22 = 10 + 3t2 . Since xB/A = xB − xA we have 10 + 3t2 = xB − 3t2 − 1 or
xB (t) = 4.5t2 + 11 m.
1.136 Since the time is so large in seconds, leave this in mph, miles and hours. For
the 747, vB = 575 mph and xB = 575t miles. At t = 3 hr., xB (3) = 575(3).
At t = 3 the Concorde takes off and vA = 1336 mph so that xA = 1336t miles.
For t ≥ 3, xB can be rewritten as xB = (575)(3) + 575t, t ≥ 3. The Concorde
catches the 747 at xA = xB or (575)(3) + 575t = 1336t or t = (575)(3)
(76)
= 2.27 hrs.
q
1.137 The pendulum falls as θB (t) = θ0 cos gℓ t, with θ̇B (0) = 0. Consider the vertical
(θ = 0) position as theqreference point at which
q we would like to q know the time
g g π π
tc , i.e., solving θ0 cos ℓ t = 0 for t yields ℓ tc = 2 or tc = 2 gℓ = 1.121 s,
the time it takes the pendulum to cover the angular distance from 20◦ to zero
(note this does not depend on the value of θ0 ). Next consider particle A. It
66
1.138 From eq. (1.77) vB = ℓθ̇B = 5θ̇B since the pendulum is in uniform circular
motion or qradius q
ℓ = 5 m. Differentiation of the expression
q for θB (t) yields
g g √ g
θ̇B = −θ0 ℓ sin ℓ
t so that vB = ℓθ̇ − θ0 gℓ sin ℓ
t . Let tc be the
time of impact
√ calculated
q in problem 1.37. Then q from 1.37, vA = atc so that
g 20 π ℓ
vB/A = −θ0 gℓ sin t −
ℓ q t2c c
t . Substitute tc = 2 g
and θ0 = π9 radians (20◦ )
√ g
yields vB/A = π9 gℓ + 40 π ℓ
= 20.279 m/s.
67
a v 9.81 0.1. v
i 0 . . 4060
∆t 0.001
t .
i ∆t
vA 0
0
yA 0 100
vB 0 30
yB 0 0
vA i 1
vA i a vA i . ∆t
yA i 1
yA i vA i . ∆t
vB i 1 vB i a vB i . ∆t
yB i 1 yB i vB i . ∆t
Position- time of A and B
100
yA
yB 50
0
0 1 2 3 4 5
ti
time s
68
1.140 Let vs denote the velocity of the swimmer starting from rest and vc = 0.1+0.1xs
denote the velocity of the river (opposite of vs ). Then vs/c = 1.5 m/s = vs − vc
so that vs = vc + 1.5 = −0.1 − 0.01xs + 1.5 or dx dt
s
+ 0.01xs = 1.4 which can
be solved R by use of an integrating factor for xs . Here p(t) = 0.01, f (t) = 1.4,
.01dt 0.01t 0.01t
R 0.01t
λ(t) = e =e so that xs (t) = e [ e (1.4) + C0 ] = 140 + C0 e−0.01t .
Since xs (0) = 0, C0 = −140 and xs (t) = 140(1 − e−0.01t ), xs (60) = 140(1 −
e−0.6t ) = 63.2 m.
i 0 . . 14000 ∆t 0.01
v x, t 1.4 0.01. x
x0 0
x xi v xi , t . ∆t
i+1
150
100
x
i 50
0
0 50 100 150
t
i
FIGURE S1.140
69
1.141 Since xs (t) = 140(1 − e−0.6t ) from problem 1.40, the swimmer will reach 100 m
at time t that satisfies 100 = 140(1 − e−0.6t ) or t = −ℓn(1/7)
0.1
= 125 s.
1.142 Given vA (t) = ĵ m/s (constant), vB (0) = 0, aB (t) = 2[cos 30◦ î + sin 30◦ j] n/s
a constant. Also rA (0) = 0, rB (0) = −4î + ĵ m. From va (t) = 3ĵ. rA (t) =
rA (0) + 3tĵ = 3tĵ. Integration of aB (t) yields: vB (t) = vB (0) + 1.73tî + tĵ m/s
= 1.73tî + tĵ. Integrating again yields
1.73 2
rB (t) = 2
t î + 12 t2 ĵ + rB (0) = (0.866t2 − 4)î + (0.5t2 + 1)ĵ
Thus rB/A (t) = (3t + 4 − 0.866t2 )î − (0.5t2 + 1)ĵ. For this to be zero, each
component must be zero, which cannot be because the ĵ component is always
positive,
q
hence t has no real roots. The distance between the particles is |rB/A | =
(3t + 4 − 0.866t2)2 + (0.5t2 + 1)2 . The minimum can be found from
d
dt
[(3 + 4 − 0.866t2 )2 + (0.5t2 + 1)2 ] = 0
2(3t + 4 − 0.866t2 )(3 − 1.73t) + 2(0.5t2 + 1)(t) = 0
which is cubic in t and has positive solutions. Then t = 0 or rB/A = 4i = ĵ is
when the two particles are closest. As time evolves they move apart (roots
found using Mathcad).
1.143 Using y up along north and x to the right along east, the airplane has relative
speed of vA/W = 200(cos θî + sin θĵ) mph where θ is the unknown direction.
The wind velocity is vw = 50(cos 45◦ î + sin 45◦ i) = √502 î + √502 ĵ = constant. We
would like vA = 200î. From the definition then
vA = vW + vA/W = (50)[(0.707)î + (0.707ĵ)] + 200(cos θî + sin θ)ĵ
which results in the two scalar equations
vA = 35.4 + 200 cos θ
0 = 35.4 + 200 sin θ
Solving yields: θ = −10.2◦ and vA = 232.2 mph.
70
1.145 Following sample 1.28, let vs be the absolute velocity of the swimmer. With î
perpendicular to the shore and ĵ up stream, vs = v î, where v is the unknown
absolute speed of the swimmer. Let θ be the angle that vs/w (swimmer relative
to the water) so that
vs/w = 6 cos θî + 6 sin θĵ (ft/s)
vw = −5ĵ ft/s, so that
vs = vw + vs/w becomes
v î = −5ĵ + 6 cos θî + 6 sin θĵ
from î: v = 6 cos θ
from ĵ: 0 = 6 sin θ − 5
which is 2 equations in two unknowns: θ and v. Solving yields θ = 56.4◦ ,
v = 3.3 ft/s. The time to travel 200 ft is t = vd = 200
3.3
= 60.3 sec.
71
Seattle
21.80
45 0 450
1200 mi
The direct flight from Seattle to Miami would be along a path South 21.80 of East. The
wind direction for the 1200 miles was estimatedto be South 450 East, during the next 600
miles the wind direction is to the East and during the last 1200 miles, the wind is North
450 East. The wind speedis estimatedto be 50 mph.
The general relative motion equationfor any segmentof the flight is:
vP = vw + vp / w
[
v p = vp cos(21. 8) ˆi − sin( 21. 8) ˆj]
vw = 50[cos(45) ˆi − sin( 45) ˆj ]
vp / w = 300[cos(θ ) ˆi + sin(θ ) ˆj ]
The scalar equationsof relative motion are solved using the Given-Find function in
Mathcad:
Make an initial guess for the velocity of the plane and the bearingof the plane
vp 300
θ 10. deg
Given
v p. cos 21.8. deg 50. cos 45. deg 300. cos θ
v p. sin 21.8. deg 50. sin 45. deg 300. sin θ
72
21.80
1200 mi
Wind Vel E S 85 0 E E N 30 0 E S 30 0 E
The solution will be made using the Given - Find function of Mathcad:
Leg 1.
Make an initial guess for the velocity of the plane and the bearingof the plane
vp 300
θ 10. deg
Given
v p. cos 21.8. deg 100. cos 0. deg 300. cos θ
v p. sin 21.8. deg 100. sin 0. deg 300. sin θ
390.541 0.505
Find v p , θ = = 28.934
0.505 deg
vp = 391 mph θ = -30 0
Leg 2.
Make an initial guess for the velocity of the plane and the bearingof the plane
vp 300
θ 10. deg
Given
v p. cos 21.8. deg 100. cos 85. deg 300. cos θ
v p. sin 21.8. deg 100. sin 85. deg 300. sin θ
331.502 0.078
Find v p , θ = = 4.469
0.078 deg
73
1200 mi
The flight is now to the West against the jet stream. The flight will be divided into three
legs.
Leg 1.
Make an initial guess for the velocity of the plane and the bearingof the plane
v p 200
θ 10. deg
Given
v p. cos 10. deg 50. cos 45. deg 200. cos θ
v p. sin 10. deg 50. sin 45. deg 200. sin θ
167.082 0.032
Find v p , θ = = 1.833
0.032 deg
The velocity of the plane and the course bearingare: vp = 167 mph θ = S 2 0 W
Leg 2.
Make an initial guess for the velocity of the plane and the bearingof the plane
v p 200
θ 10. deg
Given
v p. cos 10. deg 50. cos 0. deg 200. cos θ
v p. sin 10. deg 50. sin 0. deg 200. sin θ
150.571 0.131
Find v p , θ = = 7.506
0.131 deg
74
21.80 Chicago
1200 mi
Memphis
Wind Vel E S 85 0 E E N 30 0 E S 30 0 E
The desired flight path from Chicago to Memphis is assumedto be S 800 E under a 100-
mph wind N 300 E.
Make an initial guess for the velocity of the plane and the bearingof the plane
vp 300
θ 80. deg
Given
v p. cos 80. deg 100. cos 30. deg 300. cos θ
v p. sin 80. deg 100. sin 30. deg 300. sin θ
250.701 1.715
Find v p , θ = = 98.262
1.715 deg
The velocity of the plane and the course bearingare: vp = 251 mph θ = S 82 0 W
2d 40
1.150 From sample 1.29 the time to reach the opposite shore is tf = vB/w cos θ
= cos θ
sec. The expression for y(t) at y(tf ) = 500 becomes
2
10·cos θ 403 402
500 = 5 200 3·cos3 θ
− 2 10200
cos θ
· 2 cos2 θ
40
+ 10 sin θ cos θ
which is transendental in θ and has solution (see numerical root finder) θ = 56.43◦.
75
1.152 From sample 1.30, the 3 equations determining vs , θ and β with vRT = 0.7
become
θ + β = 90◦
−vs cos β = −0.3 cos θ
vs sin β = 0.7 − 0.3 sin θ
Solving using Mathcad yields: θ = 24.8◦ , β = 64.3◦ and vs = 0.632 m/s.
76
θ 30 . deg t 0 , 0.1 .. 3
2 . sin π . t 4 . t . cos θ
xB t 5.t xG t 4 . t . sin θ
d t xB t xG t
0 0
15
10
Distance m
d t
0 1 2 3
t
Time s
FIGURE S1.154
77
θ 30 . deg t 0 , 0.1 .. 3
4 . t . cos θ
2 . sin π . t
π .t
xB t 5.t xG t 4 . t . sin θ . sin
2
0
0 d t xB t xG t
30
20
Distance m
d t
10
0 1 2 3
t
Time s
FIGURE S1.156
The Matlab code is:
syms t
th=pi/6;
xb=[2*sin(pi*t);5*t;0];xG=[4*t*cos(th);4*t*sin(th)*sin(pi*t/2);0];
d=sqrt(dot(xb,xG));
ezplot(d,[0,3])
78
79
i 0 .. 3000 ∆t 0.001 ti i . ∆t
ax vx , t 1 0.2 . vx 3.t
ay vy , t 2 . 0.0612 0.2 . vy
az vz , t 0.621 . 2 0.2 . vz 2 . cos π . t
10 10
xi 5 vi 5
0 1 2 3 0 1 2 3
ti ti
FIGURE S1.157
The Matlab code ode45 can be used to solve this numerically. The plots of x(t)
and r(t) can be obtained symbollically from:
sys t
x=[tˆ3/2-5*(t-5*(exp(-0.2*b)-1));6.12*(t+5*(exp((-0.2*t)-1));(1/piˆ2)*(cos(pi*t)-
1)];
Nx=SVD(x);
ezplot(Nx(3),[0,3])
80
1.159 Since xA starts to move 1.5s after xB , shift the time of xB ahead by 1.5s by
replacing t with t + 1.5 in the expression for xB derived in Problem 1.157. This
yields
(t+1.5)3 1
xB = 3
î − π2
(1 − cos(π(t + 1.5))k̂
Then for t ≥ 4.5s,
(t+1.5)3
h i
xB/H = 2
− 5(t + 5(e−0.2t − 1) î − 6.12 [t + 5(e0.2t − 1)] ĵ
n o
2
+ 6.12 [t + 5(e−0.2t − 1)] − π2
(1 − cos(πt + 1.5)) k̂
and for 0 < t < 1.5
(t+1.5)3 2
xB/A = 2
î − π2
(1 − cos(π(t + 1.5))k̂.
i 0 .. 3000 ∆t 0.001 ti i . ∆t
vx 0 0 x0 0 vy 0 0 y0 0 vz0 0 z0 0
ax vx , t 1 0.2 . vx . Φ t 1.5 3 t
ay vy , t 2 . 0.0612 0.2 . vy . Φ t 1.5
az vz , t 0.621 . 2 0.2 . vz . Φ t 1.5 2 . cos π . t
vx i 1 vx i ax vx i , ti . ∆t
xi 1 xi vx i . ∆t
vy i 1 vy i ay vy i , ti . ∆t
yi 1 yi vy i . ∆t
vzi 1 vzi az vzi , ti . ∆t
zi 1 zi vzi . ∆t
2 2 2 2 2 2
vi vx i vy i vzi xi xi yi zi
20 40
xi 10 vi 20
0 1 2 3 0 1 2 3
ti ti
FIGURE S1.159
81
1.161 Use the pulley as a reference point, and let xA be the distance from the pulley
to A and xB the distance from the pulley to B. Then
xA + xB = constant and differentiating yields
xA = −vB , and aA = −aB .
1.162 Let vc be the cable velocity: vc = 0.5 m/s. Let xT denote the distance from the
tree to the end of the truck. The length to the cable is xc + 2xT = ℓ so that
vc = −2vT or vT = − 21 vc = −0.25 m/s (right)
1.163 Let xA be the distance for the pulley to the man at A, xp be the distance
between the top pulley and the bottom pulley. Let xB be the distance from the
top pulley to B and let the bracket for the bottom pulley be a height of c. Then
xA + 2xp + xB − c, but xp = (xB − c)
so that xA + 3xB =constant and vA = −3vB
with xB , xA pointed down, B traveling upwards yields
vB = −10 ft/s and vA = −3 · (−10) = 30 ft/s (down)
1.164 Let xA denote the distance from the top of the pulley to block A, yB denote the
distance from the top of the pulley down to the pulley holding B and y denote
the distance from the top of the pulley down to mass c (down position, to the
right position). Then the length of the rope is
yc + 2yB + xA = constant
differentiation yields
vA + 2vB + vC = 0
or
vc = −2vB − 3 m/s and ac = −2aA − 1 m/s
82
h2 = 152 + x2 (1)
ℓ = h + (15 − y) = 30 (2)
1.166 Let xA extend from the fixed pulley above B to the left of pulley B to mass A
and let yB extend (positive) from the same pulley down to the mass at B. Let
d be the distance between the two fixed pulleys. Then the length of the rope is
ℓ = 2yB + xA + (xA − d) + (xA − d)
or
const. = 2yB + 3xA .
Differentiate to get:
−3
ẏB = ẋ
2 A
and ÿB = − 23 ẍA .
1.167 Use the top fixed pulleys as a reference and let xA denote the distance to mass
A, xB the distance to mass B, xc the distance to mass C and denote xp the
distance to tohe pulley that is free to move. All distances are vertical with
positive downward. There are two separate ropes. Let ℓ1 denote the from A to
the movable pulley so that
ℓ1 = xA + xB + (xB − xp ) (1)
83
ℓ2 = xc + 2xp (2)
1.168 Let the top pulley be the fixed frame of reference, and x denote the distance
from the reference down (t) to the mass, and let xm be the distance from the
reference down (t) to a point on the rope connecting to the motor. Them
ℓ = xm + 2x
and differentiation yields that
v = 12 vm
1
From section 1.7 vm = rw = (0.2)(9.55 rad/s = 1.91 m/s and v = v
2 m
=
0.955 m/s
1.169 Let yB denote the distance from the pulley to the mass at A (+ down), let xB
denote the distance from the pulley to the collar along the shaft. The length of
the rope is ℓ = da + yB . From the right triangle madeqby “d”, the bar the collar
2
rides on, and the rope: ℓ1 . Thus ℓ = d + yB = yB + d2 + x2B . Differentiating
yields 0 = ẏB + 12 √2xB2 ẋB2 .
d +xB
1.170 Pick a fixed point to left of block A as the reference and define xA and xc
(both positive to the right) as the distance from the reference to block A and C
respectively. Then define yc to be the distance down from the first pulley to B.
The length of the rope ℓ is then ℓ = xA + xc + 2yB anad differentiation yields
vA = −vc − 2vB .
1.171 Solution:
ds ds2
dt
= 20 m/s = constant so s = 20t and dt2
=0
s
θ(s) = 4 sin( 2000 ) so that θ(t) = 4 sin(0.5t)
From equation 1.147 with x0 = y0 = 0
Rs Rs
x(s) = 0 cos(θ(η))dη y(s) = 0 sin θ(η)dη
84
s 0 , 10 .. 6000 s
θ s 4 . sin
2000
s
s
x s cos θ u du
0 y s sin θ u du
0
2 d
an s 20 . θ s
ds
1000
y s
km
1000
x s
km
1
normal acceleration m/s^2
an s 0.5
FIGURE S1.171
2
ds dθ(s) 4 s s
From (1.146): an = dt ds
= (20)2 200 cos 200
= 800 cos 200
√
1.172 We are given that a(s) = 5 so that integrating vdv = 5ds yields v(s) = 10s
s2 dθ 2s
for zero initial condition. Also sinceqθ = 1 + 2000 2 , ds = 10002 . But an (s) =
q
v(s)2 dθ
ds
2s
= (10s)( 2000 2 ). Thus |a| = a2n + a2t = 2s
(10s)2 ( 2000 2
2 ) + 25. When
85
an s
2
FIGURE S1.173
1.174 This requires the use of the 3-D formulation of equation 1.150. The component
of a normal to the above can be found by taking the dot product of the accel-
eration with the unit normal vector. To define the unit normal vector can be
found from an = a = at = a − a · t. First we need dθ ds
and dβ
ds
. From the given
dθ 1 dβ π 2 πs
−s/1000
form: ds = 1000 (0.5 − e ), ds = 5000 cos 5000 . The Mathcad solution:
v 88 s 0 , 10 .. 5000
s π.s
s 1000 β s π . sin
θ s e 5000
2000
2 2
2 d . cos β s 2 d
an s v . θ s β s
ds ds
normal acceleration in ft/s^2
20
an s 10
FIGURE S1.174
86
s π .s
v 88 s 0 , 10 .. 5000 s 1000 β s π . sin
θ s e 5000
2000
v s 2 . 1.5 . s
2 2
d d
an s v s 2. θ s . cos β s 2
β s
ds ds
normal acceleration in ft/s^2
40
an s 20
FIGURE S1.175
1.176 Solution:
s π .s
v 88 s 0 , 10 .. 5000 s 1000 β s π . sin
θ s e 5000
2000
1
ρ s
2 2
d . cos β s 2 d
θ s β s
ds ds
3000
radius of curvature in ft
2000
ρ s
1000
FIGURE S1.176
87
s 0 , 1 .. 50 s
θ s π π .s
100 β s . sin
2 25
v 10
2 2
2 d 2 d
an s v . θ s . cos β s β s
d s ds
normal acceleration in m/s^2
20
an s 10
0 10 20 30 40 50
s
distance traveled in m
FIGURE S1.177
1.178 Solution:
s 0 , 1 .. 100 s π π .s
θ s
100 β s . sin
2 25
π .s
v s 10 5 . cos
25
2 2
2. d 2 d d
an s v s θ s . cos β s β s at s v s .v s
ds ds ds
a s at s 2 an s 2
60
total acceleration in m/s^2
40
a s
20
0 20 40 60 80 100
s
distance traveled in m
FIGURE S1.178
88