Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A binary integer programming problem is expressed as: Max z = 3x 1 + 2x 2 - 5x 3 - 2x 4 + 3x 5

A binary integer programming problem is expressed as:

Max z = 3x1 + 2x2 - 5x3 - 2x4 + 3x5 Subject to x1 + x2 + x3 +2x4 + x5 <= 4 7x1 + 3x3 - 4x4 +3x5 <= 8 11x1 - 6x2 + 3x4 - 3x5 <= 3 x1,...,x5 all take values of either 0 or 1

To solve it by using branch-and-bound method, you now need to solve a series of relaxed LP problems. You decide to solve them by using MATLAB . For that, you need to define the matrices/vectors , and . Suppose you use the syntax For the original relaxed LP problem, which of the following formulations will give you the correct answer?

a) f = [3 2 -5 -2 3]; A =[1 1 1 2 1; 7 3 -4 3; 11 -6 3 -3]; b=[4 8 3]; lb = zeros(3,1); ub=inf(3,1);

b) f = -[3 2 -5 -2 3]; A =[1 1 1 2 1; 7 0 3 -4 3; 11 -6 0 3 -3]; b=[4 8 3]; lb = zeros(5,1); ub=inf(5,1);

c) f = [3 2 -5 -2 3]; A =[1 1 1 2 1; 7 3 -4 3; 11 -6 3 -3]; b=[4 8 3]; lb = zeros(3,1); ub=ones(3,1);

d) f = -[3 2 -5 -2 3]; A =[1 1 1 2 1; 7 0 3 -4 3; 11 -6 0 3 -3]; b=[4 8 3]; lb = zeros(5,1); ub=ones(5,1);

e) None of the above

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Linked Data A Geographic Perspective

Authors: Glen Hart, Catherine Dolbear

1st Edition

1000218910, 9781000218916

More Books

Students also viewed these Databases questions

Question

What is the difference between Needs and GAP Analyses?

Answered: 1 week ago

Question

What are ERP suites? Are HCMSs part of ERPs?

Answered: 1 week ago