MapleDotCross2.mws

Dot Product and Cross Product

Maple Syntax

>    with(LinearAlgebra):
V1 := <1,2,3>;

V1 := Vector(%id = 23401596)

>    V2 := <2,3,4>;

V2 := Vector(%id = 23569764)

>    CrossProduct(V1, V2);

Vector(%id = 23709020)

>    V1 := <1+x,2*y,3*z>;

V1 := Vector(%id = 23707432)

>    V2 := <2-x,3+y,4*cos(z)>;

V2 := Vector(%id = 23698364)

>    CrossProduct(V1, V2);

Vector(%id = 23685348)

>    DotProduct(V1, V2);

(1+conjugate(x))*(2-x)+2*conjugate(y)*(3+y)+12*conjugate(z)*cos(z)

>    DotProduct(V1, V2, conjugate=false);

(1+x)*(2-x)+2*y*(3+y)+12*z*cos(z)

>    DotProduct(<1,2,3>,<-2,1,4>);

12

>    CrossProduct(<1,2,3>,<-2,1,4>);

Vector(%id = 3122224)

>