I am trying to solve this question:
A, B and C do a piece of work together. A could've done it in 6 hours longer, B in 15 hours longer and C in twice the time. How long did it take all three to do the work together?
My attempt:
Let the time for A, B and C to do it be $x$. Then:
- A takes $x+6$ hours.
- B takes $x+15$ hours.
- C takes $2x$ hours.
LCM of $x+6$ and $x+15$ and $2x$ is $2x(x+6)(x+15)$. In this time:
- A can do $2x(x+15)$ of work.
- B can do $2x(x+6)$ of work.
- C can do $(x+6)(x+15)$ of work.
So in total they do $2x(x+15) + 2x(x+6) + (x+6)(x+15)$ work.
$= 5x^2 + 63x + 90$.
I'm not sure what to do next, or if I'm even on the right method. Am I on the right track? Is there a better method? What do I do next?
Express their rates of work as the amount they do in 1 hour:
A does $1/(x+6)$
B does $1/(x+15)$
C does $1/2x$
So in 1 hour they do $1/(x+6) + 1/(x+15) + 1/2x$ amount of work.
So in x hours they will complete the job; in other words:
$x(1/(x+6) + 1/(x+15) + 1/2x)$ = 1.
Solve this, and we get $x^2 + 7x - 30 = 0$, so $(x+10)(x-3)=0$.
Since x cannot obviously be negative, x = 3.
So 3 hours.