Calculate the determinant of the following matrix:
$$ \begin{pmatrix} a+x & b & c \\ a & b+x & c \\ a & b & c+x \\ \end{pmatrix} $$
without using the rule of sarrus or minors
I got the answer using this property multiple times: $$ \begin{pmatrix} a+x & b & c \\ a & b+x & c \\ a & b & c+x \\ \end{pmatrix} = \begin{pmatrix} x & b & c \\ 0 & b+x & c \\ 0 & b & c+x \\ \end{pmatrix} + \begin{pmatrix} a & b & c \\ a & b+x & c \\ a & b & c+x \\ \end{pmatrix} $$
but that got very tedious and long for higher dimensions
The answer is: $$ x^2(a+b+c+x) $$
The determinant is quite obviously a $3^{rd}$ degree monic polynomial $P(x)$. By inspection $x=0$ must be a double root since all the rows become equal and the matrix degenerates to rank $1$. The remaining root can be guessed as $x=-a-b-c$ by noticing that the sum of all columns becomes $0$. Therefore $P(x) = x^2(x+a+b+c)$.