A matrix with Repeated eigenvalues and its corresponding eigenvectors.

In summary, the eigenvalues of the matrix are λ=1 (with algebraic multiplicity 2) and λ=-1, and the eigenvectors are x=1, y=0, and z=0.
  • #1
pondzo
169
0

Homework Statement



I am asked to find the diagonal matrix of eigenvalues, D, and the matrix of corresponding eigenvectors, P, of the following matrix:
[tex]
\begin{pmatrix}
1 & 0 & 0\\
0 & 1 & -2\\
0 & 0 & -1
\end{pmatrix}
[/tex]

Homework Equations


The Attempt at a Solution


We just started this topic, and so far i haven't had much trouble answering questions like these, but this question is different.

I found the eigenvalues to be λ = 1 (with algebraic multiplicity 2) and λ = -1

for λ = 1 the matrix is [tex]
\begin{pmatrix}
0 & 0 & 0\\
0 & 0 & 0\\
0 & 0 & -2
\end{pmatrix}
[/tex] after putting in row echelon form. This is where my confusion begins, solving gives z=0, and since x nor y are described, they can take any value I please (to my understanding). so for the first eigenvector i let x=1 and y=0, then i let x=0,y=1 to give [tex]
\begin{bmatrix}
1\\
0\\
0
\end{bmatrix}
[/tex] and [tex]
\begin{bmatrix}
0\\
1\\
0
\end{bmatrix}
[/tex] respectively.
For λ = -1 the matrix is [tex]
\begin{pmatrix}
2 & 0 & 0\\
0 & 2 & -2\\
0 & 0 & 1
\end{pmatrix}
[/tex] which gives x=y=z=0 which confuses me even more as this is [tex]
\begin{bmatrix}
0\\
0\\
0
\end{bmatrix}
[/tex]

So after all that I said D = [tex]
\begin{pmatrix}
1 & 0 & 0\\
0 & 1 & 0\\
0 & 0 & -1
\end{pmatrix}
[/tex] which I am fairly sure is correct
and P = [tex]
\begin{pmatrix}
1 & 0 & 0\\
0 & 1 & 0\\
0 & 0 & 0
\end{pmatrix}
[/tex] which I am fairly sure isn't (Mathematica told me at least one of the parts was wrong and i think its this one).

Could someone please help me understand this example, and forgive me for the bad formatting, I am not sure how to keep everything in the same line.
 
Physics news on Phys.org
  • #2
Dont worry i think i found my mistake. I got the matrix for λ=-1 wrong and hence confused the shiz out of myself.
Just checking the correct matrix for λ= -1 would be [tex]
\begin{bmatrix}
0\\
1\\
1
\end{bmatrix}
[/tex] right?
 
  • #3
Yes, 1 is a "double" eigenvalue and -1 is an eigenvalue. I find it simplest to use the definition of "eigenvalue" to find the eigenvectors: [itex]\lambda[/itex] is an eigenvalue of linear transformation A if and only if there exist a non-zero vector, v, such that [itex]Av= \lambda v[/itex]. (Of course, then, [itex](A-\lambda)v= 0[/itex] which is what you used.)

For eigenvalue "1":
[tex]\begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & -2 \\ 0 & 0 & -1\end{pmatrix}\begin{pmatrix}x \\ y \\ z\end{pmatrix}= \begin{pmatrix}x \\ y- 2z \\ -z\end{pmatrix}= \begin{pmatrix}x \\ y \\ z \end{pmatrix}[/tex]

so we have x= x, y- 2z= y, and -z= z. The last equation gives z= 0 and the first two equations, x= x and y= y, are always true. Any vector of the form (x, y, 0)= x(1, 0, 0)+ y(0, 1, 0) is an eigenvalue corresponding to eigenvalue 1. For eigenvalue "-1":
[tex]\begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & -2 \\ 0 & 0 & -1\end{pmatrix}\begin{pmatrix}x \\ y \\ z\end{pmatrix}= \begin{pmatrix}x \\ y- 2z \\ -z\end{pmatrix}= \begin{pmatrix}-x \\ -y \\ -z \end{pmatrix}[/tex]

