Solve the following LPP using dual simplex method: Max Z= -3x1- x2,
Subject to: x1+x2 ≥ 1, 2x1+3x2 ≥ 2, x1,x2 ≥ 0.
Solution.
We replace signs in restrictions and we enter additional variables x3, x4.
Initial simplex table, where x3 and x4 are basic variables.
So, as is in the 2nd line, and the maximum modulo element in the 2nd line is -3, x2 is a new basic variable.
Updated table
is in 1 row, and the largest element modulo is in 1 column, then x1 is a new basic variable.
Updated table.
Let's calculate and create a simplex table with deltas.
therefore, the plan is suboptimal.
Take the new base variable x4 instead of x1.
We will have the following table, as well as a table with deltas.
therefore, the plan (0,1,0,1) is optimal.
So,
Answer. -1.
Comments