Invertibility and Diagonalizability

  • Context: Undergrad 
  • Thread starter Thread starter 0pt618
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
9 replies · 10K views
0pt618
Messages
25
Reaction score
1
Does there exist a matrix which is both not invertible and not diagonalizable? If so, please provide an example.

Thanks,
David
 
Physics news on Phys.org
hint: see if you can find a 2x2 matrix using only 0's and 1's with 0 determinant. i can think of 2 such matrices right off the bat that fulfil both your criteria.
 
One that comes to mind immediately is
[tex]\begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}[/tex]

A matrix is not invertible if and only if it has 0 as an eigenvalue. A matrix is diagonalizable if the exist a basis for the space consisting of eigenvectors. Those are not contradictory.
 
HallsofIvy said:
One that comes to mind immediately is
[tex]\begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}[/tex]

A matrix is not invertible if and only if it has 0 as an eigenvalue. A matrix is diagonalizable if the exist a basis for the space consisting of eigenvectors. Those are not contradictory.

Uuh, that is already a diagonal matrix...
 
Yes. So? A diagonal matrix is trivially "diagonalizable".

If you want a non-diagonal, diagonalizable, matrix that is not invertible, start with a diagonal matrix, say
[tex]D= \begin{bmatrix}1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 0\end{bmatrix}[/tex]
and multiply by A and [itex]A^{-1}[/itex] where A is some invertible matrix.

For example, if
[tex]A= \begin{bmatrix}1 & 0 & 0 \\ 2 & -1 & 0 \\ 5 & -2 & 1\end{bmatrix}[/tex]
then
[tex]A^{-1}= \begin{bmatrix}1 & 0 & 0 \\ -2 & 1 & 0 \\ -1 & 2 & 1\end{bmatrix}[/tex]

and then
[tex]ADA^{-1}= \begin{bmatrix}-3 & 2 & 0 \\ -2 & -2 & 0 \\ 13 & -4 & 0\end{bmatrix}[/tex]
which is a non-invertible matrix which can be "diagonalized" to the original matrix, D.
 
You can simply choose a nilpotent non-null matrix, as it's easy to see that the only diagonalizable AND nilpotent matrix is the null one.
for example:
01
00
 
How about [0 0 0]? Definitely a matrix, and definitely not invertible since it isn't even square. Also, certainly not diagonalizable.
 
dang! Don't you just hate those little words like "not"?

Okay, let's start with a Jordan Normal form, non-diagonal matrix:
[tex]P= \begin{bmatrix}2 & 1 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 0\end{bmatrix}[/tex]
which also has 0 as an eigenvalue and so is not invertible. Using the same "A" as before,
[tex]APA^{-1}= \begin{bmatrix}0 & 1 & 0 \\ 4 & 0 & 0 \\ 8 & 1 & 0\end{bmatrix}[/tex]

That is neither invertible nor diagonalizable.
 
  • Like
Likes   Reactions: 0pt618