A man plans on arriving by train at the station at 3:00 p.m. and to have his wife drive him home. Instead, he catches an earlier train and arrives at the station at 2:00 p.m. He decides to walk towards home and is picked up by his punctual wife en route. They arrive home 20 minutes earlier than planned. How long did he walk? Assume that there is no time lapse at the meeting place Also assume that wife starts on her drive to the station after 2:00 pm.
(This is from a problem solving book which didn't give any solutions to the listed problems but listed them as challenges For anyone who wants to checks it out, the source is this: Adventures In Problem Solving By Shailesh Shirali)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice! This is a neat solution. all the variables for time assumed are measured from 2:00 p.m, right?
This problem has a lot of variables involved, but the answer can be found using the given information, by manipulating the conditions.
let's assume the distance between the train station and the home is 'x' m.
Now let's assume the wife started out on her pick-up journey 't' minutes before 3:00 pm(that means she started out (60-t) minutes after 2:00 p.m.-this bit of information will be crucial later.)
Now she had planned to bring the man back home by ′ 2 t ′ minutes after she had started.
But she met the man when she had only traveled a distance, say 'y' m, so she traveled to their unexpected meeting-place in x y t minutes, and brought him back by twice of that time period.
So lets write
expected time-real time =20 minutes
this means
2 t − x 2 y t = 2 0
or
t ( 1 − x y ) = 1 0 - (equation 1)
Now, this is the fun part. The man obviously walked for some time before reaching the real meeting-place. He started from 2:00 pm. Measuring from 2:00 p.m the woman would have taken the same time to reach the real meeting-place as well.
So the woman started out '60-t' minutes after 2 p.m. Then she took x y t minutes to walk to the meeting-place.
This means that the man walked for
( 6 0 − t ) + x y t minutes in total
this can be written as
6 0 − ( t ( 1 − x y ) )
from equation 1 this becomes
6 0 − 1 0 = 5 0
Thus the man walks for 50 minutes.
So one needs to keep track of what one has to find without getting fazed by the variables, and manipulate them in a clever way.
Although this approach is lengthy, it pays off in the end.
Problem Loading...
Note Loading...
Set Loading...
Let t 0 be the time at which the wife departs towards the train station,
let t 1 be the planned pickup time (3:00pm),
and let t p be the actual pickup time.
The time it takes to drive from the train station to home is then t 1 − t 0 , and so the expected time of arrival is t 1 + ( t 1 − t 0 ) = 2 t 1 − t 0 . The couple arrives home 20 minutes early, so the actual time of arrival, T , is T = 2 t 1 − t 0 − 2 0 .
Additionally, the time it takes to drive from the actual pickup location to home is t p − t 0 , and so the actual time of arrival is T = t p + ( t p − t 0 ) = 2 t p − t 0 .
Equating these two equations for the actual arrival time, we get 2 t 1 − t 0 − 2 0 = 2 t p − t 0 ⟹ t p = t 1 − 1 0 . That is, the husband was picked up 10 minutes before 3:00pm, at 2:50pm, and thus he walked for 50 minutes.