CrossProduct - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[MultivariateCalculus]

  

CrossProduct

  

return the cross product of two vectors

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

CrossProduct(u, v)

u &x v

Parameters

u, v

-

three-dimensional Vectors with algebraic entries

Description

• 

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.

Examples

> 

with⁡Student:-MultivariateCalculus:

> 

u≔a,b,c

u≔abc

(1)
> 

v≔d,e,f

v≔def

(2)
> 

CrossProduct⁡u,v

b⁢f−c⁢e−a⁢f+c⁢da⁢e−b⁢d

(3)

The cross product is anticommutative.

> 

v&xu

−b⁢f+c⁢ea⁢f−c⁢d−a⁢e+b⁢d

(4)

The cross product is not associative.

> 

w≔g,h,i

w≔ghi

(5)
> 

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

(6)
> 

simplify⁡u&xv&xw

−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

(7)

Compatibility

• 

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

Student[MultivariateCalculus]