Student[MultivariateCalculus]
CrossProduct
return the cross product of two vectors
Calling Sequence
Parameters
Description
Examples
Compatibility
CrossProduct(u, v)
u &x v
u, v
-
three-dimensional Vectors with algebraic entries
The CrossProduct command computes the cross product of u and v.
The infix operator &x can also be used to compute the cross product.
The cross product of u and v is given by the formula u2⁢v3−u3⁢v2,−u1⁢v3+u3⁢v1,u1⁢v2−u2⁢v1.
If u and v are both row Vectors, a row Vector is returned. Otherwise, a column Vector is returned.
with⁡Student:-MultivariateCalculus:
u≔a,b,c
u≔abc
v≔d,e,f
v≔def
CrossProduct⁡u,v
b⁢f−c⁢e−a⁢f+c⁢da⁢e−b⁢d
The cross product is anticommutative.
v&xu
−b⁢f+c⁢ea⁢f−c⁢d−a⁢e+b⁢d
The cross product is not associative.
w≔g,h,i
w≔ghi
simplify⁡u&xv&xw
−a⁢f+c⁢d⁢i−a⁢e−b⁢d⁢h−b⁢f+c⁢e⁢i+a⁢e−b⁢d⁢ga⁢f−c⁢d⁢g+b⁢f−c⁢e⁢h
−b⁢e−c⁢f⁢g+b⁢h+c⁢i⁢d−a⁢d−c⁢f⁢h+a⁢g+c⁢i⁢e−a⁢d−b⁢e⁢i+a⁢g+b⁢h⁢f
The Student[MultivariateCalculus][CrossProduct] command was introduced in Maple 2016.
For more information on Maple 2016 changes, see Updates in Maple 2016.
See Also
Student
Download Help Document