While doing a linnear programming problem, i came with this system of equations of 10 variables, and 7 restrictions (7 equations and 10 inequalities).
The objtective is to minimize the function:
$$Z=3x_{14}+5x_{15}+8x_{25}+9x_{23}+2x_{45}+4x_{35}+2x_{46}+5x_{56}+7x_{57}+2x_{37}$$
Subject to:
$437.5=x_{14}+x_{15}$
$437.5=x_{25}+x_{23}$
$x_{23}=x_{35}+x_{37}$
$x_{14}=x_{45}+x_{46}$
$x_{15}+x_{25}=x_{56}+x_{57}$
$x_{46}+x_{56}=600$
$x_{57}+x_{37}=275$
And
$x14≤300$
$x15≤300$
$x25≤300$
$x23≤200$
$x45≤200$
$x35≤200$
$x46≤300$
$x56≤300$
$x57≤300$
$x37≤200$
There are programms wich are suposed to solve this, but no one recives equations as an innput. What can i do?
I have good experiences with LINGO from LINDO Systems. A free version (6 months) can be downloaded here.
$\color{blue}{\texttt{Input example}}$
$MAX \ \ 5 X1 + 7 X2 \\ ST \\ 3 X1 + 4 X2 < 650\\ 2 X1 + 3 X2 < 500$
The default setting for the variables is, that they are non-negative.
$X1, \ X2 \geq 0$
$\color{blue}{\texttt{Output example}}$