TripleScalarProduct - 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]

  

TripleScalarProduct

  

return the triple scalar product of three vectors

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

TripleScalarProduct(u, v, w)

BoxProduct(u, v, w)

Parameters

u, v, w

-

three-dimensional Vectors with algebraic entries

Description

• 

The TripleScalarProduct command computes the triple scalar product of u, v, and w.

• 

The triple scalar product can also be computed with BoxProduct, which is an alias of TripleScalarProduct.

• 

The triple scalar product is given by DotProduct(u, CrossProduct(v, w)).

Examples

> 

with⁡Student:-MultivariateCalculus:

> 

u≔a,b,c

u≔abc

(1)
> 

v≔d,e,f

v≔def

(2)
> 

w≔g,h,i

w≔ghi

(3)
> 

expand⁡TripleScalarProduct⁡u,v,w

a⁢e⁢i−a⁢f⁢h−b⁢d⁢i+b⁢f⁢g+c⁢d⁢h−c⁢e⁢g

(4)

The triple scalar product is invariant under circular shift of the arguments.

> 

expand⁡BoxProduct⁡w,u,v

a⁢e⁢i−a⁢f⁢h−b⁢d⁢i+b⁢f⁢g+c⁢d⁢h−c⁢e⁢g

(5)
> 

expand⁡v·w&xu

a⁢e⁢i−a⁢f⁢h−b⁢d⁢i+b⁢f⁢g+c⁢d⁢h−c⁢e⁢g

(6)

Compatibility

• 

The Student[MultivariateCalculus][TripleScalarProduct] command was introduced in Maple 2016.

• 

For more information on Maple 2016 changes, see Updates in Maple 2016.

See Also

Student

Student[MultivariateCalculus]