
William S. answered 04/25/21
Programmer/Data Engineer trained in Physics, Math, & Philosophy
My approach would be to define terms up front:
D = distance
Su = usual speed
Tu = usual time
St = today's speed
Tt = today's time
Then write out any relationships you know. For example, for either day, the distance will equal the product of speed and time, so we can write the following two equations:
D = Su * Tu
D = St * Tt
We also know:
D = 200
Placing D on the right-hand side, and substituting the value of 200, our equations become:
Equation 1: Su * Tu = 200
Equation 2: St * Tt = 200
That's two equations in four unknowns, which is not solvable. So we need more information. Fortunately, we also know that today's speed is 10 mph slower than usual:
St = Su - 10
And we know that today's time is 1 hour more than usual:
Tt = Tu + 1
Now we need to put this all together to get the desired answer, namely the usual speed, Su. Let's take our two equations in four unknowns and manipulate them into two equations in just two unknowns. We can do this by substituting these additional pieces of information into Equation 2 to get a new version, Equation 2B:
Equation 2B: (Su - 10) * (Tu + 1) = 200
Multiplying this out and combining constant terms we get
Su * Tu - 10Tu + Su - 10 = 200
Su * Tu - 10Tu + Su = 210
Now our original Equation 1 and our new Equation 2B form a system of two equations in two unknowns:
Equation 1: Su * Tu = 200
Equation 2B: Su * Tu - 10Tu + Su = 210
We need another substitution to get rid of Tu in one of these equations. Let's manipulate Equation 1 to isolate Tu:
Tu = 200 / Su
Now substitute this into Equation 2B wherever we see Tu:
Su * (200 / Su) - 10(200 / Su) + Su = 210
We now have one equation in one unknown. Getting very close! Simplify this a bit:
200 - (2000 / Su) + Su = 210
Su - (2000 / Su) - 10 = 0
To get Su out of the denominator in (2000 / Su), multiply both sides of the equation by Su:
Su2 - 10Su - 2000 = 0
This equation is now in fighting trim. Solving for Su means cracking the quadratic polynomial, either using the quadratic equation, or by factoring. In this case, factoring is possible, giving:
(Su + 40)(Su - 50) = 0
Mathematically this has two "zeroes" or solutions;
Su + 40 = 0 ==> Su = -40
OR
Su - 50 = 0 ==> Su = 50
Since we know it is not possible for your usual speed to be negative 40 miles per hour (this is just speed, not directed velocity), we can treat 50 mph as the correct answer.
Su = 50 mph
Let's check our answer out. Using Su = 50, solve our original Equation 1 for Tu, our usual time:
Tu = (200 / Su) = 200/50 = 4 hours
Now take 10 mph off the usual speed Su to get today's speed St:
St = 40 mph
Based on this, today's time Tt time for today would be:
Tt = (200 / St) = 200/40 = 5 hours.
That checks out! So Su, the usual speed, is verified to be 50 mph.