so that we must have x= -x, y- 2z= -z, and -z= -z. The first equation gives x= 0, the third is true for any z and the second gives y= z. Any eigenvector corresponding to eigenvalue -1 is of the form (0, z, z)= z(0, 1, 1).

It is easy to see that the matrix [tex]P= \begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 1\end{pmatrix}[/tex]
has inverse [tex]P^{-1}= \begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & -1 \\ 0 & 0 & 1\end{pmatrix}[/tex]and that
[tex]P^{-1}AP= \begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & -1 \\ 0 & 0 & 1\end{pmatrix}\begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & -2 \\ 0 & 0 & -1\end{pmatrix}\begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 1\end{pmatrix}= \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & -1\end{pmatrix}[/tex]
 
Last edited by a moderator:
  • #4
HallsofIvy said:
It is easy to see that the matrix [tex]P= \begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 1\end{pmatrix}[/tex]
has inverse [tex]P^{-1}= \begin{pmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{pmatrix}[/tex]
You may want to reconsider the claim [itex]P^{-1} = I[/itex].
 
  • #5
pasmith said:
You may want to reconsider the claim [itex]P^{-1} = I[/itex].
Thanks, I copied the wrong matrix from my work! I went back and edited my post to correct that.
 
  • #6
Thank you for the alternate way of approaching these types of questions halls. When, for example, you say x=-x which leads to x=0 I assume this is because the only possible way for this to be true is if x=0 ?
 
  • #7
pondzo said:
Thank you for the alternate way of approaching these types of questions halls. When, for example, you say x=-x which leads to x=0 I assume this is because the only possible way for this to be true is if x=0 ?
Isn't that what "x satisfies the equation" means?

More specifically, I observed that adding x to both sides of "x= -x" gives "2x= 0" and then, dividing both sides by 2, "x= 0".
 
  • #8
Oh wow, please excuse that last comment. I have no Idea what I was thinking... lol.
 
  • #9
One more thing, I noticed that mathematica allowed any matrix, P, of the form
##
\begin {pmatrix}
a & c & 0 \\
b & d & 1 \\
0 & 0 & 1
\end {pmatrix}
##
As long as (a, b,0) =/= h (c, d,0) where h is a scalar multiple. Is this because the eigenvectors for the eigenvalue of 1 could be of the form (a, b,0) and (c, d,0) as long as they are not scalar multiples of each other?
 
  • #10
I don't know what you mean by "Mathematica allowed". But, in general, 1 is NOT necessarily an eigenvalue for such a matrix.
 

FAQ: A matrix with Repeated eigenvalues and its corresponding eigenvectors.

1. What is a matrix with repeated eigenvalues?

A matrix with repeated eigenvalues is a square matrix in which one or more eigenvalues have a multiplicity greater than one. This means that there are one or more eigenvectors associated with the same eigenvalue.

2. How do you find the eigenvectors of a matrix with repeated eigenvalues?

To find the eigenvectors of a matrix with repeated eigenvalues, you can use the standard methods for finding eigenvectors, such as the power method or the diagonalization method. However, you may need to use additional techniques, such as generalized eigenvectors or the Jordan canonical form, to find all the eigenvectors associated with the repeated eigenvalues.

3. Why is it important to know the eigenvectors of a matrix with repeated eigenvalues?

Knowing the eigenvectors of a matrix with repeated eigenvalues can provide valuable information about the behavior of the matrix. Eigenvectors represent the directions in which a matrix stretches or compresses a vector, so they can help us understand the transformation that the matrix represents.

4. Can a matrix have more than one repeated eigenvalue?

Yes, a matrix can have multiple repeated eigenvalues. The number of repeated eigenvalues is limited by the size of the matrix. For example, a 3x3 matrix can have at most three repeated eigenvalues, while a 4x4 matrix can have at most four repeated eigenvalues.

5. How does the presence of repeated eigenvalues affect the diagonalizability of a matrix?

If a matrix has repeated eigenvalues, it may not be diagonalizable. In order for a matrix to be diagonalizable, it must have a full set of linearly independent eigenvectors. However, if there are repeated eigenvalues, the corresponding eigenvectors may not be linearly independent, making the matrix not diagonalizable. In this case, the matrix may be diagonalizable using the Jordan canonical form instead.

Similar threads

Back
Top