GetDependentsCount
get the number of elements that a LHPDO object operates on
GetDependencies
get the dependencies of elements that a LHPDO object may operate on
GetSystemCount
get the number of elements returned by a LHPDO object
Calling Sequence
Parameters
Description
Examples
Compatibility
GetDependentsCount( obj)
GetDependencies( obj)
GetSystemCount( obj)
obj
-
a LHPDO object
An LHPDO object Δ is an appliable operator. If it acts on a list containing m elements and returns a list containing s elements, then GetDependentsCount(Delta) returns m and GetSystemCount(Delta) returns s.
The m elements acted on by LHPDO Delta may have dependency restrictions. These restrictions can be retrieved by the call GetDependencies(Delta).
These methods are associated with the LHPDO object. For more detail, see Overview of the LHPDO object.
with⁡LieAlgebrasOfVectorFields:
Δ≔LHPDO⁡diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x=−diff⁡ξ⁡x,y,y,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,x=0
Δ≔η,ξ→∂∂y⁢∂∂y⁢ξ,∂∂x⁢η+∂∂y⁢ξ,∂∂y⁢η,∂∂x⁢ξ
The operator Delta takes in a list of 2 elements and returns a list of 4 elements...
GetDependentsCount⁡Δ
2
GetSystemCount⁡Δ
4
The arguments of Delta here may both depend on (x,y) ...
GetDependencies⁡Δ
x,y,x,y
Q≔LHPDO⁡diff⁡u⁡x,x,x−u⁡x,diff⁡v⁡y,y,y
Q≔u,v→∂∂x⁢∂∂x⁢u−u,∂∂y⁢∂∂y⁢v
The operator Q acts on a list of 2 elements, say [u,v]...
GetDependentsCount⁡Q
The first list item u may depend on x only, the second item v may depend on y only...
GetDependencies⁡Q
x,y
The GetDependentsCount, GetDependencies and GetSystemCount commands were introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
LHPDO (Object overview)
LieAlgebrasOfVectorFields[LHPDO]
LHPDO as operator
GetIndependents
Download Help Document