Deck 19: Integer Programming: the Branch and Bound Method

Full screen (f)
exit full mode
Question
The branch and bound method is a solution technique specifically limited to integer programming problems.
Use Space or
up arrow
down arrow
to flip the card.
Question
In implicit enumeration the feasible integer solutions closest to the optimal non-integer solution are evaluated to see which is best.
Question
The number of nodes considered in a branch and bound tree for maximization integer programming problems is always minimized by going to the node with the largest upper bound.
Question
Rounding non-integer solution values up to the nearest integer value can result in an infeasible solution.
Question
In solving a maximization problem, the optimal profit associated with the relaxed solution (LP-relaxation) is always less than or equal to the value of the optimal profit associated with the integer solution.
Question
If an integer programming problem has no feasible solution, then its LP relaxation (relaxed solution) must also have no feasible solution.
Question
The branch and bound method of solving linear integer programming problems is an enumeration method.
Question
A linear programming model solution with no integer restrictions is called a relaxed solution.
Question
The branch and bound method is a solution approach that partitions the feasible solution space into smaller subsets of solutions.
Question
A linear programming model solution with integer restrictions is called a relaxed solution.
Question
The branch and bound method is a solution approach that partitions the infeasible solution space into smaller subsets of solutions.
Question
A feasible solution is ensured by rounding down non-integer solution values.
Question
A feasible solution is ensured by rounding down integer solution values.
Question
When the branch and bound approach is applied to an integer programming problem, it is used in conjunction with the normal non-integer solution approach.
Question
In using the branch and bound method, if a branch gives an infeasible solution to the associated linear programming problem, then the particular branch is fathomed and is not considered any further.
Question
When using branch and bound for a maximization integer programming problem, the lower bound at the initial node can always be determined by rounding down the LP relaxation solution values regardless of the types of constraints in the problem.
Question
The branch and bound solution method cannot be applied to 0-1 integer programming problems.
Question
If an integer linear programming problem has no feasible solution, then its relaxed solution (LP relaxation) must also have no feasible solution
Question
An infeasible solution is ensured by rounding down non-integer solution values.
Question
A rounded-down integer solution can result in a less than optimal solution.
Question
The branch and bound method can be used for ________ integer problems except only variables with integer restrictions are rounded down to achieve an initial lower bound and only integer variables are branched on.
Question
The ________ integer solution will always be between the upper bound of the relaxed solution and a lower bound of the rounded-down solution.
Question
An ________ solution is reached when a feasible integer solution is reached at a node that has an upper bound equal to lower bound.
Question
The branch and bound method can be used for 0-1 integer programming problems by adding a ________ 1 constraint for each 0-1 variable.
Question
Consider a capital budgeting example with five projects from which to select. Let xi = 1 if project a is selected, 0 if not, for i = 1, 2, 3, 4, 5. Write the appropriate constraint(s) for the following condition: If project 3 is chosen, project 4 must be chosen.
Question
The ________ method evaluates all feasible solutions to determine the optimal solution.
Question
The production manager for the Rusty soft drink company is considering the production of two kinds of soft drinks: regular and diet. Two of her resources are constraint production time (8 hours = 480 minutes per day) and syrup (1 of the ingredients), limited to 675 gallons per day. To produce a regular case requires 2 minutes and 5 gallons of syrup, while a diet case needs 4 minutes and 3 gallons of syrup. Profits for regular soft drink are $3 per case and profits for diet soft drink are $2 per case. What are optimal daily profits?
Question
The branch and bound method uses a tree diagram of ________ and ________ to organize the solution partitioning.
Question
Branch and bound cannot be used to solve mixed integer programs.
Question
We begin the branch and bound method by first solving the problem as a regular ________ model without integer restrictions.
Question
In implicit enumeration, all feasible solutions are evaluated to see which is best.
Question
A linear programming model solution with no integer restrictions is called a ________ solution.
Question
The production manager for Beer etc. produces two kinds of beer: light and dark. Two of his resources are constrained: malt, of which he can get at most 4800 oz per week; and wheat, of which he can get at most 3200 oz per week. Each bottle of light beer requires 12 oz of malt and 4 oz of wheat, while a bottle of dark beer uses 8 oz of malt and 8 oz of wheat. Profits for light beer are $2 per bottle, and profits for dark beer are $1 per bottle. What are the optimal weekly profits?
Question
A ________ solution is not guaranteed by rounding down non-integer solution values.
Question
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
This problem requires two different kinds of decision variables. Clearly define each kind.
Question
Consider a capital budgeting example with five projects from which to select. Let xi = 1 if project a is selected, 0 if not, for i = 1, 2, 3, 4, 5. Write the appropriate constraint(s) for the following condition: If project 1 is chosen, project 5 must not be chosen.
Question
The ________ method evaluates all feasible and infeasible solutions to determine the optimal solution.
Question
The ________ method is a solution approach that partitions the feasible solution space into smaller subsets of solutions.
Question
The branch and bound method uses a tree diagram of nodes and branches to organize the solution partitioning.
Question
In using the branch and bound method, we always branch from the node with the ________ upper bound.
Question
Solve the following integer LP using branch and bound:

 MAX Z=x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & Z = x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Question
