Question 282326
.
Each day, Amit runs nine miles and then walks one mile. He runs 10 mph faster than he walks. 
If his total time is 75 minutes, then what is Amit's running speed?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



        The solution and the answer in the post by @mananth both are incorrect due to arithmetic errors on the way.

        I came to bring a correct solution.



<pre>
let him walk at x mph
he runs x+10 mph

time taken for running = 9/x+10
time he walks = 1/x


Time equation

    1/x + 9/(x+10) = 5/4 hours


Simplify and find x

    4(x+10) + 36x = 5x(x+10)

    4x + 40 + 36x = 5x^2 + 50x

    40x + 40 = 5x^2 + 50x

    5x^2 + 10x - 40 = 0

    x^2 + 2x - 8 = 0

    (x+4)*(x-2) = 0.


The roots are x= -4 and x= 2.

Since we look for the speed, we accept the positive root x= 2 and reject the negative one.


<U>ANSWER</U>.  Amit's walking speed is 2 miles per hour and his running speed is 2+10 = 12 mph.


<U>CHECK for the travel time</U>.  {{{9/12 + 1/2}}} = {{{9/12 + 6/12}}} = {{{15/12}}} = {{{5/4}}} of an hour.

                            ! precisely correct !
</pre>

Solved correctly.