Matlab doesn't allow me to find the base for an eigenspace from rref-form although it gives an eigenvector for an eigenvalue
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
roamingsleep
el 24 de Nov. de 2018
Comentada: roamingsleep
el 24 de Nov. de 2018
I have a following matrix for which I first find its eigenvalues:
A=[4,-1,-2,2;-1,3,6,1;-2,6,1,4;2,3,4,-1]
a=eig(A)
After I get the eigenvalues, I try to find the base for the eigenspace for the first eigenvalue a(1) that Matlab gives me (the value is approximately 9.9230). I do the following:
rref([A-a(1)*eye(4), zeros(4,1)])
Matlab returns me an identity matrix with the last column of zeros, suggesting that there are no eigenvectors for that specific eigenvalue. For the other eigenvalues it works normally and lets me deduce the needed bases for the eigenspaces. However, when I use the following
[U,V] = eig(A)
Matlab will indeed give me an example of an eigenvector for the eigenvalue a(1). Hence, there should exist a base for the eigenspace corresponding to that eigenvalue a(1). Could someone please explain, why the rref-form doesn't allow me to deduce the base for the eigenspace? What should I do?
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!