You can load this session from /home/ceng303/maple/sessions as: ch3_4.mw
Session 3.4 Using the Linear Algebra Package for Simple Operations
> restart;
> a:=array([[1,2],[3,4],[5,6]]);
> b:=array([[x,x],[y,y],[z,z]]);
> with(linalg):
Warning, the protected
names norm and trace have been redefined and unprotected
> matadd(a,b);adding elements in the matrices
> transpose(a);
> multiply(transpose(a),b);
>