Conceptually, the simplex algorithm goes from one vertex of a polytope to the next. However, how is the initial vertex computed ?
If I follow the simplex tableau scheme, it should at some point correspond to the computation of an initial vertex. Can someone explain in more detail, how this happens ?
For example according to https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-251j-introduction-to-mathematical-programming-fall-2009/lecture-notes/MIT6_251JF09_lec05.pdf given the current basis and basis feasible solution $x$, we can obtain a better basis and basis feasible solution by find an index j from the non-basis column set such that the reduced costs improve (descrease). This results in a direction $d$ such that we obtain the next vertex at $x + \theta d$ (if $x$ is not optimal) with $\theta >0$.
However, If I have a look at the Simplex tableau algorithm, I dont have to compute an initial basis (i.e. checking if the corresponding matrix is regular),
How do these two concepts relate?