What are the eigenvectors for the given matrix A = [1 0 0; -2 1 3; 1 1 -1]?

AI Thread Summary
The discussion revolves around finding the eigenvectors for the matrix A = [1 0 0; -2 1 3; 1 1 -1] after identifying the eigenvalues as -2, 2, and 1. Initial attempts to derive eigenvectors for the eigenvalue -2 led to confusion, with participants correcting the matrix reduction process and emphasizing the importance of satisfying the equation Ax = λx. The correct eigenvector corresponding to the eigenvalue -2 is determined to be of the form (0, y, -y) for any non-zero y. Further discussions highlight the similarity in the equations for the other eigenvalues, indicating a structured approach to finding the eigenvectors. The conversation concludes with a focus on verifying the correctness of the derived eigenvectors.
arkturus
Messages
27
Reaction score
0

Homework Statement



Given the matrix A = [1 0 0
-2 1 3
1 1 -1]

Find an invertable matrix X and a diagonal matrix D such that A = XDX^-1

Homework Equations


A = XDX^-1

The Attempt at a Solution


I've found that the eigenvalues are -2, 2, and 1, but I'm having issues finding the specific eigenvectors.

For example, with eigenvalue = -2 I get the matrix down to [3 0 0
-2 0 0
0 1 1]

Am I correct in saying that x1 = 0, x2 = 0, and x3 = t, thus the corresponding eigenvector is (0,0,1)^T
 
Physics news on Phys.org
arkturus said:

Homework Statement



Given the matrix A = [1 0 0
-2 1 3
1 1 -1]

Find an invertable matrix X and a diagonal matrix D such that A = XDX^-1

Homework Equations


A = XDX^-1


The Attempt at a Solution


I've found that the eigenvalues are -2, 2, and 1, but I'm having issues finding the specific eigenvectors.

For example, with eigenvalue = -2 I get the matrix down to [3 0 0
-2 0 0
0 1 1]
This matrix is not completely reduced. The first row should be divided by 3, and then used to eliminate the second row. I would then swap the second and third rows.
arkturus said:
Am I correct in saying that x1 = 0, x2 = 0, and x3 = t, thus the corresponding eigenvector is (0,0,1)^T
Nope, that's not it. As a check, your eigenvalue \lambda and eigenvector x should satisfy the equation Ax = \lambdax, or equivalently, (A - \lambdaI)x = 0.
 
Thanks. I'm now down to:

1 0 0
0 1 1
0 0 0

It looks like x3 is a free variable, so x3 = t. In that case, x2 = -t and x1 = 0.

Good to go?
 
Personally, to find eigenvectors, I prefer to use the basic definition:
Saying that -2 is an eigenvalue means that there exist x, y, z, not all 0, such that
\begin{bmatrix}1 & 0 & 0 \\ -2 & 1 & 3 \\ 1 & 1 & -1\end{bmatrix}\begin{bmatrix}x \\ y \\ z\end{bmatrix}= \begin{bmatrix}-2x \\ -2y \\ -2z\end{bmatrix}
which is the same as the three equations
x= -2x
-2x+ y+ 3z= -2y
x+ y- z= -2z

The first equation, of course, just says that x= 0. The second and third then become
3y+ 3z= 0 and y+ z= 0, both of which reduce to z= -y. Yes, any vector of the form (0, y, -y)= y(0, 1, -1) is an eigenvector corresponding to eigenvalue -2.

Notice that your equations for eigenvalues 2 and 1 are almost the same:
x= 2x
-2x+ y+ 3z= 2y
x+ y- z= 2z
and
x= x
-2x+ y+ 3z= y
x+ y- z= z
 
arkturus said:
Thanks. I'm now down to:

1 0 0
0 1 1
0 0 0

It looks like x3 is a free variable, so x3 = t. In that case, x2 = -t and x1 = 0.

Good to go?
See my previous post for how you can check whether this is correct.
 
I tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks
Back
Top