The new inequality, in equational form, is $x_1 - s_2 + s_4 = 1$.
However, we cannot add it to the tableau in that form, because $x_1$ is basic. We must subtract the top row, $x_1 + \frac27s_1 - \frac17 s_2 = \frac{12}{7}$, from this new equation, getting $-\frac27 s_1 - \frac67s_2 + s_4 = -\frac57$.
\begin{array}{rrrrrrr|r}
x_1 &x_2 &s_1 &s_2 &s_3 &s_4 &z &\\ \hline
1 &0 &2/7 &-1/7 &0 &0 &0 &12/7\\
0 &1 &-1/7 &5/21 &0 &0 &0 &15/7\\
0 &0 &-2/7 &-4/21 &1 &0 &0 &20/7\\
0 &0 &-2/7 &-6/7 &0 &1 &0 &-5/7\\ \hline
0 &0 &1/7 &9/21 &0 &0 &1 &69/7
\end{array}
Now the tableau has nonnegative coefficients in the final row, but it is not feasible: the basic solution is $x_1 = \frac{12}{7}$, $x_2 = \frac{15}{7}$, $s_3 = \frac{20}{7}$, and $s_4 = -\frac57$. So we can use the dual simplex method to restore feasibility.
In the dual simplex method, instead of choosing an entering variable based on the reduced costs, and then choosing a leaving variable to preserve feasibility, we do the opposite:
- We will choose $s_4$ to be our leaving variable, because it is not feasible.
- Our entering variable needs to have a negative coefficient in $s_4$'s row, so that dividing by that negative coefficient restores feasibility in the row we chose. So the entering variable could be $s_1$ or $s_2$.
- To choose between them, compare the ratios $\frac{1/7}{2/7} = \frac12$ and $\frac{9/21}{6/7} = \frac12$ between $s_4$'s row and the bottom row. In this case, they're equal, so it doesn't matter which we choose; in general, we'd pick the variable with the smallest ratio.
A pivoting step where $s_1$ (say) enters and $s_4$ leaves is done in the same way as the ordinary simplex method:
\begin{array}{rrrrrrr|r}
x_1 &x_2 &s_1 &s_2 &s_3 &s_4 &z &\\ \hline
1 &0 &0 &-1 &0 &1 &0 &1\\
0 &1 &0 &2/3 &0 &-1/2 &0 &5/2\\
0 &0 &0 &2/3 &1 &-1 &0 &25/7\\
0 &0 &1 &3 &0 &-7/2 &0 &5/2\\ \hline
0 &0 &9 &0 &0 &1/2 &1 &19/2
\end{array}
Here, one pivot has restored feasibility (in general, many steps could be required), so we've finished solving our new LP. Because we still don't have an integer solution, we should add another cutting plane and continue in the same way.