A = [ 1 2 2 1 ]
Compute:
B = [ 1 1 ] A 1 0 [ 1 1 ]
Enter your answer as the sum of the digits of the single entry in B .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The eigen value λ and eigen vector v of a square matrix A obey the following definition:
A v = λ v ⟹ ( λ I − A ) v = 0 Here, I is the identity matrix having the same size as A . For non-trivial solutions, the determinant of the matrix ( λ I − A ) must be zero. Using this fact, the eigen values can be computed, by computing the roots of the resulting characteristic polynomial in λ . Using the values of λ , the corresponding eigen vectors can be computed.
For the given square matrix of size 2X2, there would be two unique eigen values and eigen vectors respectively. Let each eigen value and eigen vector pair be ( λ 1 , v 1 ) and ( λ 2 , v 2 ) .
The eigen vectors can be arranged in the matrix as shown below:
V = [ v 1 v 2 ]
Multiplying both sides by A :
A V = [ A v 1 A v 2 ]
Using the definition of the Eigen value and eigen vector:
A V = [ λ 1 v 1 λ 2 v 2 ]
The RHS can be re-arranged as follows:
A V = [ v 1 v 2 ] [ λ 1 0 0 λ 2 ] ⟹ A V = V [ λ 1 0 0 λ 2 ] ⟹ A V = V D ⟹ A = V D V − 1
Now:
A 1 0 = ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 ) ( V D V − 1 )
Recognizing that:
V V − 1 = V − 1 V = I
The above relation holds true provided that the eigen vectors are linearly independent. If not, then V will be a singular matrix. Moreover, if the eigen vectors are computed such they are unit vectors, an interesting property holds that the matrix V is orthogonal. In other words:
V − 1 = V T
After cancelling out (to the identity matrix), V with it's inverse multiple times, one gets:
⟹ A 1 0 = V D 1 0 V − 1 ⟹ A 1 0 = V D 1 0 V T ∵ V − 1 = V T
⟹ A 1 0 = V [ λ 1 1 0 0 0 λ 2 1 0 ] V T So basically, instead of performing multiple matrix multiplications, all one needs to compute are the eigen values and eigen vectors and replace it in the above expression to get the required result of A 1 0 .
After performing all computations, which I have left out of this solution, the required answer comes out to be 2 7 .
Problem Loading...
Note Loading...
Set Loading...
Let L = ( 1 1 ) , R = ( 1 1 )
L × A = ( 1 1 ) × ( 1 2 2 1 ) = ( 1 × 1 + 1 × 2 1 × 2 + 1 × 1 ) = ( 3 3 ) = 3 ⋅ ( 1 1 ) = 3 L
L × R = ( 1 1 ) × ( 1 1 ) = ( 1 × 1 + 1 × 1 ) = 2
B = L × A 1 0 × R = 3 1 0 ⋅ L × R = 3 1 0 × 2 = 1 1 8 0 9 8
So the answer is 27.