Eigenvalue and vector quick question

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 1K views
Tzabcan
Messages
10
Reaction score
0
So, I have the matrix:

A = -1 -3
3 9

Eigenvalues i calculated to be λ = 8 and 0

Now when i calculate the Eigenvector for λ = 8, i get the answer -1
3

Then when solve for the eigenvector for λ= 0 I get the eigenvector 3
-1

Both incorrect, they're supposed to have the signs the opposite way round. I don't understand how I am getting it wrong.

This is how i am attemption to solve it.

IMG_1940.jpg


Any pointers would be appreciated.
 
Physics news on Phys.org
Tzabcan said:
So, I have the matrix:

A = -1 -3
3 9

Eigenvalues i calculated to be λ = 8 and 0

Now when i calculate the Eigenvector for λ = 8, i get the answer -1
3

Then when solve for the eigenvector for λ= 0 I get the eigenvector 3
-1

Both incorrect, they're supposed to have the signs the opposite way round. I don't understand how I am getting it wrong.

This is how i am attemption to solve it.

IMG_1940.jpg


Any pointers would be appreciated.
I didn't check your work, but from what you said, your eigenvectors are fine. Your answers are the -1 multiples of the ones shown in your answers. If you have an eigenvector, any constant multiple of it will also be an eigenvector.

It's easy to check whether you work is correct. Calculate Ax, where A is your matrix and x is an eigenvector. If you get ##\lambda x##, where ##\lambda## is the eigenvalue associated with that eigenvector, your work is find. Note that if x is an eigenvector, -x will also be one as well.
 
Mark44 said:
I didn't check your work, but from what you said, your eigenvectors are fine. Your answers are the -1 multiples of the ones shown in your answers. If you have an eigenvector, any constant multiple of it will also be an eigenvector.

It's easy to check whether you work is correct. Calculate Ax, where A is your matrix and x is an eigenvector. If you get ##\lambda x##, where ##\lambda## is the eigenvalue associated with that eigenvector, your work is find. Note that if x is an eigenvector, -x will also be one as well.
Oh ok, thank you :)