16

I am given the eigenvalues of a square, 8x8, matrix. They are all non-zero. I have determined that the matrix is diagonalizable and has an inverse. In one part of the problem, I am asked to find the maximum and minimum number of eigenvectors that the matrix could possibly have?

Since A is diagonalizable does that mean it will have n linearly independent eigenvectors. So, is the max and min number of eigenvectors is 8?

Ayoshna
  • 1,403
  • 7
  • 31
  • 57
  • Does diagonalizable have any relevance? If it has an inverse, its rank is 8. So it has 8 eigenvectors...I think? http://math.stackexchange.com/questions/146927/relation-between-rank-and-number-of-non-zero-eigenvalues-of-a-matrix – BCLC May 14 '15 at 17:44
  • 4
    @BCLC No: invertible $n\times n$ matrices need not have $n$ linearly independent eigenvectors. It is also possible to have a singular $n\times n$ matrix with $n$ linearly independent eigenvectors (indeed: every non-zero vector is an eigenvector for the $0$ matrix with eigenvalue $0$). – Jan Ladislav Dussek May 14 '15 at 18:26
  • I think if the rank of the matrix is n, then there will be n linearly independent eigen vectors. It doesn't matter whether matrix is invertible or not. Although if a matrix is invertible then it means it is full rank i.e rank is n. – Abhishek P G Dec 17 '20 at 15:23
  • 1
    @AbhishekPG No, it is not accurate. An n $\times$ n matrix need not have n linearly independent eigen vectors. Eg: consider the 2 $\times$ 2 matrix with first row (3, 1) and second row (0, 3). This matrix has only one linearly independent eigen vector. – Ramasamy Kandasamy Mar 26 '21 at 13:12

3 Answers3

19

Correct, an $n\times n$ matrix which is diagonalizable must have a set of $n$ linearly independent eigenvectors -- the columns of the diagonalizing matrix are such a set.

In general, if an $n\times n$ matrix has $k$ distinct eigenvalues, then there may in general be anywhere between $k$ and $n$ linearly independent eigenvectors.

For any of this, it doesn't matter whether or not the eigenvalues are non-zero.

tsa
  • 311
  • The OP does not say linearly independent eigenvectors for the max min part XD http://math.stackexchange.com/a/1282339/140308 – BCLC May 14 '15 at 18:02
  • 1
    "In general, if an $n \times n$ matrix has $k$ distinct eigenvalues, then there may in general be anywhere between $k$ and $n$ linearly independent eigenvectors.", Could you prove this, please? – user153245 Oct 21 '15 at 07:04
  • What if each basis vector doubled then there exits an infinite number of independent eigenvectors. – Caelan Miron Nov 16 '19 at 16:57
  • @Rupanshu Yadav That is not true because you can write any vector in the vector space as a linear combination of the basis vectors, which means that all vectors in space (other than the basis vectors) can be represented using the basis vectors. So all vectors other than the basis vectors would become linearly dependent. – Abhishek P G Dec 17 '20 at 15:14
  • if the matrix has rank $r$ would it not have $r$ eigenvectors (and be diagonalizable via those $r$ but have a $n, r$ first matrix and $[r, r]$ diagonal matrix? – Charlie Parker Oct 19 '21 at 21:21
8

If $\vec v$ is an eigenvector, then so is $t \vec v$ for all real $t$. If they're asking about linearly independent eigenvectors, then you're right, but if they're just asking about eigenvectors, I would say the min and max is always infinite.

user24142
  • 3,732
  • 2
    I know its pedantic it just... it gets to me. – user24142 May 14 '15 at 17:50
  • 1
    @user24142 If you really want to be pedantic, you need to specify that you're not working over a finite field where there are only finitely many vectors, so a priori only finitely many eigenvectors. – Jan Ladislav Dussek May 14 '15 at 18:29
  • 1
    For a simple rotation in a 2x2 matrix, you have zero eigenvectors, so the minimum number isn't always infinite. – Anindya Mahajan May 02 '19 at 08:11
  • The problem statement includes the existence of eigenvalues. If there are eigenvalues, there are eigenvectors.

    Also, splitting field of the matrix.

    – user24142 May 03 '19 at 00:57
  • @Anindya Mahajan that depends on how you specify the rotation. For example if the rotation is by 90 degrees then you are right there are no real eigen values ( but there are two complex eigen values). But if the rotation is by 180 degrees there will be two real linearly independent eigen values for a 2*2 matrix. In fact ,practically complex numbers as eigen value is not of much use but they do exist atleast mathematically. – Abhishek P G Dec 18 '20 at 16:21
  • if the matrix has rank $r$ would it not have $r$ eigenvectors (and be diagonalizable via those $r$ but have a $n, r$ first matrix and $[r, r]$ diagonal matrix? – Charlie Parker Oct 19 '21 at 21:21
  • @CharlieParker read what I wrote. Eigenvectors are not unique. Diagonalisations are not unique. – user24142 Oct 21 '21 at 07:20
5

Yes: If $A$ is diagonalizable, then there is a basis $v_1,\dots,v_8$, s.t. $D=U^{-1}AU$ is diagonal, where $U$ has $v_1,\dots, v_8$ as columns. In that case every $v_i$ is an eigenvector to the $i$-th diagonal element of $D$.

EDIT: Of course every matrix with at least one eigenvalue $\lambda$ has infinitely many eigenvectors (as pointed out in the comments), since the eigenspace corresponding to $\lambda$ is at least one-dimensional.

Well, to be more precise: It depends on the underlying field...

Stefan Perko
  • 12,467
  • The OP does not say linearly independent eigenvectors for the max min part XD http://math.stackexchange.com/a/1282339/140308 – BCLC May 14 '15 at 18:02
  • 1
    @BLCL yes, so it seems... – Stefan Perko May 14 '15 at 18:20
  • if the matrix has rank $r$ would it not have $r$ eigenvectors (and be diagonalizable via those $r$ but have a $n, r$ first matrix and $[r, r]$ diagonal matrix? – Charlie Parker Oct 19 '21 at 21:21
  • @CharlieParker No, just because a matrix is invertible does not mean it is diagonalizable. Take e.g. $A = \begin{pmatrix} 2 & 1 \ 0 & 2 \end{pmatrix}$ which has an eigenvalue $2$ with geometric multiplicity $1$. – Stefan Perko Oct 20 '21 at 10:43