Let's have the following code
e1 : matrix([a1],[b1],[c1]);
e2 : matrix([a2],[b2],[c2]);
dotproduct(e1,e2);
the 3rd line gives the output
a1a2 + b1b2 +c1c2
I would like to have something like this instead (|e|
is the norm of e
):
|e1||e2|
Is there a way for wxMaxima to give a simplified answer for the dotproduct function ?
Here's a solution, although this isn't entirely satisfactory.
Instead of calling
dotproduct
, just write dot products asa . b
. (The.
operator means noncommutative multiplication in Maxima.) You can define a simplification rule so thata . b
simplifies to an expression involvinga
andb
and the angle between them.With this, I get:
Maybe this much is helpful, you can say whether it is. It isn't so great because you'll have to define
norm
yourself and alsoangle(a, b)
. This is a weakness in Maxima -- its coverage of this stuff is hit or miss.Or maybe you don't need
norm
andangle
to be defined -- I suppose it depends on your purposes. Maybe you can say more about what is the larger problem you're trying to solve.Also, this solution is a little problematic because only a two-term product
a . b
will match. With three terms,a . b . c
, the pattern matcher thinks it doesn't fit. There are various ways around that, again, none of them entirely satisfactory.All the same, I hope this is useful to you in some way.