E=matrix([[1,0,0],[-2,1,0],[0,1,1]])
F=matrix([[1,0,0],[0,1,0],[1,0,1]])
Q=E*F
print Q
W=F*E
print W
bool(Q==W)