Find all conditions of a and b for when matrix has determinant zero

1.8k Views Asked by At

Find all conditions on a and b for which A =

\begin{bmatrix} a & 0 &a^2 \\ 2 & a & 3a \\ a & -1 & ba+b\end{bmatrix}

has determinant 0.

2

There are 2 best solutions below

2
On

Let $A$ be the matrix$$\begin{pmatrix} a & 0 & a^2 \\ 2 & a & 3a \\ a & -1 & ab + b \end{pmatrix}.$$

If $a=0$, then $$\det\begin{pmatrix} a & 0 & a^2 \\ 2 & a & 3a \\ a & -1 & ab + b \end{pmatrix} = \det\begin{pmatrix} 0 & 0 & 0 \\ 2 & 0 & 0 \\ 0 & -1 & b \end{pmatrix},$$ which is obviously 0 from the first row. So, assume that $a\ne 0$ and compute via row-reduction as follows:

$$\det \begin{pmatrix} a & 0 & a^2 \\ 2 & a & 3a \\ a & -1 & ab + b \end{pmatrix}=\det \begin{pmatrix} a & 0 & a^2 \\ 0 & a & a \\ 0 & -1 & ab + b - a^2 \end{pmatrix} = \det \begin{pmatrix} a & 0 & a^2 \\ 0 & a & a \\ 0 & 0 & -a^2 + ab + b +1 \end{pmatrix}.$$ Therefore, we have $$\det(A)=0 \iff a=0 \mbox{ or }a^2(-a^2+ab+b+1)=0 \iff a=0 \mbox{ or } -a^2+ab+b+1=0.$$ Doing a bit of algebra, we have the following solutions:

$$\det(A)=0 \iff a=0, a=-1 \mbox{ or } b=a-1 .$$

0
On

Subtract $a$ times first column from third to obtain $$\begin{pmatrix}a&0&0\\2&a&a\\a&-1&ba+b-a^2\end{pmatrix} $$ which has determinant $0$ iff the original matrix has detrminant $0$.

If $a=0$, the first row is zero, hence $\det A=0$.

If $a\ne 0$, any linear combinations of the columns that results in zero must not use the first column. Hence we need only check if the second and third column are linearly dependent. Under the premise that $a\ne 0$, this is the case iff $-1=ba+b-a^2$. To solve this for $b$ we'd like to divide by $a+1$, hence have to distinguish cases: If $a=-1$, we obtain $ba+b-a^2=-1$ for all $b$; if $a\ne -1$ we can solve as $b=\frac{a^2-1}{a+1}=a-1$.

Thus $\det A=0$ iff $a=0$ or $a=-1$ or $b=a-1$.