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

Online Help

All Products    Maple    MapleSim


Student[VectorCalculus]

  

CrossProduct

  

compute the cross product of Vectors and differential operators

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

CrossProduct(v1, v2)

v1 &x v2

Parameters

v1

-

Vector, Vector-valued procedure, or differential operator

v2

-

Vector, Vector-valued procedure, or differential operator

Description

• 

The CrossProduct(v1, v2) calling sequence computes the cross product (vector product) of v1 and v2, where v1 and v2 can be Vectors, vector fields, Student[VectorCalculus][Del], or Student[VectorCalculus][Nabla].

  

Note: You can enter vector fields as Vector-valued procedures or operators.

• 

The Student[VectorCalculus] package has an &x cross product operator that you can use in place of the CrossProduct command. For example, CrossProduct(v1, v2) is equivalent to v1&xv2.

  

Also, Del&xF is equivalent to Curl(F).

Examples

> 

with⁡StudentVectorCalculus:

> 

CrossProduct⁡a,b,c,d,e,f

b⁢f−c⁢eex+−a⁢f+c⁢dey+a⁢e−b⁢dez

(1)
> 

a,b,c&xd,e,f

b⁢f−c⁢eex+−a⁢f+c⁢dey+a⁢e−b⁢dez

(2)
> 

F≔VectorField⁡y,−x,0

F≔ye_x+−xe_y+0e_z

(3)
> 

Del&xF

0e_x+0e_y+−2e_z

(4)
> 

CrossProduct⁡∇,F

0e_x+0e_y+−2e_z

(5)
> 

SetCoordinates⁡cylindrical

cylindricalr,θ,z

(6)
> 

r1≔RootedVector⁡2,2,1,root=1,2,3

r1≔221

(7)
> 

r2≔RootedVector⁡3,−1,0,root=1,2,3

r2≔3−10

(8)
> 

r1&xr2

13−8

(9)

See Also

Student[VectorCalculus]

Student[VectorCalculus][Curl]

Student[VectorCalculus][Del]

Student[VectorCalculus][SetCoordinates]

Student[VectorCalculus][Vector]

Student[VectorCalculus][VectorField]