retagged by
1,025 views

1 Answer

1 votes
1 votes
Given Matrix is A = [1 0 0 ; a 0 0 ; 0 0 b]

Since it is a upper triangular matrix ; eigen values will be the diagonal elements (1, a , b);

Now suppose 1 as the eigen value(c) of the arbitrary vector ; then we have the equation AX = cX => AX = 1X

(1 0 0 ; a 0 0; 0 0 b) (X1; X2; X3) = 1(X1; X2; X3)

Solving the above; u will get the following equations

X1 = X1 ; aX1 = X1 ; bX3 = X3

So bX3 = X3 => b =1 -----> (1)

     aX1 = X1 => a=1

So (a,b) = (1,1) is the answer.

Related questions

1 votes
1 votes
1 answer
1
Anuanu asked Jun 2, 2016
1,591 views
Find the Eigenvector of $\begin{bmatrix} 1 & cos\theta\\ cos \theta & 1 \end{bmatrix}$
5 votes
5 votes
1 answer
2
Lakshman Bhaiya asked Nov 14, 2017
1,510 views
A 3× 3 real matrix has an eigen value i, then its other two eigen values can be(A) 0, 1. (B) -1, i.(C) 2i, -2i. (D) 0, -i.
1 votes
1 votes
1 answer
4
samarpita asked May 9, 2022
9,294 views
Eigen Values of an orthogonal matrix will always be +1 and the modulus will also be always |1|? I have a doubt on this point .