IsSubspace
check if one distribution is contained in another
Calling Sequence
Parameters
Description
Examples
Compatibility
IsSubspace(dist1, dist2)
dist1, dist2
-
Distribution objects
The IsSubspace method decides whether Distribution object dist1 specifies a subspace of tangent space which is contained in the subspace specified by Distribution dist2 at each point in space. It returns the values true or false.
This method is associated with the Distribution object. For more detail see Overview of the Distribution object.
with⁡LieAlgebrasOfVectorFields:
Build vector fields...
T≔VectorField⁡Dz,space=x,y,z
T≔ⅆⅆz
R≔VectorField⁡−y⁢Dx+x⁢Dy,space=x,y,z
R≔−y⁢ⅆⅆx+x⁢ⅆⅆy
Construct the associated distribution...
Σ≔Distribution⁡T,R
Σ≔−y⁢ⅆⅆxx+ⅆⅆy,ⅆⅆz
Gamma≔Distribution⁡T+R
Γ≔−y⁢ⅆⅆx+x⁢ⅆⅆy+ⅆⅆz
Test containment...
IsSubspace⁡Gamma,Σ
true
IsSubspace⁡Σ,Gamma
false
The IsSubspace 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)
Download Help Document