Solve LPP by Using Big M Method
Solve LPP by Using Big M Method
SUCH THAT
2X1+ 4X2+ 6X3 > 24
3X1+ 9X2+ 6X3 > 30
X1,15X2, X3 > 0
To solve the given linear programming problem (LPP) using the Big M method, we need to
follow these steps:
Subject to:
-2X1 - 4X2 - 6X3 + S1 = -24
-3X1 - 9X2 - 6X3 + S2 = -30
X1, X2, X3, S1, S2 ≥ 0
Subject to:
-2X1 - 4X2 - 6X3 + S1 + 0A1 = -24
-3X1 - 9X2 - 6X3 + S2 + 0A2 = -30
X1, X2, X3, S1, S2, A1, A2 ≥ 0
Choose column X1 as the entering variable and row A1 as the departing variable.
Divide the pivot row (A1) by the pivot element (-2) to make the pivot element equal to 1:
```
Cj X1 X2 X3 S1 S2 A1 A2 Min Ratio
Z | 7 | 0 | 15 | 20 | 0 | 0 | 0 | 0 | 0
-----------------------------------------------------------------------------------
A1 | 0 | 1 | 2 | 3 | -0.5 | 0 | 0.5 | 0 | 0
A2 | 0 | -3 | -9 | -6 | 0 | 1 | 0 | 1 | 0
-----------------------------------------------------------------------------------
Zj | 0 | 6 | 12 | 18 | Iteration 2:
```
Cj X1 X2 X3 S1 S2 A1 A2 Min Ratio
Z | 7 | 0 | 15 | 20 | 0 | 0 | 0 | 0 | 0
-----------------------------------------------------------------------------------
X1 | 0 | 1 | 2 | 3 | -0.5 | 0 | 0.5 | 0 | 0
A2 | 0 | 0 | -3 | 0 | 1.5 | 1 | -1.5 | 1 | 0
-----------------------------------------------------------------------------------
Zj | 0 | 6 | 12 | 18 | 3 | 0 | 3 | 0 |
```
Choose column X2 as the entering variable and row A2 as the departing variable.
Divide the pivot row (A2) by the pivot element (-3) to make the pivot element equal to 1:
```
Cj X1 X2 X3 S1 S2 A1 A2 Min Ratio
Z | 7 | 0 | 15 | 20 | 0 | 0 | 0 | 0 | 0
-----------------------------------------------------------------------------------
X1 | 0 | 1 | 2 | 3 | -0.5 | 0 | 0.5 | 0 | 0
X2 | 0 | 0 | 1 | 0 | -0.5 | -0.33 | 0.5 | -0.33 | 0
-----------------------------------------------------------------------------------
Zj | 0 | 6 | 6 | 18 | 1 | 1.67 | 3 | 1.67 |
```
The solution is not yet optimal since some coefficients in the Zj row are negative.
Iteration 3:
```
Cj X1 X2 X3 S1 S2 A1 A2 Min Ratio
Z | 7 | 0 | 15 | 20 | 0 | 0 | 0 | 0 | 0
-----------------------------------------------------------------------------------
X1 | 0 | 1 | 2 | 3 | -0.5 | 0 | 0.5 | 0 | 0
X2 | 0 | 0 | 1 | 0 | -0.5 | -0.33 | 0.5 | -0.33 | 0
-----------------------------------------------------------------------------------
Zj | 0 | 6 | 6 | 18 | 1 | 1.67 | 3 | 1.67 |
```
Choose column X3 as the entering variable and row X2 as the departing variable.
Divide the pivot row (X2) by the pivot element (1) to make the pivot element equal to 1:
```
Cj X1 X2 X3 S1 S2 A1 A2 Min Ratio
Z | 7 | 0 | 15 | 20 | 0 | 0 | 0 | 0 | 0
-----------------------------------------------------------------------------------
X1 | 0 | 1 | 0 | 3 | -1.5 | 1 | 0 | 1 | 0
X3 | 0 | 0 | 1 | 0 | -0.5 | -0.33 | 0.5 | -0.33 | 0
-----------------------------------------------------------------------------------
Zj | 0 | 6 | 0 | 18 | 2 | 2.33
The solution is now optimal since all the coefficients in the Zj row are non-negative.
Please note that the Big M method is one of the techniques used to solve linear programming
problems. It involves introducing artificial variables and using a large positive constant (M)
to penalize their presence in the objective function. The method ensures that the artificial
variables will be eliminated from the final optimal solution if they are not essential.