Max: $ z = 10( x_1 + x_2)$
subject to constraints:
- $$ 2x_1 + 5x_2 \leq 16 $$
- $$ 6x_1 + 5x_2 \leq 30 $$
$$ x_1, x_2 \in \mathbb{Z^+} $$
I have the Integer Programming Problem as above. While solving it, My results come out to be:
$$ \pmatrix{ x_1 \\ x_2 } = \pmatrix{3 \\ 2} \text{ OR } \pmatrix{4 \\ 1} $$
But, in the constraint equation, if I subtract one from other; I get
$$ 4x_1 \leq 14 $$ or simply, $ x_1 \leq \dfrac{7}{2} = 3.5 $.
Now, as per this new outcome/restriction on $ x_1 $, I am thinking that my solution of the IPP was wrong.
Is my procedure to manipulate the constraint equations wrong?
From the graph, I do see that my solution is correct and my newer constraint $x_1 \leq 3.5$ is wrong. But, can someone explain why?

If $1 \le 3$ and $2 \le 3$, "subtracting" as you did, what do you get?