The solution to A*A = 0 can be derived with a little algebra (exercise for the reader). Verifying the solution is easy by direct matrix multiplication.
Code: Select all
A = ( a b )
( -a^2/b -a ) Code: Select all
A = ( a b )
( -a^2/b -a ) Bill Spight wrote:A <> 0, A^2 = 0 , where A is a 2x2 matrix.
Write A using 2 real variables.
----
Given: A is a 2x2 matrix.
Prove: A^4 = 0 -> A^2 = 0.
Code: Select all
I think I get the first question.
A = ( a b ); 'a, b, c, d' are real numbers; 'n' is a natural number
( c d )
If A^n = O, 'A' cannot have an inverse matrix, so the determinant is zero.
using the Caily-Hamilton thing, A^2 = (a+d)A
when n >= 3, A^n = (a+d)^(n-1)A = O, a+d = 0, A^2 = O
when n = 1 or n = 2, A^2 = O
Therefore A^2 = O
OK for Q1.lovelove wrote:Bill Spight wrote:A <> 0, A^2 = 0 , where A is a 2x2 matrix.
Write A using 2 real variables.
----
Given: A is a 2x2 matrix.
Prove: A^4 = 0 -> A^2 = 0.
Code: Select all
I think I get the first question. A = ( a b ); 'a, b, c, d' are real numbers; 'n' is a natural number ( c d ) If A^n = O, 'A' cannot have an inverse matrix, so the determinant is zero. using the Caily-Hamilton thing, A^2 = (a+d)A when n >= 3, A^n = (a+d)^(n-1)A = O, a+d = 0, A^2 = O when n = 1 or n = 2, A^2 = O Therefore A^2 = O