Solve the following linear program by hand using the simplex method:
Minimize 3 X1 + 4 X2 + 8 X3
Subject To: 4X1 + 2 X2 >= 12
4 X2 + 8 X3 >= 16
X1, X2, X3 >= 0
a. Show all tableau iterations
b. What is the optimal solution?
c. What is the optimal Value?
Shows all tableau iterations and finds the optimal solution.