Consider the following integer programming problem. Solve it using the branch and bound method. What are the optimal values of x1, x2, and Z?
Maximize \mathrm    { Z } = 2 x _ { 1 } + x _ { 2 }
Subject to: \quad    2 x _ { 1 } + 2 x _ { 2 } \leq 7
           4x1+x2114 x _ { 1 } + x _ { 2 } \leq 11
             x1x _ { 1 } and x20x _ { 2 } \geq 0

A) x1 = 1, x2 = 2, Z = 4
B) x1= 2, x2 = 1, Z = 5
C) x1 = 1, x2 = 1, Z = 3
D) x1 = 0, x2= 3, Z = 3
E) x1 = 2, x2 = 2, Z = 6
Question
The branch and bound method is a solution approach that partitions the ________ solution space into smaller subsets of solutions.

A) infeasible
B) feasible
C) optimal
D) all of the above
Question
Consider the following integer programming problem. Solve it using the branch and bound method. What are the optimal values of x1, x2 and Z?
Maximize Z=2x1+x2\mathrm { Z } = 2 x _ { 1 } + x _ { 2 }
Subject to: 2x1+2x27\quad 2 x _ { 1 } + 2 x _ { 2 } \leq 7
                   4x1+x211~~~~~~~~~~~~~~~~~~~4 x _ { 1 } + x _ { 2 } \leq 11
                   x1~~~~~~~~~~~~~~~~~~~x _ { 1 } and x20x _ { 2 } \geq 0
Question
Solve the following integer linear program:

MAXx1+x2 subject to: 4x1+6x222x1+5x2152x1+x29x1,x0, integer \begin{array} { l l } \operatorname { MAX } & x _ { 1 } + x _ { 2 } \\\text { subject to: } & 4 x _ { 1 } + 6 x _ { 2 } \leq 22 \\& x _ { 1 } + 5 x _ { 2 } \leq 15 \\& 2 x _ { 1 } + x _ { 2 } \leq 9 \\& x _ { 1 } , x \geq 0 , \text { integer }\end{array}
Question
Solve the following integer linear program:
MAXx1+x2 subject to: 4x1+6x222x1+5x2152x1+x29x1,x0, integer \begin{array} { l l } \operatorname { MAX } & x _ { 1 } + x _ { 2 } \\\text { subject to: } & 4 x _ { 1 } + 6 x _ { 2 } \leq 22 \\& x _ { 1 } + 5 x _ { 2 } \leq 15 \\& 2 x _ { 1 } + x _ { 2 } \leq 9 \\& x _ { 1 } , x \geq 0 , \text { integer }\end{array}
Question
Rounding large values of decision variables to the nearest integer value causes ________ problems than rounding small values.

