I'm tasked with finding the eigenvalues of $M = \begin{bmatrix} 1 & \rho & \rho \\ \rho & 1 & \rho \\ \rho & \rho & 1 \end{bmatrix}$. My difficulty here is in finding roots of the characteristic polynomial, since it's a cubic.
Attempt. Let's call the characteristic polynomail by $chp$, and let's use $x$ instead of $\lambda$ to have a more familiar-looking expression. We have
$$ \operatorname{chp}(x) = \det\left(\mathbf{\rho} - xI\right) = \det\begin{bmatrix} 1-x & \rho & \rho \\ \rho & 1-x & \rho \\ \rho & \rho & 1-x \end{bmatrix} $$
Expanding on the first line, we obtain
$$ chp(x) = (1-x) \det \begin{bmatrix} 1-x & \rho \\ \rho & 1-x \end{bmatrix} - \rho \det \begin{bmatrix} \rho & \rho \\ \rho & 1-x \end{bmatrix} + \rho \det \begin{bmatrix} \rho & 1-x \\ \rho & \rho \end{bmatrix}. $$
After simplification, you'd get
$$ chp(x) = 1 - 3\rho^2 + 2\rho^3 - 3x + 3\rho^2 x + 3x^2 - x^3. $$
I couldn't solve $chp(x)=0$ analitically. Using Wolfram though, and coming back to the usual $\lambda$ notation, I got
$$ \lambda_1 = \lambda_2 = 1-\rho \qquad \text{and} \qquad \lambda_3 = 1+2\rho. $$
Thanks for any help.