I want to find the closest symmetric matrix (using the Frobenius norm, or another matrix norm) to a given symmetric matrix $G$ such that the inner product with a given rank-$1$ matrix $b b^T$ is bigger than a given constant $c$.
Given $G \in \mathcal{M}_{n \times n}$ symmetric, $b \in \mathbb{R}^n$ and $c \in \mathbb{R}$,
$$\begin{array}{ll} \underset{\tilde{G}}{\text{minimize}} & \| \tilde{G} - G \|\\ \text{subject to} & b^T \tilde{G} \ b \geq c\end{array}$$
I think that there should be a relation with the PCA SVD and that somehow the answer should be related to the eigenvectors and eigenvalues of $G$. Thanks.