Question #84642

How to obtain the eigenvalues and eigenvectors of the matrix: M=
[2 3 0
3 2 0
0 0 1]
1

Expert's answer

2019-02-14T09:58:07-0500

Answer on Question #84642 – Math – Linear Algebra

Question

How to obtain the eigenvalues and eigenvectors of the matrix: M=(230320001)M = \begin{pmatrix} 2 & 3 & 0 \\ 3 & 2 & 0 \\ 0 & 0 & 1 \end{pmatrix}

Solution

In such problems, we first find the eigenvalues of the matrix.

Finding eigenvalues

To do this, we find the values of λ\lambda which satisfy the characteristic equation of the matrix MM, namely those values of λ\lambda for which

det(MλI)=0\operatorname{det}(M - \lambda I) = 0

where II is the 3×33 \times 3 identity matrix


I=(100010001)I = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}


Form the matrix MλIM - \lambda I:


MλI=(230320001)(λ000λ000λ)=(2λ3032λ0001λ)M - \lambda I = \begin{pmatrix} 2 & 3 & 0 \\ 3 & 2 & 0 \\ 0 & 0 & 1 \end{pmatrix} - \begin{pmatrix} \lambda & 0 & 0 \\ 0 & \lambda & 0 \\ 0 & 0 & \lambda \end{pmatrix} = \begin{pmatrix} 2 - \lambda & 3 & 0 \\ 3 & 2 - \lambda & 0 \\ 0 & 0 & 1 - \lambda \end{pmatrix}


Calculate det(MλI)\operatorname{det}(M - \lambda I)

det(MλI)=2λ3032λ0001λ=(1λ)2λ332λ=(1λ)((2λ)232)=(1λ)((2λ)232)=(1λ)((2λ)232)=(1λ)((2λ)+3)=(1λ)(1+λ)(5λ)\operatorname{det}(M - \lambda I) = \begin{vmatrix} 2 - \lambda & 3 & 0 \\ 3 & 2 - \lambda & 0 \\ 0 & 0 & 1 - \lambda \end{vmatrix} = (1 - \lambda) \begin{vmatrix} 2 - \lambda & 3 \\ 3 & 2 - \lambda \end{vmatrix} = (1 - \lambda) ((2 - \lambda)^2 - 3^2) = (1 - \lambda) ((2 - \lambda)^2 - 3^2) = (1 - \lambda) ((2 - \lambda)^2 - 3^2) = (1 - \lambda) ((2 - \lambda) + 3) = - (1 - \lambda) (1 + \lambda) (5 - \lambda)


The solutions of the equation det(MλI)=(1λ)(1+λ)(5λ)=0\operatorname{det}(M - \lambda I) = - (1 - \lambda) (1 + \lambda) (5 - \lambda) = 0 are


λ1=1,λ2=1,λ1=5\lambda_1 = -1, \quad \lambda_2 = 1, \quad \lambda_1 = 5


Finding eigenvectors

We can find the eigenvectors by Gaussian Elimination.

STEP 1: For each eigenvalue λ\lambda, we have (MλI)X=0(M - \lambda I)X = 0 where XX is the eigenvector associated with eigenvalue λ\lambda.

STEP 2: Find XX by Gaussian elimination. That is, convert the augmented matrix.


(MλI,0)(M - \lambda I, 0)


to row echelon form and solve the resulting linear system by back substitution.

Case 1: λ=1\lambda = -1. We have to find vectors XX which satisfy (MλI)X=0(M - \lambda I)X = 0.

First, form the matrix M(1)I=M+IM - (-1) \cdot I = M + I

M+I=(2+13032+10001+1)=(330330002)M + I = \left( \begin{array}{ccc} 2 + 1 & 3 & 0 \\ 3 & 2 + 1 & 0 \\ 0 & 0 & 1 + 1 \end{array} \right) = \left( \begin{array}{ccc} 3 & 3 & 0 \\ 3 & 3 & 0 \\ 0 & 0 & 2 \end{array} \right)


Construct the augmented matrix (MλI,0)(M - \lambda I, 0) and convert it to row echelon form


