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

Online Help

All Products    Maple    MapleSim


Linear Differential Operators

 

In Maple, one can work with differential operators by using a subset of the DEtools package. Differential operators in this case are polynomial objects of the form

Lanx DFn+...+a1x DF+a0x

 

with the coefficients aix being rational functions over a field. Here D is an object that satisfies  properties such as DFx=1 and DFuv=uDFv+DFuv.  One can perform functions on these operators such as multiplying, forming symmetric products, taking one-sided greatest common divisors, factoring, and so on.


This functionality, due to Mark van Hoeij (University of Nijmegen), allows for significant future advances for applications such as finding closed form solutions of linear differential equations.  Some applications of this subpackage of DEtools are included below.

We use the with command to allow us to use the short form for the commands in the DEtools package.

restart

withDEtools:

Return to Index for Example Worksheets