Given the matrix-vector product $ A (p \circ q) $, is it possible to decouple $ p $ from the expression, such that $ A (p \circ q) = L p $?.
Ultimately, I need to minimize $ || A (p \circ q) ||^2_2 $ with $p$ being the optimzization parameter. If it helps, $ A = M \otimes I $, where $ I $ is the identity matrix. Any hints/references will be appreciated.
Note: $ \circ $ represents the Hadamard product.
To solve your minimization problem, define the diagonal matrix $Q$ such that $$Q = {\rm Diag}(q),\quad A(q\odot p) = AQp = Lp$$ Write the cost function in terms of this new matrix. Then find its differential and gradient. $$\eqalign{ \phi &= Lp:Lp \cr d\phi &= 2Lp:L\,dp \cr &= 2L^TLp:dp \cr \frac{\partial\phi}{\partial p} &= 2L^TLp \cr }$$ Setting the gradient to zero yields $$\eqalign{ L^TLp &= 0 \quad\implies\quad p &= \big(I-L^+L\big)w \cr }$$ where $L^+$ denotes the pseudoinverse of $L$ and $w$ is an arbitrary vector.
NB: In some of the steps above, a colon is used to denote the dot product.