Find all values of x for which B is not invertible.

280 Views Asked by At

The matrix $B$ is below:

$$ B = \begin{pmatrix} 1 & 0 & 1 & 0 \\ -1 & x & 0 & 1 \\ 0 & 0 & x & 1 \\ x^2 & x & 7 & 0 \end{pmatrix} $$

Using Gaussian elimination I got this for the determinant. -----

$$ \det B = 1×x×x×((x^2-x-6)/x) = x^3-x^2-6x $$

I need the values $x$ that make $B$ noninvertible.

Can you help me out from there?

2

There are 2 best solutions below

0
On BEST ANSWER

Adding the first line to the second one and also adding the first line time $-x^2$ to the fourth on, you get$$\begin{vmatrix}1&0&1&0\\-1&x&0&1\\0&0&x&1\\x^2&x&7&0\end{vmatrix}=\begin{vmatrix}1&0&1&0\\0&x&1&1\\0&0&x&1\\0&x&-x^2+7&0\end{vmatrix}.$$Now, subtracting the second one from the fourth one, you get$$\begin{vmatrix}1&0&1&0\\0&x&1&1\\0&0&x&1\\0&x&-x^2+7&0\end{vmatrix}=\begin{vmatrix}1&0&1&0\\0&x&1&1\\0&0&x&1\\0&0&-x^2+6&-1\end{vmatrix}.$$So\begin{align}\begin{vmatrix}1&0&1&0\\-1&x&0&1\\0&0&x&1\\x^2&x&7&0\end{vmatrix}&=x\begin{vmatrix}x&1\\-x^2+6&-1\end{vmatrix}\\&=x(-x+x^2-6)\\&=x^3-x^2-6x\end{align}indeed. Therefore, $B$ is invertible if and only if $x\notin\{-2,0,3\}$.

0
On

I'd split this up using the minors of the second column: $$\begin{vmatrix}1&0&1&0\\-1&x&0&1\\0&0&x&1\\x^2&x&7&0\end{vmatrix}=x\begin{vmatrix}1&1&0\\0&x&1\\x^2&7&0\end{vmatrix}+x\begin{vmatrix}1&1&0\\-1&0&1\\0&x&1\end{vmatrix}$$

$$=x(0+x^2+0-0-7-0)+x(0+0+0+1-x-0)=x(x^2-x-6)=x(x+2)(x-3)$$

The matrix is non-invertible when $\det(B)=0$, and so we simply solve this, i.e. $x=0,x=-2,x=3$