I am trying to derive the proximal operator $\operatorname{prox}_{\lambda}f(v), v \in \mathbb R^n$ of the addition between a quadratic term and a lasso penalty
$f(x) = \lVert b - Ax \rVert_2^2 + \tau \|x\|_1.$
This is different from the question asked here.
The soft-thresholding operator is the proximal of the lasso regularizer $\|x\|_1$. I also know how to compute the proximal of the squared error loss $\lVert b - Ax \rVert_2^2$ as it is a quadratic function of $x.$
I may use the pre-composition property (Section 2.2, Proximal Algorithms, Parikh & Boyd) for deriving the proximity operator of $f$, but I am unsure how to define it.
In the same book, they propose this derivation.
If $f(x) = \phi(x) + (\rho/2)\lvert x - a \rvert_2^2$, then $$\boldsymbol{\operatorname{prox}}_{\lambda f}(\nu) = \boldsymbol{\operatorname{prox}}_{\tilde \lambda \phi} \left( (\tilde \lambda / \lambda ) \nu + (\rho \tilde \lambda) a \right).$$
The function $\phi$ can be taken as Lasso. However, in my case $x$ is multiplied by a matrix $A.$