【发布时间】:2016-02-03 01:02:04
【问题描述】:
我被要求用更少的方程重写这个线性规划问题。
MAX 7X1+5X2
S.t:
4X1+3X2 <= 2400
2X1+0.5X2 <= 750
X1 >= 100
X1,X2 >= 0
我所做的是使用单纯形法,我发现最大利润是 4030,其中 X1 = 100 和 X2=666。我可以用它说to obtain the maximum profit, X1 has always to be 100, then the third equation is an extra吗?
【问题讨论】:
标签: math mathematical-optimization linear-programming linear-equation