LHPDE Object Overloaded Builtins
overview of overloaded builtins for LHPDE object.
Description
Examples
Compatibility
The functionalities of some Maple builtin commands are extended for use on LHPDE object.
The following builtins have been overloaded for this purpose: normal, expand, simplify, indets, has, type, hastype, convert
The normal, expand, simplify builtin commands accept a LHPDE object and apply their methods onto its DEs system. Then they return a LHPDE object with new DEs system.
Let S be a LHPDE object.
(i) The call type(S, t) returns true if t is any of the following types: module, object, anything, and LHPDE. See examples below.
(ii) The call type(S, dependent(x)) and type(S, freeof(x)) respectively return true if the DEs system, the independent variables, and the dependent variables of S contain (respectively don't contain) x. See example below.
The indets, has, hastype builtin commands accept a LHPDE object and apply their methods onto the DEs system, the independent variables, and the dependent variables of the object.
The convert builtin command can convert a LHPDE object S into a LHPDO object.
These overloaded builtins are associated with the LHPDE object. For more detail, see Overview of the LHPDE object.
with⁡LieAlgebrasOfVectorFields:
Typesetting:-Settings⁡userep=true:
Typesetting:-Suppress⁡u⁡x,y:
normal, expand, simplify
S≔LHPDE⁡x⁢x−1−x2⁢diff⁡u⁡x,y,x,x+cos⁡y2+sin⁡y2⁢diff⁡u⁡x,y,y,y=0
S≔x⁢x−1−x2⁢ux,x+cos⁡y2+sin⁡y2⁢uy,y=0,indep=x,y,dep=u
normal⁡S
cos⁡y2⁢uy,y+sin⁡y2⁢uy,y−ux,x⁢x=0,indep=x,y,dep=u
expand⁡S
simplify⁡S
−ux,x⁢x+uy,y=0,indep=x,y,dep=u
type
type⁡S,LHPDE,type⁡S,`module`,type⁡S,object
true
The LHPDE object contains x
type⁡S,dependent⁡x
type⁡S,freeof⁡x
false
indets, has, hastype
indets⁡S
x,y,cos⁡y,ux,x,uy,y,ux,uy,sin⁡y,u
has⁡S,z
hastype⁡S,scalar
hastype⁡S,float
convert
convert⁡S,LHPDO
u→x⁢x−1−x2⁢∂∂x⁢∂∂x⁢u+cos⁡y2+sin⁡y2⁢∂∂y⁢∂∂y⁢u
The LHPDE Object Overloaded Builtins command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
LHPDE (Object overview)
LieAlgebrasOfVectorFields[LHPDE]
Download Help Document