I am woring on a problem and I got these inequalities.
$t_{01}+t_{11}+t_{21}\ge 4$
$t_{02}+t_{12}+t_{22}\ge 4$
$t_{10}+t_{11}+t_{12}\ge 4$
$t_{10}+t_{01}+t_{22}\ge 4$
$t_{10}+t_{02}+t_{21}\ge 4$
$t_{20}+t_{21}+t_{22}\ge 4$
$t_{20}+t_{01}+t_{12}\ge 4$
$t_{20}+t_{02}+t_{11}\ge 4$
There are $8$ integer unknowns, $t_{ij}\ge 0, 0\le i \le2, 0\le j \le2, t_{00}$ is missing. Every unknown is used in exacly 3 inequalitites. The problem is to find solution that minimizes sum of all $t_{ij}$.
If we sum all inequalities will get
$3\times \sum \ge 8\times 4$
$\sum \ge 11$
I have got this solution $t_{ij}= \begin{bmatrix} & 2 & 2 \\ 2 & 2 & 0 \\ 2 & 0 & 2 \end{bmatrix}$ and I need hint to prove that it optimal. Sum of all unknowns is $12$ here. Maybe linear programming method can be used?