I have a linear program that I want to solve using the Simplex Method. I would like help figuring out how to initialize the tableau from a given feasible solution.
I have found many instructions how to initialize the tableau generally. But they all involve introducing slack/artificial variables in order to derive an initial feasible solution where all the original variables are set to $0$. However, for my program I already know an initial solution from which I would like to start.
Concretely my program is $$\text{max } -\theta \text{ subject to}$$ $$(\sum_{i = 1}^{n} c_i^{(1)}\lambda_i) - c_k^{(1)}\theta + s^{(1)} = 0$$ $$(\sum_{i = 1}^{n} c_i^{(2)}\lambda_i) - c_k^{(2)}\theta + s^{(2)} = 0$$ $$(\sum_{i = 1}^{n} c_i^{(3)}\lambda_i) - c_k^{(3)}\theta + s^{(3)} = 0$$ $$(\sum_{i = 1}^{n} c_i^{(4)}\lambda_i) - s^{(4)} = c_k^{(4)}$$ $$\sum_{i = 1}^{n} \lambda_i = 1$$ where $k$ is some number in $\{1, \ldots, n\}$ and the $c_i^{(j)}$'s are nonnegative constants. In this case setting $\theta = \lambda_k = 1$ and all other variables to $0$ would be a solution. How would I construct the initial tableau given this initial solution?