177k views
2 votes
Fabio and Gwen are saving money to buy a new gaming station. They need at least $510 to purchase the new gaming station. Gwen weeds yards and Fabio walks dogs to raise money. Gwen charges $12 each time she weeds a yard and Fabio charges $9 each time he walks a dog. The number of dog walks that Fabio has scheduled is no more than twice the number of yards Gwen has scheduled to weed. Fabio will walk at least 25 dogs.

Write a set of constraints to model the problem, with x representing the number of lawns weeded and y representing the number of dogs walked.

Please show the work. Thanks

1 Answer

1 vote

x represents the number of lawns weeded by Gwen and y represents the number of dogs walked by Fabio.

Gwen charges $12 each time she weeds a yard and Fabio charges $9 each time he walks a dog.

So, for x number of weeds, Gwen earned 12x and for y number of dogs walked, Fabio earned 9y.

They need at least $510 to purchase the new gaming station.

Therefore,

12x + 9y ≥ 510

Also, the number of dog walks that Fabio has scheduled should not be more than twice the number of yards Gwen has scheduled to weed.

Therefore,

y ≤ 2x

Also, Fabio will walk at least 25 dogs.

Therefore,

y ≥ 25

Hence, the constraints are:

12x + 9y ≥ 510

y ≤ 2x

y ≥ 25

User PuskarShestha
by
5.4k points