I want to find the eigenvalues of the following matrix: $$ \left( \begin{array}{ccc} 0 & a & b \\ a & 0 & c \\ b & c & 0 \end{array} \right) $$
So, I found the characteristic equation, $\lambda^3-(a^2+b^2+c^2) \lambda - 2abc = 0$. But I am unable to find the roots by observation. Is there a way I can find the roots of the equation?
If you are interested, my goal is to find distinct values of $a$, $b$, and $c$ such that the matrix $M$ has integer eigenvalues. Also, simple "$a = -b$" type trivial solutions are not allowed.
Thanks, Naren

Set $a = 0$, then we have
$$ \pmatrix{0 & 0 & b \\ 0 & 0 & c \\ b & c & 0}. $$
The eigenvalues are defined by $ -\lambda(\lambda^2 - c^2) + b^2\lambda = 0 $, so we have $\lambda = 0$ or $\lambda = \pm\sqrt{b^2 + c^2}$.
Choose Pythagorean triple values such as $b = 3$ and $c = 4$.
Then we have $\lambda = 0$ and $\lambda = \pm5$.
Does this answer your question?
Note that this is the kind of solution you get if you do not reduce the domain of the problem.
EDIT:
Also, you might also be interested in Vieta's Formula for cubic polynomials.