Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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