Problem Statement:
Find all real $x$ so that the matrix is invertible. $$\begin{bmatrix} 2+x & 2 & 2 & 2 \\ 2 & 2+x & 2 & 2 \\ 2 & 2 & 2+x & 2 \\ 2 & 2 & 2 & 2+x \end{bmatrix}$$
Assuming that $A^{-1}$ exists find the sum of all the elements of $A^{-1}$ without explicitly computing $A^{-1}$.
For the first part I calculated the determinant (came out to be $x^4+8x^3$) and put it to $0$ to find that the matrix is not-invertible if $x=-8$ or $x=0$. But I've not idea how to approach the second part of the problem.