The Kaplan solution to the problem just says backsolve from the answer choices till values are found that satisfy the conditions. This is less than ideal if I'm trying to figure out how to setup the actual math.
The question:
A bike messenger pedals at a constant rate from Location A to Location B, a distance of 4,800 meters. If she had traveled at a constant rate that was 200 meters per minute faster than her actual rate, she would have arrived at Location B 2 minutes earlier. How many minutes did the bike messenger spend travelling from Location A to Location B.
I set up the time like so: $$ \begin{align} \frac{4,800}{r + 200} + 2 = t \end{align}$$
And then solved for $4,800 = (r + 200) (\frac{4,800}{r + 200})$, but that doesn't lead anywhere.
How would I correctly solve this problem?
We have $t=\frac{4800}r$, $$\frac{4800}{r}-\frac{4800}{r+200}=2$$
which give us a quadratic equation, solve for $r$, then compute $\frac{4800}r$ to get the time taken.
Edit:
View $200$ as $1$ distance unit. Then the problem would be
$$\frac{24}r-\frac{24}{r+1}=2$$ $$\frac{12}r-\frac{12}{r+1}=1$$ $$12=r(r+1)$$ $$r^2+r-12=0$$ $$(r+4)(r-3)=0$$ $$r=3$$ $$t=\frac{24}{3}=8$$