A) more
B) fewer
C) none of the above
Question
Solve the following integer linear program using implicit enumeration.
 MAX Z=x2 subject to: x1+x20.5x1+x23.5x2,x20 and integer \begin{array} { l l } \text { MAX } & Z = x _ { 2 } \\\text { subject to: } & - x _ { 1 } + x _ { 2 } \leq 0.5 \\& x _ { 1 } + x _ { 2 } \leq 3.5 \\& x _ { 2 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Question
Which of the following can be used to solve integer programs with 2 variables?
I) Graphical techniques
II) Complete enumeration
III) Relaxed LP solutions
IV) Branch and bound

A) I, II, III, and IV
B) I and III
C) I, II, and IV
D) I and IV
E) I, II and III
Question
The branch and bound method of solving linear integer programming problems is

A) a nonlinear method.
B) a relaxation method.
C) a graphical solution.
D) an enumeration method.
Question
The branch and bound method uses a tree diagram of ________ to organize the solution partitioning.

A) branches
B) nodes
C) nodes and branches
D) none of the above
Question
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array} Write a constraint to ensure that if machine 4 is used, machine 1 will not be used.

A) y1 + y4 ? 0
B) y1 + y4 ? 1
C) y1 + y4 ? 1
D) y1 - y4 ? 1
E) y1 - y4 ? 0
Question
The optimal integer solution will always be between the upper bound of the ________ solution and a lower bound of the rounded-down ________ solution.

A) relaxed, non-integer
B) integer, relaxed
C) relaxed, integer
D) none of the above
Question
When using branch and bound to solve an integer programming problem, if the value of X1 = 2.5 at a given node, then one of the descendant branches would have which one of the additional constraints?

A) X1 ? 2
B) X1 ? 3
C) X1 = 3
D) X1 ? 2
E) X1 = 2
Question
A linear programming model solution with no integer restrictions is called a(n) ________ solution.

A) optimal
B) feasible
C) relaxed
D) all of the above
Question
The optimal integer solution will always be between the ________ bound of the relaxed solution and a lower bound of the rounded-down integer solution.

A) lower
B) optimal
C) upper
D) all of the above
Question
The upper bound at the initial node of a branch and bound tree is given by

A) the value of the objective function of the LP relaxation .
B) the value of the objective function after the LP relaxation solution is rounded down to an integer solution.
C) the value of the objective function corresponding to an integer feasible solution determined on the basis of trial and error.
D) cannot be determined
Question
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
Give the constraints for the problem.
Question
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
Write a constraint to ensure that if machine 4 is used, machine 1 will not be used.
Question
In using rounding of a linear programming model to obtain an integer solution, the solution is

A) always optimal and feasible.
B) sometimes optimal and feasible.
C) always optimal.
D) always feasible.
Question
Solve the following integer LP using branch and bound:
 MAX x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
The optimal value of Z is:

A) 7
B) 6
C) 10
D) 11
E) 12
Question
Consider the following integer LP.
 MAX x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Solve for the value of x2 at the first node and identify the constraint below that correctly represents one of the descendant branches.

A) x2 ? 1
B) x2 ? 1
C) x2 ? 2
D) x2 ? 0
Question
Solve the following integer linear program:
MAX    Z=2x1+x2\quad Z = 2 x _ { 1 } + x _ { 2 }
subject to:     2x1+2x272 x _ { 1 } + 2 x _ { 2 } \leq 7
          4x1+x2114 x _ { 1 } + x _ { 2 } \leq 11
          x1x _ { 1 } and x20x _ { 2 } \geq 0
What are the optimal values of x1 and x2?

