2

So I'm given this matrix:

$$\left(\begin{array}{c} a & 1 & 1 \\ 1 & a & 1 \\ 1 & 1 & a\end{array}\right)$$

and am told to find the values of a which make it not invertible.

I know that $a = 0$ means our matrix is invertible (since the column vectors span $\mathbb{R}^3$) but I'm not sure how to go about finding all values of $a$ which make the matrix not invertible.

My thought was to row reduce it and find values of $a$ for which rref isn't the identity. The row reduction with $a$ instead of numbers is tripping me up.

Any help?

Thanks, Mariogs

anon_swe
  • 685

6 Answers6

2

Calculate the determinant of A $$\det(A)=a(a^2-1)-1(a-1)+1(1-a)=a^3-a-a+1+1-a=a^3-3a+2$$ The matrix is not invertible when det(A) is equal to zero.

You can solve or guess the solution the obvious solutions which are $a=1$ (double root) and $a=-2$. As stated in the comments, the value $a=1$ is obvious already before that point, since it is the value that makes all columns of the matrix equal (and thus linearly dependent).

So, for every other value of $a$, i.e for $a\in \mathbb{R}-\{1,-2\}$ the matrix is invertible, which means that in this case the column vectors are linearly independent and therefore they span $\mathbb{R}^3$.

Jimmy R.
  • 35,868
1

Here are some hints:

  1. What do you know about determinants and invertibility?

  2. Alternatively, row reduce the matrix. Since you've already noted that $a = 0$ makes the matrix invertible, you needn't worry about this case when row reducing.

For row reduction, I'll do the first step so you can see how it's done. Let's have $R_2 \rightarrow R_1-aR_2$ (i.e. in place of row 2 put row 1 - $a$ times row 2). Then the matrix becomes

$$\left(\begin{array}{c} a & 1 & 1 \\ 0 & 1-a^2 & 1-a \\ 1 & 1 & a\end{array}\right).$$

Doing the same thing for row 3 (that is row 3 goes to row 1 minus $a$ times row 3) gives

$$\left(\begin{array}{c} a & 1 & 1 \\ 0 & 1-a^2 & 1-a \\ 0 & 1-a & 1-a^2\end{array}\right).$$

We want to eliminate downwards again. Before doing so, note that if $a=1$, our second row becomes $0$, meaning that for $a=1$, our matrix is not invertible (since it is row equivalent to a matrix with a row of zeroes). With that said, let's replace row 3 by row 3 times $1+a$ minus row 2. Then our matrix becomes

$$\left(\begin{array}{c} a & 1 & 1 \\ 0 & 1-a^2 & 1-a \\ 0 & 0 & 1+a-a^2-a^3-1+a\end{array}\right).$$

The lower right element can be rewritten as $2a - a^2 -a^3.$ For our matrix to not be invertible, we need this element to be $0$ (so we have a row of zeroes). But the zeroes of this are $a = 0,1,-2$. We've already ruled out $a=0$ as a solution (well you did that) and accounted for $a=1$ as a value that makes the matrix noninvertible so the only other solution is $a=-2$.

So for $a=1,-2$ the matrix is not invertible.

  • basically nothing. 2. i'm not totally sure what your notation re: R2-->R1 - aR2 means. What elementary row operation are you performing? Thanks again for the help!
  • – anon_swe Feb 27 '14 at 14:59
  • (please see above) – anon_swe Feb 27 '14 at 17:49
  • I was adding adding $-a$ times row 2 to row 1 (in place of row 2). That's what that notation means. I'm going to edit my post to work out the solution in more detail. – Cameron Williams Feb 27 '14 at 19:11