Intersection
find a LAVF object whose solution space is the intersection of solution spaces of given LAVF objects.
Calling Sequence
Parameters
Description
Examples
Compatibility
Intersection( L1, L2, ..., depname = vars )
L1, L2, ...
-
a sequence of LAVF objects living on the same space
vars
(optional) a list of new dependent variable names
Let L1,L2, ... be a sequence of LAVF objects living on the same space (see AreSameSpace). The Intersection method returns a new LAVF object whose solution space is the intersection of solutions of L1,L2,....
By default, the dependent variable names of the returned object are taken from L1. The dependent variable names will be vars if the optional argument depnames = vars is specified.
This method is front-end to the corresponding method of a LHPDE object. That is, let S1, S2,... be the determining systems of L1,L2,... (i.e. Si = GetDeterminingSystem(Li)), then the call Intersection(L1,L2,..) is equivalent to Intersection(S1,S2,..). All remaining input arguments will be passed down to its determining system level. See the method Intersection of a LHPDE object for more detail.
This method is associated with the LAVF object. For more detail, see Overview of the LAVF object.
with⁡LieAlgebrasOfVectorFields:
Typesetting:-Settings⁡userep=true:
Typesetting:-Suppress⁡ξ⁡x,y,η⁡x,y:
X≔VectorField⁡ξ⁡x,y⁢Dx+η⁡x,y⁢Dy,space=x,y
X≔ξ⁢ⅆⅆx+η⁢ⅆⅆy
The determining system for 2-dim Euclidean
E2≔LHPDE⁡diff⁡ξ⁡x,y,x=0,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,y+diff⁡η⁡x,y,x=0,diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x,x=0,indep=x,y,dep=ξ,η
E2≔ξx=0,ηy=0,ξy+ηx=0,ξy,y=0,ηx,x=0,indep=x,y,dep=ξ,η
The determining system for 2-dim translations
T2≔LHPDE⁡diff⁡ξ⁡x,y,x=0,diff⁡ξ⁡x,y,y=0,diff⁡η⁡x,y,x=0,diff⁡η⁡x,y,y=0,indep=x,y,dep=ξ,η
T2≔ξx=0,ξy=0,ηx=0,ηy=0,indep=x,y,dep=ξ,η
We first construct LAVFs for E(2) and T(2)
LE2≔LAVF⁡X,E2
LE2≔ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξy,y=0,ξx=0,ηx=−ξy,ηy=0
LT2≔LAVF⁡X,T2
LT2≔ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξx=0,ηx=0,ξy=0,ηy=0
Intersection⁡LE2,LT2
ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξx=0,ηx=0,ξy=0,ηy=0
Intersection⁡LE2,LT2,depname=α,β
α⁡x,y⁢ⅆⅆx+β⁡x,y⁢ⅆⅆy&where∂∂xα⁡x,y=0,∂∂xβ⁡x,y=0,∂∂yα⁡x,y=0,∂∂yβ⁡x,y=0
The Intersection command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
LieAlgebrasOfVectorFields (Package overview)
LAVF (Object overview)
LieAlgebrasOfVectorFields[VectorField]
LieAlgebrasOfVectorFields[LHPDE]
LieAlgebrasOfVectorFields[LAVF]
AreSameSpace
Download Help Document