Constraint Word Problem: An airline is purchasing new passenger jet airplanes.

kdawg119

New member
Joined
Oct 5, 2019
Messages
3
Hello,

Please see image below as I'm having trouble setting up the objective function and constraints. I did some preliminary work but need someone to verify that it's correct.


Question.jpg

Thank you for the help!
 
Looks mostly good, but it seems to forgot to take into account the "minimum purchase order" column. It's a bit ambiguous and unclear but the way I interpret it is saying the company must buy at least (this many) of this type of plane.
 
Hello,

Please see image below as I'm having trouble setting up the objective function and constraints. I did some preliminary work but need someone to verify that it's correct.


View attachment 14035

Thank you for the help!
Why is the last constraint:

x1 + x2 + 3*x3 <= 30

I think it should be:

x1 + x2 + x3 <= 30

and another constraint:

.....at least 1/3 of the plane should be short range

(x1 + x2 + x3) / 3 <= x3
 
Top