Suppose we have a symmetric matrix that we know is positive semi-definite and has missing entries. For example:
$ \begin{pmatrix} 1&1&1\\ 1&1&x\\ 1&x&1 \end{pmatrix} $
How can I find (preferably analytically, but algorithmically is ok) the values of $x$ that would make this matrix positive semi-definite?
Extra background for the interested: The matrix I am looking at is a covariance matrix, which we know is PSD. I want to find the possible values of $x$ so that, from the possible values, I choose the one that would render the maximum entropy distribution.
The determinant of your matrix is $-(x-1)^2$. Since a positive semidefinite matrix must have nonnegative determinant, the only possible value is $x=1$. You still need to check that the matrix is actually PSD when $x=1$.
More generally, a matrix is PSD iff all principal minors are nonnegative.