Overview of Linear Homogeneous PDE Commands
Description
List of Linear Homogeneous PDE-Related Commands
List of Methods from LHPDE, LHPDO, IDBasis Objects
Examples
The Linear Homogeneous PDE commands in the LieAlgebrasOfVectorFields package provide a general purpose toolkit for dealing with linear homogeneous partial differential equations (LHPDE). To be more specific, with these commands you can:
reduce a LHPDEs system using the rifsimp command and with ranking recorded with the system.
find properties of a LHPDEs system such as solution dimension, parametric derivatives, and whether a total degree ranking was used.
explore relationships between solutions of two LHPDEs systems including whether one solution space is a subspace of the other, finding intersection of solution spaces of two LHPDEs, and finding vector space sum of solution spaces of two LHPDEs.
access to utility commands for manipulating LHPDEs.
manipulate as a partial differential operator form.
manipulate a LHPDEs system that has partial dependencies (i.e. the dependent variables may depend on only some of the independent variables).
manipulate a LHPDEs system that is in partially or fully integrated form (i.e. a system with constants of integration involved).
The linear homogeneous PDE functionality have been written focusing on the key LHPDE object, and almost all methods are within the LHPDE object. There only five exports relating to Linear Homogeneous PDE in the LieAlgebrasOfVectorFields package, four of them are for constructing a Maple object, and one is a subpackage containing utility commands.
The existing Maple builtins normal, expand, simplify, indets, has, hastype, type and convert are extended to work for LHPDE and LHPDO objects.
Some of the internal routines for Linear Homogeneous PDE are also available for use as LieAlgebrasOfVectorFields:-LHLibrary:-Routine. For more details, see overview of the LHLibrary subpackage.
To use this functionality, first a LHPDE object must be constructed (e.g. via LieAlgebrasOfVectorFields[LHPDE] command). Then once a LHPDE object is constructed successfully, a variety of methods will be available. For more detail, see Overview of the LHPDE object.
There are five related exports, namely:
LHPDE
A constructor to create a LHPDE object.
LHPDO
A constructor to create a LHPDO object.
IDBasis
A constructor to create an IDBasis object.
EliminationSystem
A command for eliminating some dependent variables from a PDEs system.
LHLibrary
A subpackage containing low-level utilities for DEs
The following methods are available for a LHPDE object.
AdjustDependencies
AreSame
AreSameSpace
Augment
Copy
DChange
GetDependents
GetIDBasis
GetIndependents
GetRanking
GetSystem
InitialData
Intersection
IsFiniteType
IsRifReduced
IsSubspace
IsTotalDegreeRanking
IsTrivial
LHSolve
OrderOfInvolution
ParametricDerivatives
ReducedForm
RifReduce
SetIDBasis
SolutionDimension
VectorSpaceSum
The following methods are available for a LHPDO object.
GetDependentsCount
GetDependencies
GetSystemCount
A LHPDO object can also act as a differential operator. See the LHPDO Object as Operator for more detail.
The following Maple builtins are extended for allowing both LHPDE and LHPDO objects: type, expand, has, hastype, indets, normal, simplify, convert. See LHPDE Object Overloaded Builtins and LHPDO Object Overloaded Builtins for more detail.
The following methods are available for a IDBasis object.
GetChangeBasis
GetParametricDerivatives
with⁡LieAlgebrasOfVectorFields
Differential,DisplayStructure,Distribution,EliminationLAVF,EliminationSystem,IDBasis,IsLinearizable,LAVF,LHLibrary,LHPDE,LHPDO,MapDE,OneForm,SymmetryLAVF,VFPDO,VectorField
Construct an LHPDE object. (This is the infinitesimal determining system for the vector fields of the 2-D Euclidean group (i.e. rotations and translations).)
detSys≔diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x+diff⁡ξ⁡x,y,y=0,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,x=0
detSys≔∂2∂y2ξ⁡x,y=0,∂∂xη⁡x,y+∂∂yξ⁡x,y=0,∂∂yη⁡x,y=0,∂∂xξ⁡x,y=0
E2≔LHPDE⁡detSys,indep=x,y,dep=ξ,η
E2≔∂2∂y2ξ⁡x,y=0,∂∂xη⁡x,y+∂∂yξ⁡x,y=0,∂∂yη⁡x,y=0,∂∂xξ⁡x,y=0,indep=x,y,dep=ξ⁡x,y,η⁡x,y
E2 is a LHPDE object containing a collection of methods.
exports⁡E2,static
type,convert,normal,expand,simplify,indets,has,hastype,GetIndependents,GetDependents,GetSystem,GetRanking,SetIDBasis,GetIDBasis,Copy,Augment,SolutionDimension,IsFiniteType,IsTrivial,ParametricDerivatives,OrderOfInvolution,IsRifReduced,IsTotalDegreeRanking,AreSameSpace,AreSame,RifReduce,ReducedForm,AdjustDependencies,Intersection,VectorSpaceSum,EliminationSystem,IsSubspace,DChange,dchange,LHSolve,initialdata,InitialData,ModulePrint,ModuleCopy,ModuleApply
The object has an associated type:
type⁡E2,LHPDE
true
Conversion of an LHPDE object to a partial differential operator LHPDO object:
Δ≔convert⁡E2,LHPDO
Δ≔ξ,η→∂∂y⁢∂∂y⁢ξ,∂∂x⁢η+∂∂y⁢ξ,∂∂y⁢η,∂∂x⁢ξ
An LHPDO acts as an operator. In this case it annihilates rotation vector field about the point (x0,y0)...
Δ⁡−y−y0,x−x0
0,0,0,0
Apply the differential reduction and completion method of DEtools[rifsimp]...
E2p≔RifReduce⁡E2
E2p≔∂2∂y2ξ⁡x,y=0,∂∂xξ⁡x,y=0,∂∂xη⁡x,y=−∂∂yξ⁡x,y,∂∂yη⁡x,y=0,indep=x,y,dep=ξ⁡x,y,η⁡x,y
...which puts the system into a form where the dimension of its solution space can be deduced:
SolutionDimension⁡E2p
3
There is a library of low level commands that are useful for PDE:
LHLibrary:-IsHomogeneous⁡GetSystem⁡E2p,ξ⁡x,y,η⁡x,y
The LHPDE package fluently handles PDE with partial dependency. There is a method to adjust the dependencies...
AdjustDependencies⁡E2p,dep=least
ⅆ2ⅆy2ξ⁡y=0,ⅆⅆxη⁡x=−ⅆⅆyξ⁡y,indep=x,y,dep=ξ⁡y,η⁡x
PDE (or ODE) systems of finite type can be passed to Maple's PDE (respectively ODE) solvers pdsolve and dsolve.
LHSolve⁡E2p
ξ⁡x,y=−c__1⁢y+c__3,η⁡x,y=c__1⁢x+c__2
See Also
LHPDE (Object Overview)
LHPDO (Object Overview)
IDBasis (Object Overview)
LieAlgebrasOfVectorFields[LHPDE]
LieAlgebrasOfVectorFields[LHPDO]
LieAlgebrasOfVectorFields[IDBasis]
Download Help Document