A) x1 = 1, x2 = 3
B) x1 = 4, x2 = 1
C) x1 = 0, x2 = 3
D) x1 = 3, x2 = 2
E) x1 = 2, x2= 2
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/63
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 19: Integer Programming: the Branch and Bound Method
1
The branch and bound method is a solution technique specifically limited to integer programming problems.
False
2
In implicit enumeration the feasible integer solutions closest to the optimal non-integer solution are evaluated to see which is best.
False
3
The number of nodes considered in a branch and bound tree for maximization integer programming problems is always minimized by going to the node with the largest upper bound.
True
4
Rounding non-integer solution values up to the nearest integer value can result in an infeasible solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
5
In solving a maximization problem, the optimal profit associated with the relaxed solution (LP-relaxation) is always less than or equal to the value of the optimal profit associated with the integer solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
6
If an integer programming problem has no feasible solution, then its LP relaxation (relaxed solution) must also have no feasible solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
7
The branch and bound method of solving linear integer programming problems is an enumeration method.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
8
A linear programming model solution with no integer restrictions is called a relaxed solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
9
The branch and bound method is a solution approach that partitions the feasible solution space into smaller subsets of solutions.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
10
A linear programming model solution with integer restrictions is called a relaxed solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
11
The branch and bound method is a solution approach that partitions the infeasible solution space into smaller subsets of solutions.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
12
A feasible solution is ensured by rounding down non-integer solution values.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
13
A feasible solution is ensured by rounding down integer solution values.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
14
When the branch and bound approach is applied to an integer programming problem, it is used in conjunction with the normal non-integer solution approach.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
15
In using the branch and bound method, if a branch gives an infeasible solution to the associated linear programming problem, then the particular branch is fathomed and is not considered any further.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
16
When using branch and bound for a maximization integer programming problem, the lower bound at the initial node can always be determined by rounding down the LP relaxation solution values regardless of the types of constraints in the problem.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
17
The branch and bound solution method cannot be applied to 0-1 integer programming problems.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
18
If an integer linear programming problem has no feasible solution, then its relaxed solution (LP relaxation) must also have no feasible solution
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
19
An infeasible solution is ensured by rounding down non-integer solution values.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
20
A rounded-down integer solution can result in a less than optimal solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
21
The branch and bound method can be used for ________ integer problems except only variables with integer restrictions are rounded down to achieve an initial lower bound and only integer variables are branched on.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
22
The ________ integer solution will always be between the upper bound of the relaxed solution and a lower bound of the rounded-down solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
23
An ________ solution is reached when a feasible integer solution is reached at a node that has an upper bound equal to lower bound.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
24
The branch and bound method can be used for 0-1 integer programming problems by adding a ________ 1 constraint for each 0-1 variable.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
25
Consider a capital budgeting example with five projects from which to select. Let xi = 1 if project a is selected, 0 if not, for i = 1, 2, 3, 4, 5. Write the appropriate constraint(s) for the following condition: If project 3 is chosen, project 4 must be chosen.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
26
The ________ method evaluates all feasible solutions to determine the optimal solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
27
The production manager for the Rusty soft drink company is considering the production of two kinds of soft drinks: regular and diet. Two of her resources are constraint production time (8 hours = 480 minutes per day) and syrup (1 of the ingredients), limited to 675 gallons per day. To produce a regular case requires 2 minutes and 5 gallons of syrup, while a diet case needs 4 minutes and 3 gallons of syrup. Profits for regular soft drink are $3 per case and profits for diet soft drink are $2 per case. What are optimal daily profits?
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
28
The branch and bound method uses a tree diagram of ________ and ________ to organize the solution partitioning.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
29
Branch and bound cannot be used to solve mixed integer programs.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
30
We begin the branch and bound method by first solving the problem as a regular ________ model without integer restrictions.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
31
In implicit enumeration, all feasible solutions are evaluated to see which is best.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
32
A linear programming model solution with no integer restrictions is called a ________ solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
33
The production manager for Beer etc. produces two kinds of beer: light and dark. Two of his resources are constrained: malt, of which he can get at most 4800 oz per week; and wheat, of which he can get at most 3200 oz per week. Each bottle of light beer requires 12 oz of malt and 4 oz of wheat, while a bottle of dark beer uses 8 oz of malt and 8 oz of wheat. Profits for light beer are $2 per bottle, and profits for dark beer are $1 per bottle. What are the optimal weekly profits?
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
34
A ________ solution is not guaranteed by rounding down non-integer solution values.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
35
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
This problem requires two different kinds of decision variables. Clearly define each kind.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
36
Consider a capital budgeting example with five projects from which to select. Let xi = 1 if project a is selected, 0 if not, for i = 1, 2, 3, 4, 5. Write the appropriate constraint(s) for the following condition: If project 1 is chosen, project 5 must not be chosen.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
37
The ________ method evaluates all feasible and infeasible solutions to determine the optimal solution.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
38
The ________ method is a solution approach that partitions the feasible solution space into smaller subsets of solutions.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
39
The branch and bound method uses a tree diagram of nodes and branches to organize the solution partitioning.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
40
In using the branch and bound method, we always branch from the node with the ________ upper bound.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
41
Solve the following integer LP using branch and bound:

 MAX Z=x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & Z = x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
