Why are eigenvector matrices computed by matlab not idempotent

1 visualización (últimos 30 días)
As far as I know, eigenvector matricies should be idempotent. The eigendecompsotion in matlab however, fails to satisfy this.
Here is an example with my comments:
numel=3;
a = rand(numel);a2=a*a';%gen symmetric matrix
[G,L] = eig(a); %eigendecomposiaion
%i know this is what matlab is solving for
norm(a*G-G*L)%and it does, this quantity is close to zero
%eigenvector matricies should be idempotent
norm(G'*G-eye(numel))
norm(G*G'-eye(numel))
%neither of these are close to zero... that is troubling
%Also, if G was idempotent, these would be zero
norm(a-(G*L*G'))
norm(a-(G'*L*G)) %i checked this too b/c i thought i made a mistake with the transpose
%why should this be true?
%AG=GL -- what matlab solves for
%A=GL*inv(G)
%inv(G)=G' for idempotent matrices, so A=GL*G'
Can anyone explain what is going on here? I have an application where I am trying to orthoganalize a set of equations using an eigen decomposition, and the resulting matrix is not exactly diagonal.
ex. in my example, G'*a*G should be diagonal (it should equal L), but it is not
Cheating, and using the inverse, we get that (G\a)*G is 'almost' diagonal
Thanks,
Marco

Respuesta aceptada

Christine Tobler
Christine Tobler el 12 de Dic. de 2019
Editada: Christine Tobler el 12 de Dic. de 2019
Hi Marco,
You seem to be confusing two terms: A matrix M is idempotent if ; it's orthogonal if , which is what you are testing for in your code.
There is an orthogonal basis of eigenvectors for a matrix A if it's symmetric. In your code you're constructing a symmetric matrix, a2, but the matrix a which you're passing to eig is not symmetric.
If A is symmetric, and has two eigenpairs , , with c not equal to c, then x and y must be orthogonal:
Since c and d are not equal, this implies that must be equal to zero, meaning that x and y are orthogonal.
  3 comentarios
Christine Tobler
Christine Tobler el 13 de Dic. de 2019
Even with repeated eigenvalues, EIG should return orthogonal eigenvectors for a symmetric input matrix. The problem is that it checks for exact symmetry to decide if this orthogonalization is necessary, and often matrices are just close to symmetrical. You might want to compute
norm(A - A')
it might show some round-off error. If A is close to symmetric, calling eig((A + A')/2) will make sure the symmetric method is used and the eigenvector matrix is orthogonal.
Marco Sammon
Marco Sammon el 14 de Dic. de 2019
eig((A + A')/2) worked, thank you!
Marco

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2016b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by