Intersection
calculate intersection of distributions
VectorSpaceSum
calculate vector space sum of distributions
Calling Sequence
Parameters
Description
Examples
Compatibility
Intersection(dist1, ...)
VectorSpaceSum(dist1, ...)
dist1, ...
-
sequence of Distribution objects.
The Intersection method returns a Distribution object representing the intersection of the input Distribution objects. More precisely, the result is a distribution such that at each point, the subspace of tangent space is the intersection of the subspaces spanned by the input distributions.
Similarly, the VectorSpaceSum command returns a Distribution object representing the vector space sum of the input Distribution objects. More precisely, the result is a distribution such that at each point, the subspace of tangent space is the vector space sum of the subspaces spanned by the input distributions.
These methods are associated with the Distribution object. For more detail see Overview of the Distribution object.
with⁡LieAlgebrasOfVectorFields:
Build vector fields...
Tx≔VectorField⁡Dx,space=x,y,z
Tx≔ⅆⅆx
Ty≔VectorField⁡Dy,space=x,y,z
Ty≔ⅆⅆy
Tz≔VectorField⁡Dz,space=x,y,z
Tz≔ⅆⅆz
R≔VectorField⁡−y⁢Dx+x⁢Dy,space=x,y,z
R≔−y⁢ⅆⅆx+x⁢ⅆⅆy
Construct two distributions...
Σ≔Distribution⁡Tz,R
Σ≔−y⁢ⅆⅆxx+ⅆⅆy,ⅆⅆz
Gamma≔Distribution⁡Tx,Ty
Γ≔ⅆⅆy,ⅆⅆx
Intersection and sum...
Intersection⁡Gamma,Σ
−y⁢ⅆⅆxx+ⅆⅆy
VectorSpaceSum⁡Σ,Gamma
ⅆⅆx,ⅆⅆy,ⅆⅆz
The Intersection and VectorSpaceSum 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