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

Online Help

All Products    Maple    MapleSim


DerivedDistribution

find derived distribution of a distribution

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

DerivedDistribution(dist)

Parameters

dist

-

a Distribution object

Description

• 

The DerivedDistribution method returns a Distribution object spanned by all the commutators of vector fields in dist.

• 

This method is of little interest if the input Distribution dist is involutive, since in that case DerivedDistribution(dist) will simply return dist itself.

• 

This method is associated with the Distribution object. For more detail see Overview of the Distribution object.

Examples

> 

with⁡LieAlgebrasOfVectorFields:

Build vector fields...

> 

V1≔VectorField⁡Dx,space=x,y,z,w

V1≔ⅆⅆx

(1)
> 

V2≔VectorField⁡Dy+x⁢Dz+z⁢Dw,space=x,y,z,w

V2≔ⅆⅆy+x⁢ⅆⅆz+z⁢ⅆⅆw

(2)

Construct the associated distribution...

> 

Σ≔Distribution⁡V1,V2

Σ≔ⅆⅆx,ⅆⅆyz+x⁢ⅆⅆzz+ⅆⅆw

(3)

Construct derived distribution...

> 

DerivedDistribution⁡Σ

ⅆⅆx,ⅆⅆz,ⅆⅆyz+ⅆⅆw

(4)
> 

IsInvolutive⁡Σ

false

(5)

Compatibility

• 

The DerivedDistribution command was introduced in Maple 2020.

• 

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

See Also

Distribution (Object overview)

LieAlgebrasOfVectorFields[Distribution]

VectorField (Object overview)

LieAlgebrasOfVectorFields[VectorField]

LieAlgebrasOfVectorFields (Package overview)