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
PolynomialTools[PolynomialToPDE] - convert polynomials to PDEs
PolynomialTools[PDEToPolynomial] - convert PDEs to polynomials
Calling Sequence
PolynomialToPDE(polys, vars, depvars)
PDEToPolynomial(pdes, vars, depvars)
Parameters
polys
-
list (or set) of polynomials or polynomial equations in vars which is linear and homogeneous in the variables depvars
vars
list of independent variables
depvars
list of dependent variables
pdes
list or set of PDEs in the independent variables vars which is linear and homogeneous in its dependent variables depvars
Description
The function PolynomialToPDE maps polynomials to linear homogeneous PDEs and has as its inverse PDEToPolynomial. These maps implement an equivalence between polynomial ideals (and in general modules), and systems of linear homogeneous constant coefficient PDEs.
These functions widen the set of tools that can be applied to both domains. For example, Groebner-like differential elimination algorithms, correspond to Groebner bases of modules under PolynomialToPDE. Efficiency features such as case-splitting in the differential packages, restricting time limits on the cases, storage of partial results, and selecting maximal dimension cases are made available for polynomial systems through this map. Conversely, polynomial features are made available for differential systems by using PDEToPolynomial. PDE solving can also benefit from this correspondence.
Applied to a single polynomial (or PDE), the function PolynomialToPDE (or PDEToPolynomial) is respectively:
Here are the dependent variables, and are polynomials in the independent variables . Also, are the partial differential operators corresponding to . So PolynomialToPDE applies to polynomials which are linear and homogeneous in , with coefficients that are polynomials in . PolynomialToPDE (or PDEToPolynomial) of a list is obtained by applying the functions described above to each member of the list.
PDEToPolynomial applies to PDEs which are linear and homogeneous in , with coefficients independent of .
In the case of one dependent variable the dependent variable is omitted: PDEToPolynomial([p(D1,...,Dn) u1(x)], [x], [u1]) yields . Similarly, it is possible to apply PolynomialToPDE to a polynomial in vars, without any dependent variable present in depvars.
This mapping between linear homogeneous system of partial differential equations is an isomorphism between the differential ring and the corresponding polynomial ring (viewed as a module generated by ).
These functions are part of the PolynomialTools package, and so they can be used in the form PolynomialToPDE(..) only after executing the command with(PolynomialTools). However, they can always be accessed through the long form of the command by using PolynomialTools[PolynomialToPDE](..).
Examples
So and , and the inverse map is given by the following.
If there is only one dependent variable, then it is omitted in the polynomial by default.
The following is a computation of a Groebner Basis:
The same calculation, but by mapping to a PDE, then using DEtools[rifsimp], then mapping back to polynomials:
Computation of a Differential Groebner Basis for a differential system by converting it to a module:
In terms of the PDEs, this basis is:
The following calculation illustrates the equivalence between the differential and the polynomial calculations calculated directly:
Find the values of b and c such that the following system of polynomials has nontrivial solutions.
See Also
DEtools[caseplot], DEtools[rifsimp], DifferentialAlgebra, Groebner/Groebner_bases_for_modules, polynomial
Download Help Document