Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
PDEtools[mapde] - map a PDE into a PDE with a different format
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
Here is the solution after mapping the PDE into 'noF'.
The solution to the original PDE can be obtained by taking the exponential of the above.
Case of variable coefficients (an easy example)
Here is the solution after mapping the PDE into canop. Note that the transformation is nonlinear.
See Also
build, dchange, PDEtools, pdsolve
Download Help Document