Student[LinearAlgebra]
CrossProduct
compute the cross product of two Vectors
`&x`
Calling Sequence
Parameters
Description
Examples
Compatibility
CrossProduct(U, V, options)
U &x V
U, V
-
three-dimensional Vectors
options
(optional) parameters; for a complete list, see LinearAlgebra[CrossProduct]
The CrossProduct(U, V) function computes the cross product of Vectors U and V.
This command can also be entered using the infix notation U&xV. No additional parameters can be provided in this case.
If W := CrossProduct(U, V), then W is a Vector with the following entries.
U2⁢V3−U3⁢V2,−U1⁢V3+U3⁢V1,U1⁢V2−U2⁢V1
If both U and V are row Vectors, their cross product is also a row Vector. Otherwise, a column Vector is returned.
with⁡Student:-LinearAlgebra:
V1≔1,2,3
V1≔123
V2≔2,3,4
V2≔234
CrossProduct⁡V1,V2
−12−1
V1&xV2
CrossProductPlot⁡V1,V2
The Student[LinearAlgebra][CrossProduct] and Student[LinearAlgebra][`&x`] commands were introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
Operators in Student LinearAlgebra
Student[LinearAlgebra][CrossProductPlot]
Vector
Download Help Document