So on a complete graph of $4$ vertices we have
$$ A= \begin{bmatrix} 0 & 1 & 1 & 1 \\ 1& 0 & 1 & 1 \\ 1 & 1 & 0 & 1 \\ 1 & 1 & 1 &0 \end{bmatrix} $$
And we want to find all eigenvalues so have to compute det($A- \lambda I$) so we would have $$ A= \begin{bmatrix} -\lambda & 1 & 1 & 1 \\ 1& -\lambda & 1 & 1 \\ 1 & 1 & -\lambda & 1 \\ 1 & 1 & 1 & -\lambda \end{bmatrix} $$
I used wolfram alpha, And I got
$$\lambda = 3, v_1 = (1,1,1,1)$$ $$\lambda = -1, v_2 = (-1,0,0,1), v_3 = (-1,0,1,0), v_4 = (-1,1,0,0)$$
And I also want to generalize this question to a complete graph on $n$ Vertices.
Would I just take the positive value of $\lambda =3$ and so in general, $\lambda = n-1$, Does this make sense ? But why would I disregard all other values ?