I have to convert folloving problem: $$ min\{|x_1| + |x_2| + |x_3|\ |\ \text{conditions..}\} $$
to linear program (if it is possible). Since $|x_1| = max\{x_1,-x_1\}$, i have:
$$ x_1 \leq z_1 $$ $$ -x_1 \leq z_1 $$
$$ x_2 \leq z_2 $$ $$ -x_2 \leq z_2 $$
$$ x_3 \leq z_3 $$ $$ -x_3 \leq z_3 $$
where $z_{1,2,3}$ are slack variables.
How will minimalization function look like? I have to minimalize all three slack variables, but linear program can minimalize only one variable, am I right? Is the answer, that the problem is not solvable by LP?