Consider the optimization problem
$$\min c^Tx,$$ such that $$Ax=0,\\ x^Tx\leq1.$$ where $$c^T[I-A^T(AA^T)^{-1}A]c > 0,$$ and $A$ is an $m\times n$ matrix of rank $m$.
My attempt:
I try to solve it using Lagrange Method, and I can write down the first-order sufficient conditions: $$c+A^T\lambda + 2\mu x = 0, \\ Ax = 0, \\ \mu(x^Tx-1)\leq 0, \\ \mu \geq 0.$$ Then, we can first assume that the inequality constraint is active, which means that $x^Tx=1$, there is $$c+A^T\lambda + 2\mu x = 0, \\ Ax = 0, \\ x^Tx-1 = 0.$$
Then, I have no idea how to solve this equation system.