Is it possible to know if the feasible region is unbounded without drawing it

linear programming

Given the following set:

$$ -x_1 + x_2 = 4$$

$$ x_1 – 2x_2 + x_3 <= 6 $$
$$ x_3 >= 1 $$
$$ x_1,x_2,x_3 >= 0 $$

Without drawing the feasible region can I know if it is bounded or unbounded?

Best Answer

A polyhedron is unbounded if there exists a point $x$ and a direction $d$ such that $x + \alpha d$ is in the polyhedron for all $\alpha \geq 0$. Denote the polyhedron as $Ax \leq b$, then $x$ and $d$ need to satisfy $A(x+\alpha d) \leq b$ for all $\alpha \geq 0$. That is equivalent to finding $x$ and $d$ such that $Ax \leq b$ and $Ad \leq 0$.