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

Online Help

All Products    Maple    MapleSim


AreSameSpace

check if a sequence of LHPDE objects live on the same space.

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

AreSameSpace( obj1,obj2, ...)

Parameters

obj1, obj2, ...

-

a sequence of LHPDE objects

Description

• 

The AreSameSpace method returns true if all objects live on the same space, false otherwise.

• 

For LHPDE objects to live on the same space, they must have the same independent variables x1,x2,…,xn and the same number of dependent variables.

• 

This method is associated with the LHPDE object. For more detail, see Overview of the LHPDE object.

Examples

> 

with⁡LieAlgebrasOfVectorFields:

> 

Typesetting:-Settings⁡userep=true:

> 

Typesetting:-Suppress⁡α,β,η,ξ⁡x,y

> 

E2≔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=ξ,η

E2≔ξy,y=0,ηx=−ξy,ηy=0,ξx=0,indep=x,y,dep=ξ,η

(1)
> 

Tx≔LHPDE⁡diff⁡α⁡x,y,x=0,diff⁡β⁡x,y,y=0,diff⁡α⁡x,y,y=0,diff⁡β⁡x,y,x=0,indep=x,y,dep=α,β

Tx≔αx=0,βy=0,αy=0,βx=0,indep=x,y,dep=α,β

(2)
> 

AreSameSpace⁡E2,Tx

true

(3)
> 

Tx1≔LHPDE⁡diff⁡α⁡y,x,x=0,diff⁡α⁡y,x,y=0,diff⁡β⁡y,x,x=0,diff⁡β⁡y,x,y=0,indep=y,x,dep=α,β

Tx1≔∂∂xα⁡y,x=0,∂∂yα⁡y,x=0,∂∂xβ⁡y,x=0,∂∂yβ⁡y,x=0,indep=y,x,dep=α⁡y,x,β⁡y,x

(4)
> 

AreSameSpace⁡E2,Tx1

false

(5)
> 

AreSameSpace⁡E2,Tx,Tx1

false

(6)

Compatibility

• 

The AreSameSpace 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]

GetIndependents