We have the following generic program:
$max \;\; c^Tx$
$\quad \quad Ax \le b$
$\quad \quad x \ge 0$
where $x$ is the vector of variables $(x_1, x_2,..., x_n)$. Suppose the origin is feasible. The it is certainly a vertex since it is the unique point at which the n inequalities are tight.
Now suppose we have the following LP:
$max \; 2x_1 + 5x_2$
$1)\quad 2x_1 - x_2 \;\;\;\le 4$
$2)\quad x_1 + 2x_2 \;\;\;\le 9$
$3)\quad -x_1 + x_2 \;\le 3$
$4)\quad x_1 \ge 0$
$5)\quad x_2 \ge 0$
Simplex can be started at the origin specified by constraints (4) and (5).
To move we release the tight constraint $x_2 \ge 0$. As $x_2$ is gradually increased, the first constraint it runs into is $-x_1+x_2\le3$ and thus it has to stop at $x_2=3$ at which point the new inequality is tight.
The new vertex is given by (3) and (4)
I have 2 questions:
1) What is meant by "inequality is tight"
2) Why does $x_2$ have to stop at 3?
