mapde - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


PDEtools

  

mapde

  

map a PDE into a PDE with a different format

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

mapde(PDE, into, f)

Parameters

PDE

-

partial differential equation

into

-

string, one of noF, homo, ccoeff, canom, and canop

f

-

(optional) name of the indeterminate function

Description

• 

Given a PDE, mapde's main goal is to map it into another PDE with a different format, perhaps easier to solve. (Of the options mentioned above, homo and ccoeff are not yet implemented.)

• 

Description of options

noF

no explicit dependence on the indeterminate function

homo

homogeneous PDE

ccoeff

DE with constant coefficients for the higher derivatives

canom

canonical form with only one mixed derivative

canop

canonical form with only pure (no mixed) derivatives

• 

The options canom and canop only work with linear second order PDEs with only two differentiation variables. The mapde command always succeeds as long as the coefficients are constant. With variable coefficients, mapde succeeds only sometimes; in those cases, the mapping is realized through a nonlinear transformation which appears as the algebraic inversion of the solution of a pair of auxiliary first order PDEs. However, the system does not always succeed in solving that auxiliary problem.

• 

The option noF, at present, only works when the received PDE is a homogeneous function of the indeterminate function and its derivatives. In these cases, mapde introduces the indeterminate function as equal to the exponential of another (auxiliary) function.

• 

This function is part of the PDEtools package, and so it can be used in the form mapde(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[mapde](..).

Examples

withPDEtools:

PDEdifffx,y,z,x3=fx,y,zdifffx,y,z,y,ydifffx,y,z,z

PDExfx,y,z3=fx,y,z2y2fx,y,zzfx,y,z

(1)

pdsolvePDE

fx,y,z=f__1xf__2yf__3zwhereⅆⅆxf__1x3=_c1f__1x3,ⅆⅆzf__3z=_c1f__3z_c2,ⅆ2ⅆy2f__2y=_c2f__2y

(2)

Here is the solution after mapping the PDE into 'noF'.

PDE1mapdePDE,noF

PDE1xf__1x,y,z3zf__1x,y,zyf__1x,y,z2zf__1x,y,z2y2f__1x,y,z=0wheref__1x,y,z=lnfx,y,z

(3)

anspdsolveop1,PDE1

ansf__1x,y,z=f__2x+f__3y+f__4zwhereⅆⅆxf__2x=_c1,ⅆⅆzf__4z=_c3,ⅆ2ⅆy2f__3y=_c13_c3ⅆⅆyf__3y2

(4)

buildans

f__1x,y,z=_c132y_c3+_c3z+ln_c3ⅇ_c132y_c32c__2c__32_c132ln2+_c1x+c__1+c__4

(5)

The solution to the original PDE can be obtained by taking the exponential of the above.

PDEadifffx,y,x,x+2bdifffx,y,y,x+cdifffx,y,y,y

PDEa2x2fx,y+2b2xyfx,y+c2y2fx,y

(6)

mapdePDE,canop

b2a+c2_ξ12f_ξ1,_ξ2+a2_ξ22f_ξ1,_ξ2where_ξ1=ybxa,_ξ2=x

(7)

mapdePDE,canom

22ca2b22_ξ1_ξ2f_ξ1,_ξ24ca+4b2where_ξ1=2ca+b22bx2a+y,_ξ2=4ca+b2b4ca+4b2+1x2ya2ca+b2

(8)

Case of variable coefficients (an easy example)

PDE1subsa=x2,b=yx,c=y2,PDE

PDE1x22x2fx,y+2yx2xyfx,y+y22y2fx,y

(9)

Here is the solution after mapping the PDE into canop.  Note that the transformation is nonlinear.

PDE2mapdePDE1,canop

PDE2_ξ122_ξ12f_ξ1,_ξ2where_ξ1=x,_ξ2=yx

(10)

pdsolveop1,PDE2

f_ξ1,_ξ2=f__1_ξ2_ξ1+f__2_ξ2

(11)

See Also

build

dchange

PDEtools

pdsolve