Respuesta :
Hey there,
So. . I hope I'm understanding the question correctly. So . .There's 2 drivers in the car and they basically take turns driving. So when you do 70 by 15 hours, you get about 1,050 and yes, for sure you have past the limit of 600 miles a day. So, this means that they already passes what they had said in the beginning.
Hope this helps.
~Jurgen
So. . I hope I'm understanding the question correctly. So . .There's 2 drivers in the car and they basically take turns driving. So when you do 70 by 15 hours, you get about 1,050 and yes, for sure you have past the limit of 600 miles a day. So, this means that they already passes what they had said in the beginning.
Hope this helps.
~Jurgen
allow x to be equal to your driving time in hours.
allow y to be equal to your friend's driving time in hours.
since rate * time = distance, then your rate times your time equals your distance and your friend's rate times your friend's time equal his or her distance.
your requirements are:
you and your friend's combined driving time has to be less than or equal to 15 hours.
you and your friend's combining driving distance has to be greater than or equal to 600.
the hours that your friend drives must be greater than or equal to the hours that you drive.
an additional constraint not mentioned is that the number of hours that you drive must be greater than or equal to 0.
a graphical solution was chosen as the way to solve this since it is a two dimensional problem with x and y being the only variables.
x is your time.
y is your friend's time.
constraint equations are:
x + y <= 15
70x + 60y >= 600
y >= x
x >= 0
these equations need to be graphed in order to find the feasible region.
in order to graph these equations, each equation is solved for y.
you get:
y <= 15 - x
y >= (600-70x)/60
y >= x
x >= 0 (my graphing software allows this)
these equations were graphed and the corner points of the feasible region were calculated.
the graph with the feasible region and the corner points is shown below:
from this graph, it appears that the limits of the values of x and y are:
0 <= x <= 7.5
4.615 <= y <= 15
this means that you can drive from 0 to 7.5 hours and your friend can drive from 4.615 to 15 hours.
the corner points on the graph are where the maximum / minimum values of x and y can be found.
anything in between is good as long as the requirements are observed.
for example:
when you drive 0 hours, your friend must drive at least 10 hours so that the minimum distance can be achieved.
when you drive 4.615 hours, your friend must drive 4.615 hours as well for the minimum distance to be achieved.
when you drive 7.5 hours, your friend must drive 7.5 hours as well to satisfy the requirements that your friend must drive at least as many hours as you and your combined time must be less than or equal to 15 hours.
you can pick any hours for you and for your friend as long as the requirements are observed.
for example:
if you pick 5 hours for yourself, then you friend can drive a minimum of 5 hours because your friend's hours must be greater than or equal to yours, or your friend can drive a maximum of 10 hours because you and your friend's time must be less than or equal to 15.
when you drive 5 hours and your friend drives 10 hours, you distance traveled is 70*5 + 60*10 = 350 + 600 = 950 miles which is greater than 600 miles so you've met all the constraints.
you can't drive more than 7.5 hours because your friend must drive at least as much as you and 7.5 + 7.5 = 15, so if you drove more than 7.5, you would both have to be driving more than1 15 which isn't allowed.
allow y to be equal to your friend's driving time in hours.
since rate * time = distance, then your rate times your time equals your distance and your friend's rate times your friend's time equal his or her distance.
your requirements are:
you and your friend's combined driving time has to be less than or equal to 15 hours.
you and your friend's combining driving distance has to be greater than or equal to 600.
the hours that your friend drives must be greater than or equal to the hours that you drive.
an additional constraint not mentioned is that the number of hours that you drive must be greater than or equal to 0.
a graphical solution was chosen as the way to solve this since it is a two dimensional problem with x and y being the only variables.
x is your time.
y is your friend's time.
constraint equations are:
x + y <= 15
70x + 60y >= 600
y >= x
x >= 0
these equations need to be graphed in order to find the feasible region.
in order to graph these equations, each equation is solved for y.
you get:
y <= 15 - x
y >= (600-70x)/60
y >= x
x >= 0 (my graphing software allows this)
these equations were graphed and the corner points of the feasible region were calculated.
the graph with the feasible region and the corner points is shown below:
from this graph, it appears that the limits of the values of x and y are:
0 <= x <= 7.5
4.615 <= y <= 15
this means that you can drive from 0 to 7.5 hours and your friend can drive from 4.615 to 15 hours.
the corner points on the graph are where the maximum / minimum values of x and y can be found.
anything in between is good as long as the requirements are observed.
for example:
when you drive 0 hours, your friend must drive at least 10 hours so that the minimum distance can be achieved.
when you drive 4.615 hours, your friend must drive 4.615 hours as well for the minimum distance to be achieved.
when you drive 7.5 hours, your friend must drive 7.5 hours as well to satisfy the requirements that your friend must drive at least as many hours as you and your combined time must be less than or equal to 15 hours.
you can pick any hours for you and for your friend as long as the requirements are observed.
for example:
if you pick 5 hours for yourself, then you friend can drive a minimum of 5 hours because your friend's hours must be greater than or equal to yours, or your friend can drive a maximum of 10 hours because you and your friend's time must be less than or equal to 15.
when you drive 5 hours and your friend drives 10 hours, you distance traveled is 70*5 + 60*10 = 350 + 600 = 950 miles which is greater than 600 miles so you've met all the constraints.
you can't drive more than 7.5 hours because your friend must drive at least as much as you and 7.5 + 7.5 = 15, so if you drove more than 7.5, you would both have to be driving more than1 15 which isn't allowed.