I need to make a linear programming model. Here are the inequalities I\'m using (for example):
6x + 4y <= 24 x + 2y <= 6 -x + y <= 1 y <= 2
For solving the linear programming problem, you can use the scipy.optimize.linprog module in SciPy, which uses the Simplex algorithm.