I have to convert the non linear problem into standard minimization linear programming form
Minimize: $|x|+|y|+|v|$
Subject to: $$x+y\le1$$ $$2x+v=3$$
I dont have any idea how can I do it...I would appreciate any help.
I have to convert the non linear problem into standard minimization linear programming form
Minimize: $|x|+|y|+|v|$
Subject to: $$x+y\le1$$ $$2x+v=3$$
I dont have any idea how can I do it...I would appreciate any help.
Hint: Write $x$ as $$x=x^+-x^-$$ with $x^+, x^-\ge 0$. Now $$|x|=x^++x^-$$ Similarly for $y,v$.
A simpler way:
$min \quad t_x+t_y+t_z$
$ s.t. $
$ x+y\leq 1$
$ 2x + z =3 $
$ t_i \geq i \quad i\in\{x,y,z\} $
$ t_i \geq -i \quad i\in\{x,y,z\} $
That should work.
Minimize $x^{+}+x^{-}+y^{+}+y^{-}+v^{+}+v^{-}$
Subject to
$$x^{+}-x^{-}+y^{+}-y^{-}+s=1$$ $$2x^{+}-2x^{-}+v^{+}-v^{-}=3$$ $$x^{+}, x^{-}, y^{+}, y^{-}, v^{+}, v^{-}, s \ge 0$$
Is a correct answer?