A shipping freighter has space for two more shipping containers, but the combined weight cannot go over 20 tons. Four shipping containers are being considered. The following table provides details on the weight (in tons) and value of the contents of each container.
?
Container
1
2
3
4
Weight of container (tons)
5
6
9
7
Value / Container
$6,000
$5,500
$7,500
$6,000
?
Develop a binary integer model that will determine the two containers that will maximize the value of the shipment.

What will be an ideal response?


Let C1 = if Container 1 is considered for shipment; 0 otherwise
      C2 = if Container 2 is considered for shipment; 0 otherwise
      C3 = if Container 3 is considered for shipment; 0 otherwise
      C4 = if Container 4 is considered for shipment; 0 otherwise

Max 6000C1 + 5500C2 + 7500C3 + 6000C4

s.t.

5C1 + 6C2 + 9C3 + 7C4? 20
C1 + C2 + C3 + C4 = 2          
Ci = 0, 1 (for i = 1, 2, 3, 4)





Business

You might also like to view...

The recording of cash receipts to the cash account will be done by debiting the account

Indicate whether the statement is true or false

Business

In applying equitable principles, judges can apply their own concepts of fairness

Indicate whether the statement is true or false

Business

An annuity is a series of payments made pursuant to a contract.

Answer the following statement true (T) or false (F)

Business

What is the primary management challenge when implementing revenue management?

What will be an ideal response?

Business