Find the dual program of the following linear programming problem.
πππππππ§π π = 30π₯1 β 50π₯2 + 10π₯3
π π’πππππ‘ π‘π
3π₯1 + 2π₯2 β π₯3 β₯ 44
π₯1 β π₯2 + π₯3 = 7
π₯1 ππ π’πππππ π‘ππππππ, π₯2 β₯ 0, π₯3 β₯ 0,
In order to apply the dual simplex method, convert Min Z to Max Z and allΒ β₯Β constraint toΒ β€Β constraint by multiply -1.
MaxΒ Z=-30x1+50x2-10x3
subject to
-3x1-2x2+x3β€-44
x1-x2+x3=7
and Β x1 ππ π’πππππ π‘ππππππ,Β x2,x3β₯0;
The problem is converted to canonical form by adding slack, surplus and artificial variables as appropiate
1. As the constraint-1 is of type 'β€' we should add slack variableΒ S1
2. As the constraint-2 is of type '=' we should add artificial variableΒ A1
After introducing slack,artificial variables
MaxΒ Z=-30x1+50x2-10x3+0S1-MA1
subject to
-3x1-2x2+x3+S1=-44
x1-x2+x3+A1=7
andΒ x1,x2,x3,S1,A1β₯0
Here not allΒ Zj-Cjβ₯0.Β (BecauseZ1-C1=-M+30)
Hence, method fails to get optimal basic feasible solution.
Comments
Leave a comment