You are not logged in.
Pages: 1
can anyone please give an example of a 2x2 matrix B with B^2=0(2X2)
Offline
Build the matrix and solve for it:
This gives you a system of 4 simultaneous equations:
Solve these and you'll have your array.
Last edited by TheDude (2007-11-26 02:20:14)
Wrap it in bacon
Offline
try this. Represent the elements of B as variables a, b, c and d like so
|a b|
|c d|
square this matrix to obtain
|(a^2 + bc) (ab + db)|
|(ac + dc) (bc + d^2)|
now you need to find any a,b, c and d such that all these entries become zero. Can you think of any? (hint, use as many zeros as possible, but don't use all zeros, your book probably wants a non zero matrix).
A logarithm is just a misspelled algorithm.
Offline
gah, you beat me to it, TheDude!
A logarithm is just a misspelled algorithm.
Offline
Pages: 1