i’m looking for a library in Python where i could define a set of inequalities, and solve it.
Please, use the set of onequalities bellow to illustrate how to do it:
(X*421.5)/(X*421.5 + Y*1197.73+Z*538+T*1097.46)<=0.35
(Y*1197.73)/(X*421.5 + Y*1197.73+Z*538+T*1097.46)<=0.35
(Z*538)/(X*421.5 + Y*1197.73+Z*538+T*1097.46)<=0.35
(T*1097.46)/(X*421.5 + Y*1197.73+Z*538+T*1097.46)<=0.35
X*421.5 + Y*1197.73+Z*538+T*1097.46<=3700
Thanks in advance,
I am expecting code using the Python library of your choice to illustrate how to solve the inequalities.
1