||'''Book'''|| Linear Algebra || ||'''Author'''|| Gilbert Strang || ||'''Edition'''|| || /* code_begins */ {{{ A=matrix([[3,1]]) B=matrix([[2,2]]) print '--A.transpose X B--' print A.transpose()*B print '--B.transpose X A--' print B.transpose()*A print '--A X B.transpose--' print A*B.transpose() print '--B X A.transpose--' print B*A.transpose() }}} /* code_ends */ * '''Solution by''': * V.J.Ramchand, Student, GITAM University *G.Vamsi krishna, Student, GITAM University