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?