I was reading the solutions of Pr. Boyd's optimisation book. In the solution set, for question 6.4 it is stated that the dual problem of the following problem:
$$\min {||Ax-b||_1} $$
is:
\begin{gather*} \max {\sum_{i=1}^m{b_i\lambda_i}} \\ \text{such that} \quad |\lambda_i| \le1, i=1, \ldots, m \\ \sum_{i=1}^m\lambda_i a_i = 0 \end{gather*}
The point is that I've tried to write the first problem as the second by employing conjugate, and I've verified the first and last lines of the second problem, but I really cannot figure out the second line of the second problem. I guess it may have a connection to the conjugate norm, but don't know how it may, and also I'm not sure. Does anyone have any opinion?
It's worth mentioning that the $\ell^1$ norm can easily be written using two dual $\lambda$s, but for this specific problem, another approach has been utilised using norm conjugate I believe.
You can derive the dual via linear programming. Rewrite the primal problem as the following linear program, with dual variables in parentheses: \begin{align} &\text{minimize} &\sum_i z_i \\ &\text{subject to} & z_i - \sum_j A_{i,j} x_j &\ge b_i &&(\alpha_i \ge 0)\\ & & z_i + \sum_j A_{i,j} x_j &\ge -b_i &&(\beta_i \ge 0)\\ & & x_j &\quad\text{ free} \\ & & z_i &\ge 0 \end{align}
The dual problem is then: \begin{align} &\text{maximize} &\sum_i b_i \alpha_i - \sum_i b_i \beta_i \\ &\text{subject to} & -\sum_i A_{i,j} \alpha_i + \sum_i A_{i,j} \beta_i &= 0 &&(\text{$x_j$ free})\\ & & \alpha_i + \beta_i &\le 1 &&(z_i \ge 0)\\ & & \alpha_i &\ge 0 \\ & & \beta_i &\ge 0 \end{align}
Now let $\lambda_i = \alpha_i - \beta_i$. Because $\alpha_i \ge 0$ and $\beta_i \ge 0$, we have $|\lambda_i| \le \alpha_i + \beta_i$.
So the dual problem becomes: \begin{align} &\text{maximize} &\sum_i b_i \lambda_i \\ &\text{subject to} & \sum_i A_{i,j} \lambda_i &= 0 &&(\text{$x_j$ free})\\ & & |\lambda_i| &\le 1 &&(z_i \ge 0)\\ & & \lambda_i &\quad \text{ free} \end{align}
Alternatively, start with the dual problem as the linear program: \begin{align} &\text{maximize} &\sum_i b_i \lambda_i \\ &\text{subject to} & \sum_i A_{i,j} \lambda_i &= 0 &&(\text{$x_j$ free})\\ & & -\lambda_i &\le 1 &&(u_i \ge 0)\\ & & \lambda_i &\le 1 &&(v_i \ge 0)\\ & & \lambda_i &\quad \text{ free} \end{align}
The dual of the dual is: \begin{align} &\text{minimize} &\sum_i (u_i+v_i) \\ &\text{subject to} & \sum_j A_{i,j} x_j -u_i+v_i &= b_i &&(\text{$\lambda_i$ free})\\ & & x_j &\quad \text{ free} \\ & & u_i &\ge 0 \\ & & v_i &\ge 0 \end{align}
And this is the other well-known LP formulation for minimizing $||Ax-b||_1$.