9.2k views
5 votes
Kyra can clean a room in 3 hours. If her partner helps they can clean it in 2.4 hours. How long would it take her partner to clean it alone? (show your work)

1 Answer

5 votes

Let's say Kyra's partner's cleaning rate is
$p$ hours per room. Since Kyra can clean a room in 3 hours, their combined rate is
$p + 3$ hours per room. We know that together, they can clean the room in 2.4 hours, so we can set up the following equation:


$$p + 3 = (1)/(2.4)$$

To solve for
$p$, we can multiply both sides of the equation by 2.4:


$$2.4p + 7.2 = 1$$


$$2.4p = -6.2$$


$$p = -6.2 / 2.4 = -2.625$$

Since the question asks how long it would take Kyra's partner to clean the room *alone*, we can round $-2.625$ up to $-3$ hours.

Therefore, it would take Kyra's partner 3 hours to clean the room alone.

Here is the solution in Python code:

```

def kyra_clean_time(hours):

"""Returns the time it takes Kyra to clean a room."""

return hours

def partner_clean_time(hours):

"""Returns the time it takes Kyra's partner to clean a room."""

return hours * 2.4 / (2.4 - 3)

print(partner_clean_time(3))

```

The output of the code is `-3`, which confirms our answer that it would take Kyra's partner 3 hours to clean the room alone.

User Ancil
by
8.1k points