Let $P$ denote $(x,y,z)\in \mathbb R^3$, which satisfies the inequalities:
$$-2x+y+z\leq 4$$ $$x \geq 1$$ $$y\geq2$$ $$ z \geq 3 $$ $$x-2y+z \leq 1$$ $$ 2x+2y-z \leq 5$$
How do I find an interior point in $P$?
Is there a specific method, or should I just try some random combinations and then logically find an interior point?



Rewrite the system of linear inequalities in the following order
$$x - 2y + z \leq 1$$
$$2x + 2y - z \leq 5$$
$$-2x + y + z \leq 4$$
$$x \geq 1$$
$$y \geq 2$$
$$z \geq 3$$
Adding the first two inequalities, we get $3 x \leq 6$, or, $x \leq 2$. Adding the 2nd and 3rd inequalities, we get $3 y \leq 9$, or, $y \leq 3$. Hence, $x+y \leq 5$. Adding the 1st and 3rd inequalities, we get
$$2 z \leq 5 + (x+y) \leq 10$$
or, $z \leq 5$. Combining these results with the 4th, 5th and 6th inequalities, we get
$$1 \leq x \leq 2 \qquad \qquad \qquad 2 \leq y \leq 3 \qquad \qquad \qquad 3 \leq z \leq 5$$
Thus, the polyhedron defined by the inequalities should be a subset of $[1,2] \times [2,3] \times [3,5]$. Let $x = 1$ and $y = 2$. Then, the inequalities give us $z \in [3,4]$. We can choose $z=3$. Hence,
$$(x,y,z) = (1,2,3)$$
is one feasible point. It is not the only one, though. It is also on the boundary. If we want an interior point instead, then let $x = \frac{3}{2}$ and $y = \frac{5}{2}$. The inequalities give us $z \in [3,\frac{9}{2}]$. We choose $z = 4$. Hence,
$$(x,y,z) = \left(\frac{3}{2},\frac{5}{2},4\right)$$
is one interior feasible point.