Class_notes_on_Linear_Programming_Simple
Class_notes_on_Linear_Programming_Simple
Ritajit Majumdar
April 23, 2017
Linear programming is the problem of minimizing or maximizing a linear cost function, subject
to linear equality and inequality constraints.
Definition 2. A polyhedron is a set that can be described in the form {x ∈ Rn |Ax ≥ b}, where A
is an m × n matrix and b is a vector in Rm
Definition 3. A set S ⊂ Rn is bounded if there exists a constant k such that the absolute value of
every component of every element of S is less than or equal to k.
Definition 4. A set S ⊂ Rn is convex is for any x, y ∈ S and any λ ∈ [0, 1], we have λx+(1−λ)y ∈ S.
If λ ∈ [0, 1], then λx + (1 − λ)y is a weighted average of the vectors x, y and therefore belongs to
the line segment joining x and y. Thus a set is convex if the segment joining any two of its elements
is contained in the set.
Theorem 1. The intersection of convex sets is convex and every polyhedron is a convex set.
Theorem 2. Let P be a non-empty polyhedron and let x∗ ∈ P . Then the following are equivalent
i. x∗ is a vertex
1
2 Showing that a given set is convex
(usually for 3 marks)
Problem 1. Prove that the set S = {u ∈ Rn |u.v ≤ 9} is a convex set.
Ans. Let u, w ∈ S and λ ∈ [0, 1]. By definition of convex set, the point λu + (1 − λ)w should
belong to S. So we have
(λu + (1 − λ)w).v ≤ 9
Hence S is convex.
Ans. Let |u|, |v| ∈ X and λ ∈ [0, 1]. By definition of convex set, the point λ|u| + (1 − λ)|v| should
also belong to X. So we have
λ|u| + (1 − λ)|v| ≤ 2
Hence X is convex.
Problem 3. Show that the set S = {(x1 , x2 ) : x21 + x22 ≤ 4} is a convex set. [WBUT 2013]
Ans. Let xi , xj ∈ S and λ ∈ [0, 1]. By definition of the problem and the definition of convex set,
the point λ(x2i + x2j ) + (1 − λ)(x2i + x2j ) should belong to S. So we have
Hence S is convex.
2
3 Simplex method
3.1 Graphical method to simplex solution
Maximize Z = x1 + x2
Subject to −x1 + x2 ≤ 1
x1 ≤3
x2 ≤ 2
x 1 , x2 ≥ 0
It requires some effort to draw the graph in LATEX, hence not trying to do it. Follow the class for
the graph. The table for this problem is as follows -
Extreme points Coordinates (x1 , x2 ) Z = x1 + x2
A (0,0) 0
B (0,1) 1
C (1,2) 3
D (3,2) 5
E (3,0) 3
When the number of variables increase, it is not possible to draw graph for it. Furthermore,
it is known that the optimal solution is always at the vertex. The number of vertices increases
exponentially with the dimension. Hence, storing the value for each vertex requires exponential
amount of space. Simplex method is an algebraic process to find the optimal solution. The idea of
the algorithm can be stated in four simple points :
Max Z = cT x
Subject to Ax ≤ b
x≥0
Max Z = c1 x1 + c2 x2 + · · · + cn xn
Subject to a11 x1 + a12 x2 + · · · + a1m xm ≤ b1
.. ..
. .
am1 x1 + am2 x2 + · · · + amm xm ≤ bm
Consider that the constraints are equations. Using Gaussian elimination method, keep m of the
decision variables to the left and express them in terms of other decision variables.
3
Pn
x1 = b1 − i=m+1 a1i xi
..
P.n
x m = bm − i=m+1 a1i xi
The variables on the right hand side are called non-basic variables and they are all assigned to 0.
Thus the variables on the left hand side take the corresponding b-values (i.e. xi = bi ) and are called
basic variables. So the assigned values to the set of decision variables can be denoted as
S
{xi = bi |1 ≤ i ≤ m} {xi = 0|m + 1 ≤ i ≤ n}
If a basic variable also satisfies the non-negativity constraints, i.e., xi = bi and xi ≥ 0, then the
solution is called Basic Feasible Solution.
Slack variables
Simplex method allows only equalities in constraints. For inequality constraints, we can add some
non-negative variable to change each inequality into equality. Such variables are called slack vari-
ables. For ≥ type inequalities, we need to subtract some non-negative variable. Such a variable is
called surplus. We shall see more about it in the section on Big-M method.
In the problem considered at the beginning of this section, we can add some slack variables to
get equations -
−x1 + x2 + x3 =1
x1 +x4 =3
x2 +x5 = 2
−1 1 1 0 0
where x3 , x4 , x5 are slack variables. So the matrix A is modified as A =
′ 1 0 0 1 0 .
0 1 0 0 1
Note that the last 3 columns of the matrix A forms a 3 × 3 identity matrix. Each
′
column of an
identity matrix are independent.
Definition 6. X and Y are considered to be linearly independent if to satisfy the equation αX +
βY = 0, where α, β are scalar, it is necessary to have α = β = 0.
1 0
Putting X = and Y = , the equation is satisfied iff α = β = 0. Hence, here X and
0 1
Y are linearly independent. Can X and Y be linearly independent if (i) both are real numbers, (ii)
both are complex numbers, (iii) one is real and the other one is complex?
Definition 7. Dimension of a space is the minimum number of linearly independent variables re-
quired to uniquely identify a point in that space.
Definition 8. Rank of matrix A, R(A) = min{dimension of the column-space of A, dimension of
the row-space of A}
Column-space consists of the number of elements in each column of the matrix. Similar is the
definition of row-space. Hence, rank of matrix A′ , rank(A′ ) = min{dim(col-space(A)), dim(row-
space(A))} = min{3, 5} = 3.
In a general LP problem, if there are n decision variables and rank of matrix A (coefficients of
variables in the constraints) is m, define B := m-element subset of {1,2, . . . , n} and AB :=sub-matrix
of A indexed by B.
4
First Simplex Tableau
Consider again the problem stated at the beginning of the section. In the modified matrix A′ , the
last 3 columns are definitely linearly independent since they form the 3 × 3 identity matrix. So
choose B = {3, 4, 5}.
– in the tableau, keep the basic variables to the left and the non-basic variables to the right (this
holds for all tableau).
x3 = 1 − x2 + x1
x4 = 3 − x1
x5 = 2 − x2
B.F.S. : x1 = 0, x2 = 0, x3 = 1, x4 = 3, x5 = 2.
(x1 = 0, x2 = 0 corresponds to point A in the table)
– While increasing x2 , care should be taken to satisfy the non-negativity constraints for each of
the variables.
– From the 3rd equation in the previous tableau, we can increase x2 upto 2 such that the condition
x5 ≥ 0 is satisfied.
– It is said that the value of x2 is bounded by x3 . Replace 3 by 2 in the set B, i.e. B = {2, 4, 5}.
x2 = 1 + x1 − x3
x4 = 3 − x1
x5 = 1 − x1 + x3
B.F.S. : x1 = 0, x2 = 1, x3 = 0, x4 = 3, x5 = 1.
(x1 = 0, x2 = 1 corresponds to point B in the table)
5
x1 = 1 + x3 − x5
x2 = 2 − x5
x4 = 2 − x3 + x5
B.F.S. : x1 = 1, x2 = 2, x3 = 0, x4 = 2, x5 = 0.
(x1 = 1, x2 = 2 corresponds to point C in the table)
x1 = 3 − x4
x2 = 2 − x5
x3 = 2 − x4 + x5
B.F.S. : x1 = 3, x2 = 2, x3 = 2, x4 = 0, x5 = 0.
(x1 = 3, x2 = 2 corresponds to point D in the table)
Note here, in the equation of Z, both x4 and x5 have negative sign. Hence no further increase of
these variables are possible. Increasing any one of the variables will decrease the value of Z. This is
the stopping criteria of the Simplex Algorithm.
In the final tableau, the value x4 was 0. So increasing the RHS by 1 is equivalent to allowing x4
to take the value -1. Then the objective function Z = 5 − x4 − x5 increases by 1 and takes value 6.
So if x4 = −1, then the objective function increases by 1, which is called the shadow price.
Definition 9. The shadow price associated with a particular constraint is the change in the optimal
value of the objective function per unit increase in the right hand side value for that constraint, all
other problem data remaining unchanged.
– Shadow prices are associated with the constraints of the problem and not the variables.
– The shadow price for a particular constraint is the negative of the coefficient of the appropriate
slack (or artificial) variable in the objective function of the final tableau.
– In the problem considered, the shadow price for the first constraint is 0. For the second and
third constraints, shadow price is 1.
6
3.3 Solutions to some simplex problems
(Usually 6-9 marks)
Problem 4. Solve the following LPP using Simplex method [WBUT 2011]
Maximize Z = x1 − x2
Subject to x1 + 2x2 ≤ 4
6x1 + 2x2 ≤ 9
x 1 , x2 ≥ 0
Ans. First we need to formulate the LP problem in its standard form, i.e. the constraints will be
equalities only. The standard form of the problem is
where s1 and s2 are slack variables. Like before, since the coefficients of the slack variables form
an Identity matrix, whose columns are always linearly independent, we shall start with them. In
the following table, column B (in some book it is written as xB ) contains the basic variables (in the
first table s1 , s2 ), cB contains the coefficients of the basic variables in the objective function (in the
first table coefficients of both s1 , s2 are 0) and b contains the RHS values of the constraint equations.
The row cj contains the coefficients of the variables (both decision variables and slack variables) in
the objective function.
cj 1 −1 0 0
cB B b x1 x2 s1 s2 Min ratio
0 s1 4 1 2 1 0 4
3
0 s2 9 6 2 0 1 2
→
Z=0 zj 0 0 0 0
cj − z j 1↑ -1 0 0
zj for each column is the sum of the product of each element of that column with the corresponding
cB value in that row, i.e., for the column x1 , zj = 1 × 0 + 6 × 0. After finding out the values of zj
for each column, we find out the values of cj − zj for each column.
– The value of the objective function is the summation of the product of the values of decision
variables and its coefficient.
– The variables in the column B are the decision variables and are assigned the value of the
corresponding element of the column b, while all other decision variables are non-basic and
assigned the value 0.
P
– Here the value of Z is cB .b = 4 × 0 + 9 × 0 = 0.
– Consider the largest non-negative value of cj − zj . Give an upward arrow for that value and
call it the entering column. Here 1 is the only positive value for cj − zj , hence x1 is the entering
column.
– Note that some books follow the convention of taking the smallest negative value of zj − cj .
– The entering column is also called the pivot column. Here x1 is the pivot column.
– Calculate the value of b/(element of pivot column) for each row and put the value in the
column Min ratio. In this table, the values are 14 = 4 and 96 = 32 .
7
– Take the minimum non-negative value in the Min ratio column. Give an arrow mark to it and
call it the outgoing row. So in this table, x1 is the entering column and s2 is the outgoing row.
– The element at the intersection of entering column and outgoing row is called the pivot element
and is marked with a box.
– The column B will contain s1 and x1 , since x1 replaced s2 . The column cB will contain
the coefficients of these variables in the objective function i.e. 0 and 1.
– The column Min ratio is not filled up now, since its calculation will be done after the
table is complete.
– In the row containing the pivot element, the new values of all the remaining columns will
be simply its old value divided by the value of the pivot element, i.e.
R2 (new) = R2 (old) ÷ 6(pivot)
– In all the remaining rows, consider the element in the column which contains the pivot
element, i.e. here the column x1 contains the pivot element. So for the first row, we
consider the value of the element directly above (or below) the pivot element, here, 1
(marked with a circle).
– Multiply the new row (i.e. the row containing pivot element in the previous table) with
this element (here 1.R2 (new)) and subtract this value from the old row, i.e.
R1 (new) = R1 (old) − 1.R2 (new)
– Note again that the value 1 is because it is the value in the first row above the pivot
element. The value here will change according to the value of the element above or below
the pivot element.
cj 1 −1 0 0
cB B b x1 x2 s1 s2 Min ratio
5 5
0 s1 2
0 3
1 − 61
3 1 1
1 x1 2
1 3
0 6
3 1 1
Z= 2
zj 1 3
0 6
cj − z j 0 - 34 0 - 61
The variables under the column B are basic while all other variables are non-basic. The basic
variables are assigned the corresponding b value while the non-basic variables are assigned the value
0. So the optimal solution is
3
Z= 2
and the decision variables x1 = 32 , x2 = 0
8
Maximize Z = x1 + x2 + 3x3
Subject to 3x1 + 2x2 + x3 ≤ 3
2x1 + x2 + 2x3 ≤ 2
x 1 , x2 , x3 ≥ 0
where s1 , s2 are the slack variables. The first simplex tableau can be written as follows -
cj 1 1 3 0 0
cB B b x1 x2 x3 s1 s2 Min ratio
0 s1 3 3 2 1 1 0 3
0 s2 2 2 1 2 0 1 1→
Z=0 zj 0 0 0 0 0
cj − z j 1 1 3↑ 0 0
– We start with the slack variables s1 , s2 under column B and cB contains their coefficients. All
the coefficients of the variables are written in the row cj .
P
– As before Z = cB .b = 3 × 0 + 2 × 0.
– Recall, we need to choose the greatest non-negative value of cj − zj , which is equal to 3 here.
So 3 marks the entering column.
– We need to choose the minimum non-negative value of the ratio of the elements of b divided by
the elements of x3 (entering column). Here 1 is the minimum value. Hence s2 is the outgoing
row.
– The pivot element is the element at the intersection of the incoming column and outgoing row.
The pivot element, 2, is marked by a box.
– In the second tableau, the elements of the row corresponding to the pivot element will be
– For row 1, we consider the value of the element directly above the pivot element, here 1 (marked
with a circle). The elements of the first row will be
cj 1 1 3 0 0
cB B b x1 x2 x3 s1 s2 Min ratio
3
0 s1 2 2 2
0 1 - 21
1 1
3 x3 1 1 2
1 0 2
3 3
Z=3 zj 3 2
3 0 2
cj − z j -2 - 12 0 0 - 23
9
Note, here all the values of cj − zj ≤ 0. Hence this simplex algorithm terminates here. The
optimal solution is
By looking at the constraints, can you argue that this is the best assignment of values for the
decision variables? Can you convince yourself that decreasing x3 and giving the other two decision
variables positive values will not be a better assignment?
Problem 6. Solve the following LP problem by Simplex method [WBUT 2013, 2015]
Minimize Z = −2x2 − x3
Subject to x1 + x2 − 2x3 ≤ 7
−3x1 + x2 + 2x3 ≤ 3
x 1 , x 2 , x3 ≥ 0
Ans. This problem is interesting in two ways - (i) It’s constraints contain three variables, x1 , x2 , x3
whereas the objective function contains only 2, (ii) the objective is to minimize the function, but
simplex works only for maximize type of objective.
If there is a value p which we need to decrease, it is same as increasing the value of −p. For
example, crudely speaking, going up a hill is same as going along the -ve direction of down the hill.
So instead of minimizing Z, we can maximize −Z. Then this problem is solvable by the simplex
method. Note here, for simplex algorithm, we need maximization type objective function and “≤”
type constraints. If a constraint is “≥” type, then either use Big-M method or multiply both sides
of the constraint by -1 to make it “≤” type.
Maximize −Z = 2x2 + x3
Subject to x1 + x2 − 2x3 ≤ 7
−3x1 + x2 + 2x3 ≤ 3
x 1 , x2 , x3 ≥ 0
In the standard form, the objective function should contain all the decision variables as well as
slack variables. So the LP problem in its standard form is -
cj 0 2 1 0 0
cB B b x1 x2 x3 s1 s2 Min ratio
0 s1 7 1 1 -2 1 0 7
0 s2 3 -3 1 2 0 1 3→
Z=0 zj 0 0 0 0 0
cj − z j 0 2↑ 1 0 0
– The minimum of the values is 3, corresponding to the row s2 . So it is the outgoing row. The
pivot element is 1, marked by a box.
this “1” is marked by a circle, the element above the pivot element in column x2 .
cj 0 2 1 0 0
cB B b x1 x2 x3 s1 s2 Min ratio
0 s1 4 4 0 -4 1 -1 1→
2 x2 3 -3 1 2 0 1 -1
Z=6 zj -6 2 4 0 2
cj − z j 6↑ 0 -3 0 -2
– Recall that we choose the minimum non-negative value of Min ratio. So we choose 1 over -1
and hence s1 is the outgoing column.
– For the second row, we choose the element of x1 below the pivot element, here -3 (marked with
circle). So new row R2 is
cj 0 2 1 0 0
cB B b x1 x2 x3 s1 s2 Min ratio
1
0 x1 1 1 0 -1 4
- 41 -1
3 1
2 x2 6 0 1 -5 4 4
- 56
3 1
Z = 12 zj 0 2 -10 2 2
cj − z j 0 0 11 ↑ - 32 - 21
Note here that the result is not optimal, since all the cj − zj values are not ≤ 0. However,
both the Min ratios are negative, whereas we stated previously that we shall consider the minimum
non-negative value for the min ratio, so it is not possible to choose an outgoing row. This condition
shows that the solution is unbounded.
11
Problem 7. Write the LPP in its standard form [WBUT 2009]
Max Z = cT x
Subject to Ax ≤ b
x≥0
Here all the constraints are not of ≤ type. For equality, if a = b, then we can write that a ≤ b
and a ≥ b. If a is both less than equal to and greater than equal to b, then a and b must be equal.
So we can write the third constraint as two inequalities. Hence the problem becomes
Now, for the constraints with ≥ sign, multiply both sides by -1. Then the sign will flip. So the
problem becomes
Now the problem can be written in standard form by introducing slack variables
12
′′
Maximize Z = x1 − 3x2 + 5x′3 − 5x3 + 0.s1 + 0.s2 + 0.s3 + 0.s4
′′
Subject to x1 + x2 + x′3 − x3 + s1 =7
′′
−x1 + x2 − x3 + x3
′
+ s2 =2
′′
3x1 − x2 + 2x′3 − 2x3 + s3 = −5
′′
−3x1 + x2 − 2x′3 + 2x3 + s4 = 5
′′
x1 , x2 , x′3 , x3 , s1 , s2 , s3 , s4 ≥ 0
Degeneracy
Problem 8. Solve the following LP problem using Simplex method
Maximize Z = 2x1 + x2
Subject to 4x1 + 3x2 ≤ 12
4x1 + x2 ≤ 8
4x1 + 2x2 ≤ 8
x 1 , x2 ≥ 0
cj 2 1 0 0 0
cB B b x1 x2 s1 s2 s3 Min Ratio
0 s1 12 4 3 1 0 0 3
0 s2 8 4 1 0 1 0 2
0 s3 8 4 2 0 0 1 2
Z=0 zj 0 0 0 0 0
cj − z j 2↑ 1 0 0 0
Check that there is a tie between s2 and s3 to be the outgoing row. This is called degeneracy.
We can have a better understanding of degeneracy by plotting the constraint equations.
13
The equations 4x1 + x2 = 8, 4x1 + 2x2 = 8 define the corner point (2, 0). However, if we choose
x2 = 0 and 4x1 + x2 = 8, then these two automatically satisfy 4x1 + 2x2 = 8. Therefore, the slack
variable s3 associated with 4x1 + 2x2 = 8 must be 0 (since it is already satisfied by the other two
equations). This accounts for the appearance of the degenerate basic variable s3 in the simplex table.
Similarly, we can find other degeneracies. Hence
– Algebraically, degeneracy occurs if a basic variable takes value 0 in any simplex tableau. We
argued earlier that if we consider the equations x2 = 0 and 4x1 + x2 = 8, then it automatically
satisfies 4x1 + 2x2 = 8 and hence the slack variable s3 , associated with the later equation, must
be 0. But it is a basic variable since it is in the B column of the simplex tableau.
To approach such a situation, we can choose to consider any of the two rows (s2 , s3 ) as the
outgoing row. However, there is a risk that the algorithm will become slow. We have stated in
previous sections that the simplex algorithm jumps from one corner point to the next corner point
of the feasible region. However, here 4x1 + x2 = 8, 4x1 + 2x2 = 8 and x2 = 0 define a single corner
point. So there are three combinations of constraints which define the same corner point. This will
cause the simplex problem to remain in the same point for three consecutive steps, thus making the
algorithm slow. So we consider the following steps -
– Rearrange the simplex tableau so that the identity matrix comes first (Recall that the coeffi-
cients of the slack variables form an identity matrix).
– The row having the minimum value becomes the outgoing row.
cj 0 0 0 2 1
s1 s2
cB B b s1 s2 s3 x1 x2 Min ratio x1
Min ratio x1
0 s1 12 1 0 0 4 3 - -
1
0 s2 8 0 1 0 4 1 0 4
0 s3 8 0 0 1 4 2 0 0→
We do not consider the Min ratio for the first row since it is not a potential candidate for be-
coming outgoing row. In the first Min ratio column xs11 , there is a tie once more. So we consider the
second Min ratio column xs21 . Now, since s3 has the minimum value, it becomes the outgoing row. If
there were a tie here too, then we would have considered Min ratio xs31 .
cj 2 1 0 0 0
cB B b x1 x2 s1 s2 s3 Min Ratio
0 s1 4 0 1 1 0 -1
0 s2 0 0 -1 0 1 -1
1 1
1 x1 2 1 2
0 0 4
1
Z=4 zj 2 1 0 0 2
cj − z j 0 0 0 0 - 21
Since all cj − zj ≤ 0, the algorithm terminates here. The optimal solution is Z = 4, the decision
variables x1 = 2, x2 = 0 and x3 = 0.
14
4 Duality in Linear Programming
We shall try to demonstrate the idea of duality in linear programming with an example. Consider
the following LP problem -
The original problem is called the primal. Let Z ∗ be the optimal solution of this problem. We
want to find a lower bound on this solution i.e. can we answer the question - Is Z ∗ at least α? If we
can find an α such that Z ∗ ≤ α, then α is an upper bound on the optimal value. Mathematically
stating, out objective is to derive an inequality of the form
d1 x1 + d2 x2 ≤ α, d1 ≥ 2, d2 ≥ 3
2x1 + 3x2 ≤ d1 x1 + d2 x2 ≤ α
The values of the decision variables x1 and x2 are bounded by the constraint inequalities. Multi-
plying both sides of the first, second and third constraints by y1 , y2 and y3 respectively where each
yi ∈ Rn and adding up the constraints, we get
(4y1 + 2y2 + 3y3 )x1 + (8y1 + y2 + 2y3 )x2 ≤ 12y1 + 3y2 + 4y3
This is of the form d1 x1 + d2 x2 ≤ α where d1 = 4y1 + 2y2 + 3y3 , d2 = 8y1 + y2 + 2y3 and
α = 12y1 + 3y2 + 4y3 . We wish to minimize α given d1 ≥ 2, d2 ≥ 3. Writing this in mathematical
form, we get an LP problem as follows -
This is called the dual of the original problem. Note that if we represent the original problem
(primal ) as
Max Z = cT x
Subject to Ax ≥ b
x≥0
where c, b, x and A have the same meaning as explained in Section 3, then its dual can be repre-
sented as
Max Z ′ = bT y
Subject to Ay ≥ c
y≥0
y1
y2
where y = ..
.
yn
15
Primal Dual
1. Objective: Minimize Objective: Maximize
2. Objective: Maximize Objective: Minimize
3. j number of variables j number of constraints
4. i number of constraints i number of variables
5. Variable xj is unrestricted in sign Constraint j is of “=” type
6. Constraint i is of “=” type Variable yi is unrestricted in sign
Ans. Note, here the objective is minimization, but all the constraints are not of “≥” type. Mul-
tiplying the third constraint by −1 on both sides will change the sign of inequality. The primal
problem in standard form is as follows -
There are 5 constraints, hence there will be 5 decision variables in the dual problem. Let
y1 , y2 , y3 , y4 , y5 be the dual variables corresponding to the five primal constraints. Hence dual of
the primal LP problem is
Problem 10. Find the dual of the following LP problem [WBUT 2015]
Minimize Z = x1 + x2 + x3
Subject to x1 − 3x2 + 4x3 = 5
x1 − 2x2 ≤3
16
2x2 − x3 ≥ 4
x1 , x2 ≥ 0, x3 is unrestricted in sign
Ans. Here the first constraint is of “=” type. If two numbers a and b are equal, i.e. a = b, then
we can write it as a ≤ b and a ≥ b. Since two numbers cannot be lesser and greater than each other
at the same time, they must be equal. Furthermore, since x3 is unrestricted in sign, we can represent
′′ ′′
it as x3 = x′3 − x3 where x′3 , x3 ≥ 0. So we can write the problem as
′′
Minimize Z = x1 + x2 + x′3 − x3
′′
Subject to x1 − 3x2 + 4x′3 − 4x3 ≤ 5
′′
x1 − 3x2 + 4x′3 − 4x3 ≥ 5
x1 − 2x2 ≤3
′′
2x2 − x3 + x3 ≥ 4
′
′′
x1 , x2 , x′3 , x3 ≥ 0
Since this is a minimization type problem, all the constraints should be “≥” type. We can change
the constraints accordingly by multiplying both sides with -1. The resulting set of constraints are
′′
−x1 + 3x2 − 4x′3 + 4x3 ≥ −5
′′
x1 − 3x2 + 4x′3 − 4x3 ≥ 5
−x1 + 2x2 ≥ −3
′′
2x2 − x′3 + x3 ≥ 4
′′
x1 , x2 , x′3 , x3 ≥ 0
There are 4 constraints. So there will be 4 decision variables in the dual. Let y1 , y2 , y3 , y4 be the
decision variables in the dual problem. Hence the dual will be
Now, in the original problem, there were 3 constraints, so there should be 3 decision variables in
the dual. Let y = y2 − y1 . So the problem can be written as
4y − y4 ≤ 1
4y − y4 ≥ 1
17
Subject to y − y3 ≤1
−3y + 2y3 + 2y4 ≤ 1
4y − y4 = 1
y3 , y4 ≥ 0, y is unrestricted in sign.
Problem 11. Find the dual of the following LPP [WBUT 2014]
Ans. Here the second constraint is “=” type. So we can write the constraints as
Since, this is a minimization type problem, all the constraints should be “≥” type. So multiplying
the “≤” type constraints with -1 on both sides
Since there are 4 constraints in the primal, the dual will consist of 4 decision variables. Let the
decision variables be y1 , y2 , y3 , y4 . Hence the dual will be
There were 3 constraints in the original primal problem. So the dual problem should have 3 deci-
sion variables. Since the variables y2 , y3 were obtained by replacing the 2nd equality type constraint
18
in two inequality type constraints, we can recombine these two variables. Let y = y3 − y2 . Then the
dual problem becomes
Furthermore, the variable x2 was unrestricted in sign in the primal problem. So the 2nd constraint
in the dual, corresponding to this variable should be of “=” type. Multiplying the 3rd constraint
the the dual by -1, we get
Here, the second and third constraints are of type a ≥ b and a ≤ b. This is possible only when
a = b. So we can replace these two inequalities with an equality type constraint. The final dual
problem is
Reference
1. Talk by Dr. Arijit Bishnu at the workshop “Introductory Lectures on Optimization” held at
Indian Statistical Institute, Kolkata
19