Dot Product and Cross Product
Maple Syntax
> | with(LinearAlgebra): V1 := <1,2,3>; |
> | V2 := <2,3,4>; |
> | CrossProduct(V1, V2); |
> | V1 := <1+x,2*y,3*z>; |
> | V2 := <2-x,3+y,4*cos(z)>; |
> | CrossProduct(V1, V2); |
> | DotProduct(V1, V2); |
> | DotProduct(V1, V2, conjugate=false); |
> | DotProduct(<1,2,3>,<-2,1,4>); |
> | CrossProduct(<1,2,3>,<-2,1,4>); |
> |