So here's my problem I'm having:
Say someone runs or walks 40 kilometers in a day in 8 hours. We don't know how many kilometers in specific the person was walking or running, though that's what we'd like to know.
We do know the persons average running / walking speed though:
- Running speed: 9 km/h
- Walking speed: 4 km/h
Is there a way to figure out how many kilometers the person was running and how many walking, assuming that there are only the two speeds mentioned above?
The person walks during $t_1$ hours and makes $4t_1$ km
The person runs during $t_2$ hours and makes $9t_2$ km
The resulting distance is $4t_1+9t_2 = 40$ km
The total time is $t_1+t_2=8$ hours
Can you solve the system ?
Here is an alternating way of thinking about the problem.
First let's have a look at this one:
We need 56 biscuits to feed 10 animals (cats and dogs). Dogs each 6 biscuits and cats eat 5 biscuits. How many cats and dogs are there?
We can solve with the system $\begin{cases} 5c+6d = 56\\c+d=10\end{cases}$
See the analogy with your problem ? Replace $(c,d)$ by $(t_1,t_2)$ and this is very similar.
We can solve it this way:
We conclude for $6$ dogs and $4$ cats.
Now coming back to our problem:
There are $40$ km to be travelled by me (walking me and running me). Walking me travel at $4$ km/h while running me travel at $9$ km/h. How much of walking and running is there?
So I ran for 1h 36 min and walked the rest.