Dimension
calculate the dimension of a Distribution object
Codimension
calculate the codimension of a Distribution object
IsTrivial
check if a Distribution object is trivial
Calling Sequence
Parameters
Description
Examples
Compatibility
Dimension( dist)
Codimension( dist)
IsTrivial( dist)
dist
-
a Distribution object
The Dimension method returns the dimension of the subspace of tangent space spanned by a distribution.
The Codimension method returns the codimension of this subspace. If a distribution of dimension r lives on a space of dimension n, the codimension is n-r.
The IsTrivial method returns true if dist is of dimension 0 and false otherwise.
These methods are associated with the Distribution object. For more detail see Overview of the Distribution object.
with⁡LieAlgebrasOfVectorFields:
Build vector fields associated with 3-d spatial rotations...
Rx≔VectorField⁡−z⁢Dy+y⁢Dz,space=x,y,z
Rx≔−z⁢ⅆⅆy+y⁢ⅆⅆz
Ry≔VectorField⁡−x⁢Dz+z⁢Dx,space=x,y,z
Ry≔z⁢ⅆⅆx−x⁢ⅆⅆz
Rz≔VectorField⁡−y⁢Dx+x⁢Dy,space=x,y,z
Rz≔−y⁢ⅆⅆx+x⁢ⅆⅆy
Construct the associated distribution....
Σ≔Distribution⁡Rx,Ry,Rz
Σ≔−y⁢ⅆⅆxx+ⅆⅆy,−z⁢ⅆⅆxx+ⅆⅆz
Dimension⁡Σ
2
Codimension⁡Σ
1
IsTrivial⁡Σ
false
The Dimension, Codimension and IsTrivial commands were 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)
Download Help Document