Consider the following sparse optimization problem:
$\min\{\|x\|_1\,:\,\|Ax-b\|_2\leq\delta,\,x\in\mathbb{R}^n\}$
This problem is equivalent to some other versions of LASSO, according to: http://www.math.ucla.edu/~wotaoyin/summer2013/slides/Lec02_BasicSparseOptimizationModels.pdf
I want to show that the dual problem is:
$\max\{\langle b,y\rangle-\delta\|y\|\,:\,\|A^Ty\|_{\infty}\leq 1,\,y\in\mathbb{R}^m\}$
I tried to write a Lagrangian (using Lagrange multiplier times the constraint $\|Ax-b\|_2-\delta\leq 0$), but it seems to not lead in the correct direction.\ I found an article that proves some theorem about the uniqueness of solution for this problem (in http://link.springer.com/article/10.1007/s10957-014-0581-z), but I think their proof is much more abstract than the proof I'm looking for. Any other suggestions?
I'm kind of strange but I prefer to use a conic approach. Rewrite the original as \begin{array}{ll} \text{minimize} & t \\ \text{subject to} & \|x\|_1 \leq t \\ & \|Ax-b\|_2 \leq \delta \end{array} and then like so: \begin{array}{ll} \text{minimize} & t \\ \text{subject to} & (x,t) \in \mathcal{K}_{\ell_1} \\ & (Ax-b,\delta) \in \mathcal{K}_{\ell_2} \end{array} where $\mathcal{K}_{\ell_1}$ and $\mathcal{K}_{\ell_2}$ are the cones defined by the epigraphs of the $\ell_1$ and $\ell_2$ norms, respectively. Then the Lagrangian becomes \begin{aligned} L(x,t,z_1,z_2,z_3,z_4) &= t - \langle (x,t), (z_1,z_2) \rangle - \langle (Ax-b,\delta), (z_3,z_4) \rangle \\ &= t - x^Tz_1 - tz_2 - (Ax-b)^T z_3 - \delta z_4 \end{aligned} Our Lagrange multipliers lie in the dual cones: $$(z_1,z_2)\in\mathcal{K}_{\ell_1}^* = \mathcal{K}_{\ell_\infty}, \quad (z_3,z_4)\in\mathcal{K}_{\ell_2}^* = \mathcal{K}_{\ell_2}$$ which means that $$\|z_1\|_\infty \leq z_2, \quad \|z_3\|_2 \leq z_4$$ Since $L$ is linear in $x$ and $t$, the dual function $g(z_1,z_2,z_3,z_4) = \inf_{x,t} L(x,t,z_1,z_2,z_3,z_4)$ is finite only for those values of the dual variables if the terms involving $x$ and $t$ vanish. This leads to the dual constraints $$1 - z_2 = 0 \quad -z_1-A^T z_3 = 0$$ So the dual problem becomes \begin{array}{ll} \text{maximize} & b^T z_3 - \delta z_4 \\ \text{subject to} & z_2 = 1 \\ & z_1 = - A^T z_3 \\ & \|z_1\|_\infty \leq z_2 \\ & \|z_3\|_2 \leq z_4 \end{array} Eliminating $z_2$ and $z_1$ yields \begin{array}{ll} \text{maximize} & b^T z_3 - \delta \|z_3\|_2 \\ \text{subject to} & \|-A^Tz_3\|_\infty \leq 1 \\ \end{array} So it looks like setting $y=z_3$, and eliminating the superfluous negative sign in the dual constraint, gets you what you want.