Exam 7: Integer Programming

arrow
  • Select Tags
search iconSearch Question
  • Select Tags

A common feature of set covering, knapsack, and location problems is that all of them use 0-1 variables.

Free
(True/False)
4.9/5
(36)
Correct Answer:
Verified

True

A cargo plane has two compartments for storing cargo, front and back. These compartments have capacity limits on both weight and space, as summarized below. A cargo plane has two compartments for storing cargo, front and back. These compartments have capacity limits on both weight and space, as summarized below.     They have three available cargos for an upcoming flight. The details are given below:     For maintaining balance, the total weight of the cargo loaded in the back must be more than the total cargo loaded in the front. Each cargo must be accepted in full and loaded entirely in front or back. The objective is to determine which must be accepted and where it should go in the plane, so as to maximize total profit. Formulate this as an integer linear program. They have three available cargos for an upcoming flight. The details are given below: A cargo plane has two compartments for storing cargo, front and back. These compartments have capacity limits on both weight and space, as summarized below.     They have three available cargos for an upcoming flight. The details are given below:     For maintaining balance, the total weight of the cargo loaded in the back must be more than the total cargo loaded in the front. Each cargo must be accepted in full and loaded entirely in front or back. The objective is to determine which must be accepted and where it should go in the plane, so as to maximize total profit. Formulate this as an integer linear program. For maintaining balance, the total weight of the cargo loaded in the back must be more than the total cargo loaded in the front. Each cargo must be accepted in full and loaded entirely in front or back. The objective is to determine which must be accepted and where it should go in the plane, so as to maximize total profit. Formulate this as an integer linear program.

Free
(Essay)
4.9/5
(35)
Correct Answer:
Verified

Decision variables (a series of 0-1 variables that would take a value of 1 if it is chosen and 0 otherwise):
Let XijX_{i j} be 1 if cargo i loaded in compartment j\mathrm{j} and 0 otherwise
Objective function:
for iε{A,B,C,D,E}\mathrm{i} \varepsilon\{\mathrm{A}, \mathrm{B}, \mathrm{C}, \mathrm{D}, \mathrm{E}\} and jε{F,B}\mathrm{j} \varepsilon\{\mathrm{F}, \mathrm{B}\} where F\mathrm{F} stands for front and B\mathrm{B} for back
Max:
1000XAB+1560XBB+1350XCB+720XDB+1210XEB1000 X_{A B}+1560 X_{B B}+1350 X_{C B}+720 X_{D B}+1210 X_{E B}
1000XAF+1560XBF+1350XCF+720XDF+1210XEF+1000 X_{A F}+1560 X_{B F}+1350 X_{C F}+720 X_{D F}+1210 X_{E F}+
10000XAF+120000XBF+15000XCF+8000XDF+11000XEF1600010000 X_{A F}+120000 X_{B F}+15000 X_{C F}+8000 X_{D F}+11000 X_{E F} \leq 16000
10000XAB+120000XBB+15000XCB+8000XDB+11000XEB2400010000 X_{A B}+120000 X_{B B}+15000 X_{C B}+8000 X_{D B}+11000 X_{E B} \leq 24000
2500XAF+4200XBF+4500XCF+2240XDF+3520XEF50002500 X_{A F}+4200 X_{B F}+4500 X_{C F}+2240 X_{D F}+3520 X_{E F} \leq 5000
2500XAB+4200XBB+4500XCB+2240XDB+3520XEB70002500 X_{A B}+4200 X_{B B}+4500 X_{C B}+2240 X_{D B}+3520 X_{E B} \leq 7000
XAF+XAB1X_{A F}+X_{A B} \leq 1
XBF+XBB1X_{B F}+X_{B B} \leq 1
XCF+XCB1X_{C F}+X_{C B} \leq 1
XDF+XDB1X_{D F}+X_{D B} \leq 1
XEF+XEB1X_{E F}+X_{E B} \leq 1
10000XAF+12000XBF+15000XCF+8000XDF+11000XEF10000XAB12000XBB15000XCB8000XDB11000XEB010000 X_{A F}+12000 X_{B F}+15000 X_{C F}+8000 X_{D F}+11000 X_{E F}-10000 X_{A B}-12000 X_{B B}-15000 X_{C B}-8000 X_{D B}-11000 X_{E B} \leq 0 Variables are 010-1
Solver solution:
XCF=1X_{C F}=1
XAB=1X_{A B}=1
XBB=1X_{B B}=1
All other variables are 0 . The objective function value will be equal to $3910\$ 3910
The objective function value corresponding to the optimal solution is $4600.00\$ 4600.00

A retail outlet wants to replace a broken ice cream vending machine with one of two models. Purchase of model 1 machine is captured by variable X1X_{1} taking a value of 1 and 0 if not purchased. X2X_{2} is similarly defined. They would also want to allow for the possibility of getting rid of the old machine with no replacement. One of the constraints for this problem would be

Free
(Multiple Choice)
4.9/5
(37)
Correct Answer:
Verified

B

If a problem contains data on profit as well as cost, it cannot be formulated as an integer programming problem. We have to pick one or the other and then do the formulation.

(True/False)
4.7/5
(37)

A Mississippi farmer is considering adding a special breed of bull to his farm. Let X1=1X_{1}=1 imply that the bull will be purchased and 0 otherwise. If it is purchased, then the pounds of organic soy purchased per day (denoted by X2\mathrm{X}_{2} ) and the pounds of organic corn purchased per day (denoted by X3\mathrm{X}_{3} ) should be at most 50. If the bull is not purchased, then 22 * the pounds of organic soy purchased 3-3^{*} the pounds of organic corn purchased should be at most 30. The constraint/s that implements this would be (M stands for a very big positive number and assume non-negative variables)

