Use the simplex algorithm to find two optimal solutions to t
Solution
Solve by simplex method:
Table 1
 -------------------------------------------------
 x1     x2     s1     s2     s3     z           
  -------------------------------------------------
 2      3      1      0      0      0      4    
 1      1      0      1      0      0      1    
 4      1      0      0      1      0      2    
 -4     -1     0      0      0      1      0    
Table 2
 -------------------------------------------------
 x1     x2     s1     s2     s3     z           
  -------------------------------------------------
 0      2.5    1      0      -0.5   0      3    
 0      0.75   0      1      -0.25 0      0.5  
 1      0.25   0      0      0.25   0      0.5  
 0      0      0      0      1      1      2    
Hence Optimal Solution: z = 2; x1 = 0.5, x2 = 0

