Calculate determinant without using the rule of sarrus or the method of minors

402 Views Asked by At

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) $$

3

There are 3 best solutions below

0
On

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)$.

0
On

The determinant you seek is the characteristic polynomial of the matrix $-A$, where $$ A = \left( \begin{array}{ccc} a & b & c \\ a & b & c \\ a & b & c \end{array}\right) $$

This matrix has at most one linearly independent row, so at least two of the three eigenvalues are $0$ from which we conclude that the characteristic polynomial of $-A$ is of the form $x^2 (x-r)$ where $r$ is the remaining eigenvalue of $-A$.

Since all but one of the eigenvalues is zero, it is also correct to say that $r$ is the sum of the eigenvalues of $-A$. The sum of the eigenvalues of a square matrix is the trace of the matrix, and it's a standard result that the trace is equal to the sum of the diagonal elements.

So the trace of $-A$ is $-(a+b+c)$ and the characteristic polynomial of $-A$ is therefore $x^2 (x+a+b+c)$.

3
On

$$det \begin{pmatrix} a+x & b & c \\ a & b+x & c \\ a & b & c+x \\ \end{pmatrix} $$ row1=row 1-row3 $$ det\begin{pmatrix} x & 0 & -x \\ a & b+x & c \\ a & b & c+x \\ \end{pmatrix} $$ row2=row2-row3 $$det \begin{pmatrix} x & 0 & -x \\ 0 & x & -x \\ a & b & c+x \\ \end{pmatrix} $$ colum3=colum1+colum2+colum3 $$det \begin{pmatrix} x & 0 & 0 \\ 0 & x & 0\\ a & b & a+b+c+x \\ \end{pmatrix} $$ finally we have $$(a+b+c+x)det \begin{pmatrix} x & 0 \\ 0 & x \\ \end{pmatrix} $$ given the result wanted. $$x^2(a+b+c+x) $$