(Multiple Choice)
4.9/5
(32)

A retail outlet wants to replace a broken ice cream vending machine with one of two models. The purchase of model 1 is captured by variable X1, taking a value of 1 and 0 if not purchased. X2 is similarly defined. They would not be opposed to buying both machines, though buying one of them is a must. One of the constraints for this problem would be

(Multiple Choice)
4.9/5
(43)

In general, we consider more feasible solutions in solving integer linear programming problems. as compared to solving linear programming problems by simplex method. 1.

(True/False)
5.0/5
(32)

In modeling a traveling salesman problem, let XijkX_{\mathrm{ijk}} be a 0-1 decision variable, which takes a value of 0 if in the kth leg the tour corresponding to the solution does not go from node i\mathrm{i} to node j\mathrm{j} . Xijk\mathrm{X}_{\mathrm{ijk}} is set to be equal to 1 if the tour goes from node ii to node j\mathrm{j} in the kth leg. In a problem with just 4 nodes and without loss of generality, assume that the tour starts and ends in node 1. Mark the correct constraint to make sure that the tour ends in node 1

(Multiple Choice)
4.9/5
(40)

In a plant location problem with 5 potential locations, each with an associated 0-1 decision variable, X1X_{1} , X2,X3,X4X_{2}, X_{3}, X_{4} ,and X5X_{5} , which take a value of 1 if a plant is located in that location and 0 otherwise, the constraint to make sure that at least 3 plants are put up will be

(Multiple Choice)
4.7/5
(19)

A feasible solution to a two-variable pure integer programming problem can always be found by first solving the corresponding linear programming problem (i.e. problem obtained by ignoring the integrality constraints) and by rounding to the nearest integer all fractional values in the optimal solution to the linear programming problem.

(True/False)
4.7/5
(29)

In modeling a traveling salesman problem, let XijkX_{i j k} be a 0-1 decision variable, which takes a value of 0 if in the kth leg the tour corresponding to the solution does not go from node i\mathrm{i} to node j\mathrm{j} . Xijk\mathrm{X}_{\mathrm{ijk}} is set to be equal to 1 if the tour goes from node i\mathrm{i} to node j\mathrm{j} in the kth leg. In a problem with just 4 nodes and without loss of generality, assume that the tour starts and ends in node 1 . If, in a particular solution, X213=1X_{213}=1 , it means that the tour corresponding to the solution

(Multiple Choice)
4.8/5
(30)

For a pure 0-1 integer programming problem with 3 variables, the maximum number of potential solutions is

(Multiple Choice)
4.8/5
(35)

A feasible solution to a two-variable pure integer programming problem can always be found by first solving the corresponding linear programming problem (i.e. problem obtained by ignoring the integrality constraints) and by rounding down the fractional values in the optimal solution to the linear programming problem.

(True/False)
4.8/5
(32)

A jumbo jet factory can produce two types of planes\_-UnitMach and BigMach. UnitMach takes 6 man weeks of labor and 7 units of critical machine time. BigMach takes 8 man weeks of labor and 12 units of critical machine time. The total man weeks of labor available during the planning horizon are 50; total units of machine time available during the planning horizon are 70 . Contribution of UnitMach is $10,000\$ 10,000 and BigMach is $12000\$ 12000 . Assuming that integer quantities of products should be produced, find the total contribution maximizing solution.

(Essay)
4.8/5
(38)

Clean Energy Inc. has a planning horizon of 3 years and has 5 potential projects. Each year, the outlay required by each project is known. The amount available for investment in any of these projects each year is also assumed to be known. Each project has an associated expected contribution to total sales whose net present value is also assumed to be known. Determine the project/s that should be undertaken so as to maximize the total net present value of sales subject to budget constraints of each year. Clean Energy Inc. has a planning horizon of 3 years and has 5 potential projects. Each year, the outlay required by each project is known. The amount available for investment in any of these projects each year is also assumed to be known. Each project has an associated expected contribution to total sales whose net present value is also assumed to be known. Determine the project/s that should be undertaken so as to maximize the total net present value of sales subject to budget constraints of each year.

(Essay)
4.9/5
(32)

A fixed charge problem typically uses MM , which stands for a very large positive number in its formulation.

(True/False)
5.0/5
(38)

Sensitivity analysis on the RHS of integer programming problems is relatively easy.

(True/False)
4.9/5
(35)

A shopping complex is considering building a self-service vending machine island. The mall can buy a vending machine for dispensing various types of ready-to-pop corn. Purchase of this machine is captured by variable X1\mathrm{X} 1 , taking a value of 1 and 0 if not purchased. There is also a machine available for popping any type of corn vended by the vending machine. Purchase of this machine is captured by variable X2, taking a value of 1 and 0 if not purchased. Assume that buying just one of these machines does not do much good. That is, either the mall should buy both or buy neither. The constraint that implements this will be

(Multiple Choice)
4.8/5
(42)

An Avon lady carrying her tote containing makeup materials can maximize her profit from one trip to the rural Mississippi hinterland if she models the process of loading her bag (with the "right" materials having maximum profitability per unit volume) by using a

(Multiple Choice)
4.7/5
(33)

In modeling a shopping mall construction problem, there are four potential locations giving rise to four 0-1 decision variables, denoted as X1,X2,X3,X4\mathrm{X}_{1}, \mathrm{X}_{2}, \mathrm{X}_{3}, \mathrm{X}_{4} , which take a value of 1 if a mall is constructed and 0 otherwise. Identify the correct set of constraint/s to satisfy the following condition/s: at least one mall may be constructed among locations 1 and 3

(Multiple Choice)
4.8/5
(34)
Showing 1 - 20 of 58
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)