||'''Book'''|| Linear Algebra || ||'''Author'''|| Gilbert Strang || ||'''Edition'''|| || /* code_begins */ {{{ a=matrix([[3],[1]]) b=matrix([[2],[2]]) print a c=a.transpose();c //A transpose*b// d=c*b;d e=b.transpose();e //b transpose a// f=e*a;f //a*b transpose// g=a*e;g //b*a transpose// h=b*c;h }}} /* code_ends */ * '''Solution by''': * , , * , ,