Simplex Solver

with detailed steps

Your Linear Problem in

Matrix constraints (A)

x

Vector objective function (c)

Vector b

LP Forms
Slack
min cxs.t.{Ax=bx0 \begin{align*} \text{min } & c^\intercal x\\ & s.t. \begin{cases} Ax = b \\ x \geq 0 \end{cases} \end{align*}
Leq
min cxs.t.{Axb \begin{align*} \text{min } & c^\intercal x \\ & s.t. \begin{cases} Ax \leq b \\ \end{cases} \end{align*}
Custom
min cxs.t.{Ax?bx1,x30 \begin{align*} \text{min } & c^\intercal x \\ & s.t. \begin{cases} Ax ? b \\ x_1,x_3 \geq 0 \end{cases} \end{align*}