回上頁

Find all matrices commuting with [Maple Bitmap]

> A:=Matrix([[1,0],[0,2]]);

A := _rtable[20404324]

> B:=Matrix([[a,b],[c,d]]);

B := _rtable[20409872]

> A.B;

_rtable[20447344]

> B.A;

_rtable[20490464]

> A.B-B.A;

_rtable[20634544]

AB=BA <=> AB-BA=0 <=> b=0 且 c=0 <=> B 是對角化矩陣 

,so we get B= [Maple Bitmap]

讓 我們驗證一下

> C:=Matrix([[a,0],[0,d]]);

C := _rtable[8114128]

> A.C-C.A;

_rtable[18767308]

故 得證