I found a nice tutorial here http://www.math.ucla.edu/~tom/LP.pdf for applying the Simplex Method to problems of the form: maximize $c^T x$ with the constraints $Ax\leq b$, $x_i \geq 0$. It suggests introducing "slack variables" to convert it to the form $Ax=b$, $x_i \geq 0$ and going from there.
The issue is, my problem is already of the form $Ax=b$, $x_i \geq 0$, and hence I have no need to introduce slack variables. So I'm not sure how to apply the method, since I don't have any "basic variables" in my initial tableau, and from what I can tell from the linked tutorial, having basic variables is essential to applying the method. Can anyone link me to a tutorial that starts with the problem in the form I have?