I'm trying to understand the simplex iteration of a problem with n
variables and m
technological constraints by following this text. I understand well the geometric interpretation of the iteration - moving between adjacent vertices.
However, I fail to understand the algebraic intuition. Now we're pivoting
between adjacent basic feasible solutions
= bfs
to the standard form of AX + IS = b
, X,S >= 0
:
- Why is it that the bfs must have
n
variables equal to 0? - Why should the rest of the variables form a
basis
? Isn't a basis a set of linearly independent vectors spanning a sub-space? What are we spanning here, we're just looking for a vertex, aren't we?
Thanks!