Let $A\in \mathbb{R}^{n\times n}$. Find $\overline O$, orthogonal matrix, to minimize $\|A-O\|_F$. That is;
$$\min_{O\in O(n)} \|A-O\|_F$$ Where $O(n)$ are the set of orthogonal matrices of $\mathbb{R}^{n\times n}$.
$\|\cdot \|_F $ is the Frobenius Norm
So I think it has something to do with SVD. We know that we can write $A$ as $$A = \sum_{j=1}^r \sigma_j u_j v_j^t$$
Where $rank(A) = r$
Also, if we denote $A_k = \sum_{j=1}^k \sigma_j u_j v_j^t$ then we know that $$ \min_{B\in Mat_{n\times n}(\mathbb{R}) \\ rank(B)\le k} \|A-B\| = \|A-A_k\| = \sigma_{k+1} $$
I've tried to utilize those theorem but couldn't figure it out.
I'd be glad for help!