I want to gather examples about the reduced cost in different cases, now for the Big-M method. I hope this makes the methods more accesible. So
How does the Big-M method work with the below?
$$\min x_1-2x_2+x_4$$ $$\text{ s.t. } -x_1+x_2=1$$ $$x_2-2x_3+3x_4=10$$ $$x_1+x_3+4x_4=4$$ $$x_1,x_2,x_3,x_4\geq 0$$
The Big-M method can be seen as a special case of the Two-Phase Simplex, now instead of $y_1,y_2,...,y_n$ dummy vars to reformate the base, we use a large value $M$. It is calculated pretty similarly to the Two-Phase Simplex as you can see here for the problem. Again the fundamental idea is this reduced cost formula $\bar{\bf{c'}_j}=c_j'-\bf{c'}_B B^{-1}A_j$. The Bertsimas has something on the page 117 but not as explicitly calculated example as here. I hope it helps!
Related information
Example