How to solve this \begin{aligned} &\underset{V \in \mathbb{R}^{n \times n}}{\text{minimize}} & & \sum_k \|Y_k - A_k V \|_F^2 \\ &\text{subject to} & & V^T V = I, \end{aligned} where $Y_k \in \mathbb{R}^{m \times n}$ and $A_k \in \mathbb{R}^{m \times n}$ are given. $I$ denotes an identity matrix of size $n \times n$.
At first it seemed like an Orthogonal Procrustes problem. However, I am not sure if that is the case. or is it related to generalized SVD that is not very obvious to me?
By the way, is there any known orthogonal projection onto the orthogonality constraint?
--8< ------------
My partial attempt:
Form the Lagrangian: \begin{align} L(V, \Lambda) := \sum_{k=1}^K \|Y_k - A_k V \|_F^2 + {\operatorname{Tr}}\left\{\Lambda^T \left( V^T V - I\right)\right\}. \end{align}
Taking the gradient with respect to $V$ and then set it to zero, i.e., \begin{align} \nabla_V L(V, \Lambda) := (-2)^K \sum_{k=1}^K A_k^T \left( Y_k - A_k V \right) + V \Lambda^T + V \Lambda = 0. \end{align}
But now, how to solve this?