Consider a square matrix M of size 2 × 2 . The unknown matrix M satisfies the equation:
M 2 + 5 M + I = [ 0 0 0 0 ]
It is given that M is a diagonal matrix with real entries. Find the number of such matrices satisfying the given conditions.
Note: I is the identity matrix of size 2 × 2 .
Bonus: Attempt to find a solution to the given equation that has all non-zero entries.
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.
Let M = [ a 0 0 d ] . Then M 2 = [ a 0 0 d ] [ a 0 0 d ] = [ a 2 0 0 d 2 ] , and
M 2 + 5 M + I = [ 0 0 0 0 ]
becomes
[ a 2 0 0 d 2 ] + 5 [ a 0 0 d ] + [ 1 0 0 1 ] = [ 0 0 0 0 ]
which leads to equations a 2 + 5 a + 1 = 0 and d 2 + 5 d + 1 = 0 , which solve to a = 2 − 5 ± 2 1 and d = 2 − 5 ± 2 1 .
Since there are 2 options for both a and d , there are 2 × 2 = 4 possible matrices that satisfy the given conditions:
[ 2 − 5 + 2 1 0 0 2 − 5 + 2 1 ] , [ 2 − 5 + 2 1 0 0 2 − 5 − 2 1 ] , [ 2 − 5 − 2 1 0 0 2 − 5 + 2 1 ] , and [ 2 − 5 − 2 1 0 0 2 − 5 − 2 1 ] .
For the bonus, let M = [ a c b d ] . Then M 2 = [ a c b d ] [ a c b d ] = [ a 2 + b c c ( a + d ) b ( a + d ) b c + d 2 ] , and
M 2 + 5 M + I = [ 0 0 0 0 ]
becomes
[ a 2 + b c c ( a + d ) b ( a + d ) b c + d 2 ] + 5 [ a c b d ] + [ 1 0 0 1 ] = [ 0 0 0 0 ]
which leads to equations a 2 + b c + 5 a + 1 = 0 , b ( a + d ) + 5 b = 0 , c ( a + d ) + 5 c = 0 , and b c + d 2 + 5 d + 1 = 0 , which lead to multiple solutions for all non-zero entries as long as d = − a − 5 and b c = − d 2 − 5 d − 1 , one solution being M = [ − 2 5 2 2 1 2 2 1 − 2 5 ] .
Problem Loading...
Note Loading...
Set Loading...
All four combinations of signs for ± : ( 2 1 ( − 2 1 ± 5 ) 0 0 2 1 ( − 2 1 ± 5 ) )
The solution of: x 2 + 5 x + 1 = 0 is 2 1 ( − 2 1 ± 5 ) .
With m = ( a c b d ) , solutions of m . m + 5 m + ( 1 0 0 1 ) = ( 0 0 0 0 ) are:
( a b − a 2 − 5 a − 1 b − a − 5 )
( 2 1 ( − 2 1 ∓ 5 ) c 0 2 1 ( 2 1 ± 5 ) )
and the previous four solutions. The solution immediately above is two solutions: chose either the top or bottom sign.