a=matrix([[4,1-3*i],[1+3*i,7]])
print a
b=matrix([[3*i,2+i],[-2+i,-i]])
print b
a.transpose()
c=a.transpose()
print c
a==c