| 1:15, assuming "overtake" means the front of one train passes the
front of the other. I hope they are on different tracks.
To obtain that solution, convert all units to yards, seconds, or
yards per second. Write six functions:
1) position of front of north-bound train:
Vn*t
2) position of back of north-bound train:
Vn*t - 88 yards
3) position of front of first south-bound train:
-Vs*t
4) position of back of first south-bound train:
-Vs*t + 88 yards
5) position of front of second south-bound train:
(Vn*900) - Vx(t-900)
6) position of back of second south-bound train:
(Vn*900) - Vx(t-900) + 132 yards
Time and distance are measured from noon at the place where the first
trains met. North is positive. Set 2 and 4 equal at t=6 and solve
for Vs. Set 2 and 6 equal at t=906 and solve for Vx. Set 3 and
5 equal and solve for t.
-- edp
|