Solve the Linear Programing problem Minimize z 8x1 10x2 1
Solve the Linear Programing problem
Minimize: z = 8x1 + 10x2 + 11x3 + 14x4
ST:
 x1 = .03A + .02B + .01C
 x2 = .06A + .04B + .01C
 x3 = .10A + .03B + .04C
 x4 = .12A + .09B + .04C
0 <= A <= 80 0 <= B <= 40 0 <= C <= 20
Solution
Since A, B and C can take the minimum values of 0, the minimum value of x1,x2,x3,x4 will also be 0.
Putting this in objective function the minimum value we get is 0.

