Find the dual program of the following linear programming problem.
πππ₯ππππ§π π§ = 5π₯1 β 2π₯2
π π’πππππ‘ π‘π
3π₯1 + 2π₯2 β₯ 16
π₯1 β π₯2 β€ 4
π₯1 β₯ 5
π₯1 β₯0,π₯2 ππ π’πππππ π‘ππππππΒ
All constraints can be converted to "\\leq" by multiplying by -1. So we have;
"\\text{Max} ~~z=5x_1-2x_2\\\\\n\\text{subject to}\\\\\n~~~~~-3x_1-2x_2\\leq-16\\\\\n~~~~~~~~~~~x_1-~~x_2\\leq4\\\\\n~~~~~~~-x_1~~~~~~~~~~~\\leq-5\\\\\n\\text{and } x_1\\leq 0; x_2 \\text{is unrestricted}."
Since the primal has two variables and three constraints, then the dual will have three variables and two constraints. Also, the "x_2" variable is unrestricted in the primal, therefore the second constraint in the dual shall be equality.
Dual program is;
"\\text{Min } ~~z=-16y_1+4y_2-5y_3\\\\\n\\text{subject to }\\\\\n~~~~~-3y_1+y_2-y_3\\geq5\\\\\n~~~~~-2y_1-y_2~~~~~~~~=-2\\\\\n\\text{and } y_1,y_2\\geq0."
Comments
Leave a comment