SolutionDimension - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


SolutionDimension

calculate the solution dimension of a LHPDE object.

IsFiniteType

check if a LHPDE object is of finite type

IsTrivial

check if a LHPDE object has only the trivial solution

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

SolutionDimension( obj)

IsFiniteType( obj)

IsTrivial( obj)

Parameters

obj

-

a LHPDE object that is in rif-Reduced from.

Description

• 

The SolutionDimension method calculates the solution dimension of a LHPDE object. It returns ∞ if the solution dimension is not finite.

• 

Let S be a LHPDE object. Then IsFiniteType(S) returns true if and only if SolutionDimension(S) ≠∞.

• 

Let S be a LHPDE object. Then IsTrivial(S) returns true if and only if SolutionDimension(S) =0.

• 

These methods are associated with the LHPDE object. For more detail, see Overview of the LHPDE object.

Examples

> 

with⁡LieAlgebrasOfVectorFields:

 

> 

S≔LHPDE⁡diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x=−diff⁡ξ⁡x,y,y,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,x=0,indep=x,y,dep=ξ⁡x,y,η⁡x,y,inRifReducedForm=true

S≔∂2∂y2ξ⁡x,y=0,∂∂xη⁡x,y=−∂∂yξ⁡x,y,∂∂yη⁡x,y=0,∂∂xξ⁡x,y=0,indep=x,y,dep=ξ⁡x,y,η⁡x,y

(1)
> 

SolutionDimension⁡S

3

(2)

The system S is of finite type but not trivial:

> 

IsFiniteType⁡S

true

(3)
> 

IsTrivial⁡S

false

(4)

Compatibility

• 

The SolutionDimension, IsFiniteType and IsTrivial commands were introduced in Maple 2020.

• 

For more information on Maple 2020 changes, see Updates in Maple 2020.

See Also

LHPDE (Object overview)

LieAlgebrasOfVectorFields[LHPDE]