Find the dual program of the following linear programming problem
maximize z=5x1-2x2
subject to:
3x1+2x2 ≥16
x1-x2≤4
x1≥5
x1≥0, x2 is unconstrained
All constraints can be converted to ≤ by multiplying by -1. So we have;
Maximize: z= 5x1 - 2x2
subject to constraints:
-3x1 - 2x2 ≤ -16
x1 - x2 ≤ 4
-x1 ≤ -5
and x1 ≤ 0; x2 is unrestricted.
Since the primal has two variables and three constraints, then the dual will have three variables and two constraints. Also, the x2 variable is unrestricted in the primal, therefore, the second constraint in the dual shall be equality.
Dual program is;
Minimize: z = -16y1 + 4y2 - 5y3
Subject to constraints
-3y1 + y2 - y3 ≥ 5
-2y1 - y2 = -2
and y1,y2 ≥ 0
Comments
Leave a comment