I'd like to minimize the following function, but can't reach a closed form solution with respect to $C$ from the first-order partial derivative.
$||A-BCD^T||_F^2 + \frac{1}{2}||C||_F^2$
where A,B,C, and D are matrices of feasible dimensions.
For the partial derivative I get the following:
$-B^TAD + B^TBCD^TD+C \equiv 0$
But the second term is giving me trouble. Any help would be apprectiated!
Hint: To solve on $X$ the following matrix equation
$$P + QXR + X = 0,$$
use the vectorization property: $$\text{vec}(QXR) = (R^T \otimes Q)\text{vec}(X).$$
Thus, it becomes a linear system:
$$ \left((R^T \otimes Q) + I\right)\text{vec}(X) = -\text{vec}(P).$$
Can you proceed from here?