I have been trying to solve the infinity norm minimization problem and after quite a bit of reading I have found out that infinity norm minimization problem can be re-written as linear optimization problem. I have been trying to understand how and why it is done so, but failing miserably. Could anyone please explain me about this and also tell how the cost function looks like?
My optimization problem looks like following: (I have to solve for $x$ when $A$ and $b$ are given.)
$$\mbox{minimize} \quad \|A x - b\|_{\infty}$$
which can be rewritten as follows
\begin{split}\begin{array}{lccl} \mbox{minimize} & t & &\\ \mbox{subject to} & Ax + t \mathbb 1 - b & \geq & 0,\\ & A x - t \mathbb 1 - b & \leq & 0, \end{array}\end{split}
where $\mathbb 1$ is a vector of ones.
If we want to minimize $|x|$ (for a scalar $x$) we can linearize this as:
$$\begin{align} \min\>& t\\& -t \le x \le t\end{align}$$
This means that if we want to minimize $||Ax-b||_{\infty}$ we can write:
$$\begin{align} \min\>& t\\& -t \le (Ax-b)_i \le t&&\forall i\end{align}$$
You need to split this into two different inequalities:
$$\begin{align} \min\>& t\\& -t \le (Ax-b)_i &&\forall i\\ &(Ax-b)_i \le t&&\forall i\end{align}$$
There are some other LP formulations shown here.