Question: How to cross product between matrix in maple?

g(theta) := array([[cos(theta), -sin(theta)],[sin(theta), cos(theta)]]);
dg := map(diff, g(theta), theta);
invg := inverse(g(theta));
w := multiply(invg, dg);
w := map(simplify, w);

crossprod(-w, w); <- have error?

How to cross product between matrix?

As i know wedge product is cross product, so i use cross product

Please Wait...