I want to prove the following: Every symmetric matrix whose entries are calculated as $ 1/(n -1) $ with $n$ as the size of the matrix, except for the diagonal which is 0, has a characteristic polynomial with a root at $x=1$. In other words, every such matrix has an eigenvalue of 1.
For example Matrix 1:
\begin{array}{ccc} 0 & \frac{1}{2} & \frac{1}{2} \\ \frac{1}{2} & 0 & \frac{1}{2} \\ \frac{1}{2} & \frac{1}{2} & 0 \\ \end{array}
has a characteristic polynomial: $f(x)=-x^3+\frac{3 x}{4}+\frac{1}{4} $ ,which has a root at $x=1$
Matrix 2:
\begin{array}{cccc} 0 & \frac{1}{3} & \frac{1}{3} & \frac{1}{3} \\ \frac{1}{3} & 0 & \frac{1}{3} & \frac{1}{3} \\ \frac{1}{3} & \frac{1}{3} & 0 & \frac{1}{3} \\ \frac{1}{3} & \frac{1}{3} & \frac{1}{3} & 0 \\ \end{array}
has a characteristic polynomial: $f(x)=-(1/27) - (8 x)/27 - (2 x^2)/3 + x^4 $ ,which also has a root at $x=1$
Matrix 3:
\begin{array}{ccccc} 0 & \frac{1}{4} & \frac{1}{4} & \frac{1}{4} & \frac{1}{4} \\ \frac{1}{4} & 0 & \frac{1}{4} & \frac{1}{4} & \frac{1}{4} \\ \frac{1}{4} & \frac{1}{4} & 0 & \frac{1}{4} & \frac{1}{4} \\ \frac{1}{4} & \frac{1}{4} & \frac{1}{4} & 0 & \frac{1}{4} \\ \frac{1}{4} & \frac{1}{4} & \frac{1}{4} & \frac{1}{4} & 0 \\ \end{array}
has a characteristic polynomial: $ f(x)=(4 + 60 x + 320 x^2 + 640 x^3 - 1024 x^5)/1024 $ ,which also has a root at $x=1$
I want to show that this is true for any such n by n matrix, i.e. for all n.
Looking for some tips and tricks on how to approach this.