Say we have a polyhedron represented by:
x1 + x2 + 2*x3 <=3
3*x1 + x2 + x3 <=4
x1, x2, x3 >= 0
how can I demonstrate that (0,3,0) is a vertex and not an interior point?
to make these equations instead of inequalities, we can use slack variables:
x1 + x2 + 2*x3 + s1 = 3
3*x1 + x2 + x3 + s2 = 4
my guess is that at least one slack variable has to be 0. But it could also be only one slack variable can zero...not sure yet.
In my estimation, to find a vertex, if you have N variables and M equations, at least (N-M) variables have to take on the value of 0.
this smells good:
0I believe (1) is necessary, and (2) is necessary, and given (3), then the total combination is sufficient for a point in a polyhedron to be a vertex.
(Without a restriction that all variables are +positive, it seems like there are pretty much always infinite solutions).