I came across this problem in control systems and I would like to know how minimizing the norm is converted to a linear programming problem. The optimization problem seeks to minimize the Taxicab norm stated as follows
$$ \min_{\boldsymbol{u}} \| J\boldsymbol{u}+\alpha\boldsymbol{e}\|_1 $$ where $J \in \mathbb{R}^{m\times n},\boldsymbol{u}\in \mathbb{R}^{n},\boldsymbol{e}\in \mathbb{R}^{m}$. Clearly the optimization problem is not linear due to the absolute value of the norm. In order to solve it using Simplex method, we need to convert it to a linear optimization problem. In the paper I'm reading, they suggest the following conversion which I don't understand how they reach to this form.
$$ \begin{aligned} \min_{\boldsymbol{u},\boldsymbol{y}} \quad & \boldsymbol{1}^T\left( 2\boldsymbol{y} - ( J\boldsymbol{u}+\alpha\boldsymbol{e}) \right)\\ \textrm{s.t.} \quad & J\boldsymbol{u}-\boldsymbol{y} \leq -\alpha\boldsymbol{e}\\ &\boldsymbol{y}\geq0 \\ \end{aligned} $$
I came across this Linear programming: minimizing ... which suggests two inequality constraints but I couldn't relate it to my problem. Any suggestions?
I hope this might help.
What they are doing is to introduce an additional (auxiliary) variable $y$ which somehow upperbounds $Ju + \alpha e$, meaning that they would like to do something:
\begin{align} \min_{u,y} 1^\top y \\ s.t \quad &y \geq Ju+\alpha e \\ &-y \leq Ju+\alpha e \\ & y \geq 0 \end{align}
I don't know why they have in the cost $2y - (Ju+\alpha e)$, but my guess is that at the end of the minimization problem $2y - (Ju+\alpha e) = y$, meaning that you are actually minimizing the auxiliary variable as you would like, and the bound is tight.