Question 1069175
.
tom drove 320 miles in 6 hours. his average speed for the first part of the trip was 60 mph and his average speed for 
the second part of the trip was 50 mph. how long did each part of the trip take him?
~~~~~~~~~~~~~~~~~~~~~


You can solve it using system of 2 equations in 2 unknowns


<pre>
{{{t[1] + t[2]}}} = 6,            (1)     (time equation
{{{60*t[1] + 50*t[2]}}} = 320      (2)     (the distance equation)

where  {{{t[1]}}} is the time of driving at 60 mph,  {{{t[2]}}} is the time of driving at 50 mph,
</pre>

or you can solve it using only ONE equation


<pre>
60*t + (6-t)*50 = 320,     (3)

where t is the time of driving at 60 mph.
</pre>

For me, (3) is simpler:


60t + 300 - 50t = 320,


10t = 20,


t = 2.


<U>Answer</U>.  2 hours at 60 mph and 6-2= 4 hours at 50 mph.