(330330002000(110110001000(110000001000(110001000\left( \begin{array}{ccc} 3 & 3 & 0 \\ 3 & 3 & 0 \\ 0 & 0 & 2 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 1 & 0 \\ 1 & 1 & 0 \\ 0 & 0 & 1 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 1 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 1 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 1 & 0 \\ 0 & 0 & 1 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array}


Rewriting this augmented matrix as a linear system gives


{x1+x2=0,x3=0\left\{ \begin{array}{l} x _ {1} + x _ {2} = 0, \\ x _ {3} = 0 \end{array} \right.


So the form of eigenvector X1X_{1} is given by:


X1=(x1x1)=x1(11)=C1(11)X _ {1} = \left( \begin{array}{c} x _ {1} \\ - x _ {1} \end{array} \right) = x _ {1} \left( \begin{array}{c} 1 \\ - 1 \end{array} \right) = C _ {1} \left( \begin{array}{c} 1 \\ - 1 \end{array} \right)


for any real number C10C_1 \neq 0

Case 2: λ=1\lambda = 1

MI=(130310000)M - I = \left( \begin{array}{ccc} 1 & 3 & 0 \\ 3 & 1 & 0 \\ 0 & 0 & 0 \end{array} \right)


Construct the augmented matrix (MλI,0)(M - \lambda I, 0) and convert it to row echelon form


(130310000000(130080000000(130010000000(100010000(100010)\left( \begin{array}{ccc} 1 & 3 & 0 \\ 3 & 1 & 0 \\ 0 & 0 & 0 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 3 & 0 \\ 0 & - 8 & 0 \\ 0 & 0 & 0 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 3 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 0 \end{array} \right| \begin{array}{c} 0 \\ 0 \\ 0 \end{array} \sim \left( \begin{array}{ccc} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 0 \end{array} \right| \sim \left( \begin{array}{ccc} 1 & 0 & 0 \\ 0 & 1 & 0 \end{array} \right)


Rewriting this augmented matrix as a linear system gives


{x1=0,x2=0x3=x3\left\{ \begin{array}{l} x _ {1} = 0, \\ x _ {2} = 0 \\ x _ {3} = x _ {3} \end{array} \right.


So the form of eigenvector X2X_{2} is given by:


X2=(00x3)=x3(001)=C2(001)X _ {2} = \left( \begin{array}{c} 0 \\ 0 \\ x _ {3} \end{array} \right) = x _ {3} \left( \begin{array}{c} 0 \\ 0 \\ 1 \end{array} \right) = C _ {2} \left( \begin{array}{c} 0 \\ 0 \\ 1 \end{array} \right)


for any real number C20C_2 \neq 0.

Case 3: λ=5\lambda = 5.


M5I=(253032500015)=(330330004)M - 5I = \begin{pmatrix} 2 - 5 & 3 & 0 \\ 3 & 2 - 5 & 0 \\ 0 & 0 & 1 - 5 \end{pmatrix} = \begin{pmatrix} -3 & 3 & 0 \\ 3 & -3 & 0 \\ 0 & 0 & -4 \end{pmatrix}


Construct the augmented matrix (MλI,0)(M - \lambda I, 0) and convert it to row echelon form


(330033000040)(330000000040)(110000000040)(110000000010)(11000010)\begin{pmatrix} -3 & 3 & 0 & 0 \\ 3 & -3 & 0 & 0 \\ 0 & 0 & -4 & 0 \end{pmatrix} \sim \begin{pmatrix} -3 & 3 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & -4 & 0 \end{pmatrix} \sim \begin{pmatrix} 1 & -1 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & -4 & 0 \end{pmatrix} \sim \begin{pmatrix} 1 & -1 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 \end{pmatrix} \sim \begin{pmatrix} 1 & -1 & 0 & 0 \\ 0 & 0 & 1 & 0 \end{pmatrix}


Rewriting this augmented matrix as a linear system gives


{x1x2=0x3=0=={x1=x2x3=0\begin{cases} x_1 - x_2 = 0 \\ x_3 = 0 \end{cases} \stackrel{=}{=} \begin{cases} x_1 = x_2 \\ x_3 = 0 \end{cases}


So the form of eigenvector X3X_3 is given by:


X3=(x1x10)=x1(110)=C3(110)X_3 = \begin{pmatrix} x_1 \\ x_1 \\ 0 \end{pmatrix} = x_1 \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix} = C_3 \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix}


for any real number C30C_3 \neq 0.

Answer: Eigenvalues of MM are λ1=1\lambda_1 = -1, λ2=1\lambda_2 = 1, λ1=5\lambda_1 = 5, eigenvectors of MM are X1=C1(110)X_1 = C_1 \begin{pmatrix} 1 \\ -1 \\ 0 \end{pmatrix}, X2=C2(001)X_2 = C_2 \begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix}, X3=C3(110)X_3 = C_3 \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix}, where C10,C20,C30C_1 \neq 0, C_2 \neq 0, C_3 \neq 0.

Answer provided by https://www.AssignmentExpert.com

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!
LATEST TUTORIALS
APPROVED BY CLIENTS