42
Consider the following integer programming problem. Solve it using the branch and bound method. What are the optimal values of x1, x2, and Z?
Maximize \mathrm    { Z } = 2 x _ { 1 } + x _ { 2 }
Subject to: \quad    2 x _ { 1 } + 2 x _ { 2 } \leq 7
           4x1+x2114 x _ { 1 } + x _ { 2 } \leq 11
             x1x _ { 1 } and x20x _ { 2 } \geq 0

A) x1 = 1, x2 = 2, Z = 4
B) x1= 2, x2 = 1, Z = 5
C) x1 = 1, x2 = 1, Z = 3
D) x1 = 0, x2= 3, Z = 3
E) x1 = 2, x2 = 2, Z = 6
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
43
The branch and bound method is a solution approach that partitions the ________ solution space into smaller subsets of solutions.

A) infeasible
B) feasible
C) optimal
D) all of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
44
Consider the following integer programming problem. Solve it using the branch and bound method. What are the optimal values of x1, x2 and Z?
Maximize Z=2x1+x2\mathrm { Z } = 2 x _ { 1 } + x _ { 2 }
Subject to: 2x1+2x27\quad 2 x _ { 1 } + 2 x _ { 2 } \leq 7
                   4x1+x211~~~~~~~~~~~~~~~~~~~4 x _ { 1 } + x _ { 2 } \leq 11
                   x1~~~~~~~~~~~~~~~~~~~x _ { 1 } and x20x _ { 2 } \geq 0
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
45
Solve the following integer linear program:

MAXx1+x2 subject to: 4x1+6x222x1+5x2152x1+x29x1,x0, integer \begin{array} { l l } \operatorname { MAX } & x _ { 1 } + x _ { 2 } \\\text { subject to: } & 4 x _ { 1 } + 6 x _ { 2 } \leq 22 \\& x _ { 1 } + 5 x _ { 2 } \leq 15 \\& 2 x _ { 1 } + x _ { 2 } \leq 9 \\& x _ { 1 } , x \geq 0 , \text { integer }\end{array}
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
46
Solve the following integer linear program:
MAXx1+x2 subject to: 4x1+6x222x1+5x2152x1+x29x1,x0, integer \begin{array} { l l } \operatorname { MAX } & x _ { 1 } + x _ { 2 } \\\text { subject to: } & 4 x _ { 1 } + 6 x _ { 2 } \leq 22 \\& x _ { 1 } + 5 x _ { 2 } \leq 15 \\& 2 x _ { 1 } + x _ { 2 } \leq 9 \\& x _ { 1 } , x \geq 0 , \text { integer }\end{array}
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
47
Rounding large values of decision variables to the nearest integer value causes ________ problems than rounding small values.

A) more
B) fewer
C) none of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
48
Solve the following integer linear program using implicit enumeration.
 MAX Z=x2 subject to: x1+x20.5x1+x23.5x2,x20 and integer \begin{array} { l l } \text { MAX } & Z = x _ { 2 } \\\text { subject to: } & - x _ { 1 } + x _ { 2 } \leq 0.5 \\& x _ { 1 } + x _ { 2 } \leq 3.5 \\& x _ { 2 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
49
Which of the following can be used to solve integer programs with 2 variables?
I) Graphical techniques
II) Complete enumeration
III) Relaxed LP solutions
IV) Branch and bound

A) I, II, III, and IV
B) I and III
C) I, II, and IV
D) I and IV
E) I, II and III
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
50
The branch and bound method of solving linear integer programming problems is

A) a nonlinear method.
B) a relaxation method.
C) a graphical solution.
D) an enumeration method.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
51
The branch and bound method uses a tree diagram of ________ to organize the solution partitioning.

