I am working with real symmetric non-negative matrices with integer elements and zero diagonal. They are particularly nice, and I am fairly sure that they all have exactly one positive eigenvalue.
Sometimes they can be singular, for example
$$A = \left[ \begin{matrix}0,1,1,1 \\ 1,0,1,1 \\ 1,1,0,4 \\ 1,1,4,0\end{matrix}\right]$$
But still, only one positive eigenvalue. Is there a way to show that these matrices have exactly one positive eigenvalue generally? I thought that proving them conditionally negative definite would help, as here, but I was wrong.
It's false; it suffices to randomly choose an instance of such a matrix.
$Matrix(5, 5, [[0, 2, 8, 4, 2], [2, 0, 5, 9, 7], [8, 5, 0, 3, 10], [4, 9, 3, 0, 10], [2, 7, 10, 10, 0]])$