A) branches
B) nodes
C) nodes and branches
D) none of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
52
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array} Write a constraint to ensure that if machine 4 is used, machine 1 will not be used.

A) y1 + y4 ? 0
B) y1 + y4 ? 1
C) y1 + y4 ? 1
D) y1 - y4 ? 1
E) y1 - y4 ? 0
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
53
The optimal integer solution will always be between the upper bound of the ________ solution and a lower bound of the rounded-down ________ solution.

A) relaxed, non-integer
B) integer, relaxed
C) relaxed, integer
D) none of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
54
When using branch and bound to solve an integer programming problem, if the value of X1 = 2.5 at a given node, then one of the descendant branches would have which one of the additional constraints?

A) X1 ? 2
B) X1 ? 3
C) X1 = 3
D) X1 ? 2
E) X1 = 2
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
55
A linear programming model solution with no integer restrictions is called a(n) ________ solution.

A) optimal
B) feasible
C) relaxed
D) all of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
56
The optimal integer solution will always be between the ________ bound of the relaxed solution and a lower bound of the rounded-down integer solution.

A) lower
B) optimal
C) upper
D) all of the above
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
57
The upper bound at the initial node of a branch and bound tree is given by

A) the value of the objective function of the LP relaxation .
B) the value of the objective function after the LP relaxation solution is rounded down to an integer solution.
C) the value of the objective function corresponding to an integer feasible solution determined on the basis of trial and error.
D) cannot be determined
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
58
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
Give the constraints for the problem.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
59
The Wiethoff Company has a contract to produce 10,000 garden hoses for a customer. Wiethoff has four different machines that can produce this kind of hose. Because these machines are from different manufacturers and use differing technologies, their specifications are not the same and not all four machines have to be used to produce all of the garden hoses.  Fixed Cost to SetupVariable Cost Machine  Production Run  per Hose  Capacity 17501.25600025001.507500310001.00400043002.005000\begin{array}{cccc}&\text { Fixed Cost }\\&to~ Setup&Variable ~Cost\\\text { Machine } & \text { Production Run } & \text { per Hose } & \text { Capacity } \\\hline 1 & 750 & 1.25 & 6000 \\2 & 500 & 1.50 & 7500 \\3 & 1000 & 1.00 & 4000 \\4 & 300 & 2.00 & 5000\end{array}
Write a constraint to ensure that if machine 4 is used, machine 1 will not be used.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
60
In using rounding of a linear programming model to obtain an integer solution, the solution is

A) always optimal and feasible.
B) sometimes optimal and feasible.
C) always optimal.
D) always feasible.
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
61
Solve the following integer LP using branch and bound:
 MAX x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
The optimal value of Z is:

A) 7
B) 6
C) 10
D) 11
E) 12
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
62
Consider the following integer LP.
 MAX x1+5x2 subject to: x1+10x220x12x1,x20 and integer \begin{array} { l l } \text { MAX } & x _ { 1 } + 5 x _ { 2 } \\\text { subject to: } & x _ { 1 } + 10 x _ { 2 } \leq 20 \\& x _ { 1 } \leq 2 \\& x _ { 1 } , x _ { 2 } \geq 0 \text { and integer }\end{array}
Solve for the value of x2 at the first node and identify the constraint below that correctly represents one of the descendant branches.

A) x2 ? 1
B) x2 ? 1
C) x2 ? 2
D) x2 ? 0
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
63
Solve the following integer linear program:
MAX    Z=2x1+x2\quad Z = 2 x _ { 1 } + x _ { 2 }
subject to:     2x1+2x272 x _ { 1 } + 2 x _ { 2 } \leq 7
          4x1+x2114 x _ { 1 } + x _ { 2 } \leq 11
          x1x _ { 1 } and x20x _ { 2 } \geq 0
What are the optimal values of x1 and x2?

A) x1 = 1, x2 = 3
B) x1 = 4, x2 = 1
C) x1 = 0, x2 = 3
D) x1 = 3, x2 = 2
E) x1 = 2, x2= 2
Unlock Deck
Unlock for access to all 63 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 63 flashcards in this deck.