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

Online Help

All Products    Maple    MapleSim


DifferentialAlgebra

  

DifferentialRing

  

constructs a differential polynomial ring with a ranking for the dependent and independent variables

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

DifferentialRing (blocks = [...], derivations = [...], arbitrary = [...])

DifferentialRing (R, blocks = [...], derivations = [...], arbitrary = [...])

Parameters

blocks = [...]

-

the right-hand-side is a list of dependent variables, possibly including sublists, representing a ranking for them

derivations = [...]

-

the right-hand-side is a list of independent variables representing a ranking for them

arbitrary = [...]

-

the right-hand-side is a list of dependent variables, that are supposed to be arbitrary, that is, algebraically independent functions

R

-

a differential polynomial ring or a differential ideal; when given, any optional specification of blocks, derivations or arbitrary replaces the one found in R

additionally

-

when R is a differential ring, and additionally is passed, any optional specification of blocks, derivations or arbitrary gets added to the corresponding specification found in R

NOTE

-

when the list on the right-hand-side of blocks, derivations or arbitrary contains a single element, this right-hand-side can be the element itself, without enclosing it within a list.

Description

• 

The function call DifferentialRing (derivations = ..., blocks = ..., arbitrary = [...]) constructs and returns a differential polynomial ring, that is a ranking for the dependent and independent variables, possibly specifying arbitrary objects that extend the coefficient field.

– 

The right-hand-side of blocks = [...] is a list of the dependent variables, possibly including sublists of them; only one level of nested sublists is allowed. In the context of a DE system, these dependent variables typically represent the solving variables.

– 

The right-hand-side of derivations = [...] is a list of independent variables specifying the possible dependency of the dependent variables.

– 

The right-hand-side of arbitrary = [...] is a list of algebraically independent arbitrary objects; these can be dependent variables (functions of one or many variables specified in derivations) or other variables (not those specified in derivations). In the context of a DE system, these arbitrary objects typically represent non-solving variables that parameterize the system and its solutions.

• 

Each dependent variable indicated in blocks or arbitrary can be entered as a function's name, say f, or with its dependency explicit, say, as fx,y, and can depend on all or just some of the independent variables specified in derivations, even on none of them, in which case if you enter it as a function use f.

• 

When the DE system to be studied, for example using the RosenfeldGroebner command, will be given in standard Maple function notation, that is with the dependency of functions explicit, then passing the dependent variables to DifferentialRing by giving only their names is naturally simpler. When tackling the DE system, the dependency for each dependent variable will be the one found in the DE system.

• 

Passing the dependent variables to DifferentialRing in function notation is relevant only when some of the dependent variables do not depend on all the independent variables specified in derivations and the DE system to be studied will be given in jet notation, that is with the dependency of functions not made explicit. In this case, when tackling the DE system with RosenfeldGroebner or other DifferentialAlgebra commands, the dependency will be that explicitly specified in blocks = ... and arbitrary = ..., and for each dependent variable in these two lists indicated without dependency, as in f, its dependency will be taken to be the one specified in derivations.

• 

DifferentialRing can also be used to construct a new differential ring from a given one, by changing any of the blocks, derivations or arbitrary parts of it. For this purpose the first argument should be a differential ring, or a differential ideal (for instance returned by RosenfeldGroebner) from which the embedded differential ring is used as a departure point to produce the new differential ring. Note: If additionally is also passed as an argument, any optional specification of blocks, derivations, or arbitrary is added to and not replaced by the corresponding specification found in R.

Rankings

• 

Together, the lists blocks and derivations provide the ranking of R, that is, an ordering for the derivatives of the dependent variables with respect to the independent variables. In brief, the elements in blocks (dependent variables or sublists of them) are ranked between each other using an elimination raking and those within a sublist are ranked used an orderly ranking.

• 

An elimination ranking is one where derivatives of leftmost dependent variables, or of all the dependent variables in a leftmost sublist within blocks, rank higher than derivatives of variables to their right. An orderly ranking is one where derivatives of higher differential order rank higher than derivatives of lower differential order, and if the order is the same, then derivatives of leftmost variables rank higher. Hence for example if blocks = [u, [v, w]] and derivations = [x, t],

ring := DifferentialAlgebra:-DifferentialRing(blocks = [u, [v, w]], derivations = [x, t]);

ringdifferential_ring

(1)
  

the list of second and first order derivatives

[u[t, t], u[x, x], u[t, x], v[t, t], v[x, x], v[t, x], w[t, t], w[x, x], w[t, x], u[t], u[x], v[t], v[x], w[t], w[x]];

ut,t,ux,x,ut,x,vt,t,vx,x,vt,x,wt,t,wx,x,wt,x,ut,ux,vt,vx,wt,wx

(2)
  

rank according to (see SortByRank)

DifferentialAlgebra:-Tools:-SortByRank((2), descending, ring);

ux,x,ux,t,ut,t,ux,ut,vx,x,vx,t,vt,t,wx,x,wx,t,wt,t,vx,vt,wx,wt

(3)
• 

When a system of differential polynomials is handled by DifferentialAlgebra commands, rankings are typically used to decide which functions and derivatives are expressed in terms of which other ones. When the system is nonlinear and handled by RosenfeldGroebner, taking into account the ranking will also frequently result in a splitting of the system into cases (differential chains), that then naturally depend on the ordering of variables within the ranking.

Typical useful rankings

• 

When simplifying a DE system with respect to its integrability conditions one obtains a kind of normal form for the system, expressed with the lowest possible differential order, and automatically detects if the system is inconsistent (has no solution). For this purpose use an orderly ranking, for instance indicating blocks = [[u, v, w]].

• 

When solving a coupled ODE system, to perform a chain resolution one needs the system in triangularized form, that is, containing one subsystem that involves only one variable, say w, that subsystem is part of a larger subsystem that involves two variables, say v and w, and in turn that is part of the whole system that involves the three variables u, v and w. To accomplish this triangularized form equivalent to having decoupled the system use an elimination ranking passing blocks = [u, v, w].

• 

When studying a coupled ordinary differential equation (ODE) system, to express the differential equations for one variable, say, u, in terms of the other variables, say v and w, use a mixed ranking passing blocks = [u, [v, w]].

• 

When solving a coupled partial differential equation (PDE) system, it is interesting to compute first the ODEs satisfied by the solutions of the system. For this purpose use a lexicographic ranking prefixing the dependent variables or a sublist of them within blocks by the keyword lex, either orderly as in blocks = [lex[u, v, w]] (the ODEs involving u, v and w may result coupled), or using an elimination ranking, as in blocks = [lex[u], lex[v], lex[w]]

• 

The ranking can be adjusted further, in different ways, using the keywords grlexA, grlexB, degrevlexA, and degrevlexB as explained in the Rankings section of the DifferentialAlgebra Glossary.

• 

This command is part of the DifferentialAlgebra package. It can be called using the form DifferentialRing(...) after executing the command with(DifferentialAlgebra). It can also be directly called using the form DifferentialAlgebra[DifferentialRing](...).

Examples

In what follows the command DifferentialRing is illustrated with examples where not only the syntax but also the most common types of rankings are explained, in connection with the mathematical computations most frequently done using the DifferentialAlgebra package. The examples used are the same presented in the page for the RosenfeldGroebner command.

withDifferentialAlgebra

BelongsTo,DifferentialRing,Equations,Get,Inequations,Is,NormalForm,PowerSeriesSolution,ReducedForm,RosenfeldGroebner,Tools

(4)

Prior to any computations with the DifferentialAlgebra package, the appropriate differential indeterminates (dependent variables) and derivation variables (independent variables) with the ranking for them must be defined with the command DifferentialRing as shown in the following examples.

Detection of inconsistencies in a differential system: orderly rankings

  

Consider the 3 following equations.

p1diffux,y,x+vx,yy

p1xux,y+vx,yy

(5)

p2diffux,y,y+vx,y

p2yux,y+vx,y

(6)

p3diffvx,y,xdiffvx,y,y

p3xvx,yyvx,y

(7)
  

Before any manipulation of these equations, indicate the dependent and independent variables, and an ordering (ranking) for them variables all inside a list within a list, as in u,v

RDifferentialRingblocks=u,v,derivations=x,y

Rdifferential_ring

(8)
  

Call now the RosenfeldGroebner to simplify the system taking into account all the integrability conditions implied in it

RosenfeldGroebnerp1,p2,p3,R

(9)
  

This result indicates that the system bears a contradiction; p1, p2, and p3 have no common solution, the system is inconsistent; see details in the Examples section of RosenfeldGroebner.

Solving ordinary differential systems: elimination ranking

  

To perform a chain resolution of a system of ordinary differential equations, use an elimination ranking. Consider the differential system defined by the following set S of differential polynomials in the unknown functions xt,yt,zt.

Sdiffxt,txtxt+yt,diffyt,t+ytxt+yt,diffxt,t2+diffyt,t2+diffzt,t21

Sⅆⅆtxtxtxt+yt,ⅆⅆtyt+ytxt+yt,ⅆⅆtxt2+ⅆⅆtyt2+ⅆⅆtzt21

(10)
  

Using an elimination ranking where zt>yt>xt, you rewrite the system in such a way that there is one equation in xt alone, an equation determining yt in terms of xt, and finally an equation determining zt in terms of yt and xt. To achieve this elimination use an elimination ranking, that is one where all the dependent variables are enclosed in a list in equal footing, and first the variables that you want to be expressed in terms of the next ones, so as in z,y,x.

RDifferentialRingblocks=z,y,x,derivations=t:

  

To see these dependencies more clearly in the rewritten system use Equations command, which is an alternative to the Equations command.

GRosenfeldGroebnerS,R

Gregular_differential_chain,regular_differential_chain

(11)
  

In the result above we see two cases. The equations of the first case satisfying this elimination ranking mentioned are

EquationsG1,solved

ⅆⅆtzt2=ⅆⅆtxt42ⅆⅆtxt3xt2+2ⅆⅆtxt2xt4xt4xt4,yt=ⅆⅆtxt+xt2xt,ⅆ2ⅆt2xt=2ⅆⅆtxtxt

(12)
  

The equations of the second case also satisfying the elimination ranking proposed are

EquationsG2,solved

ⅆⅆtzt2=yt4+1,ⅆⅆtyt=yt2,xt=0

(13)

Constrained systems: Orderly and mixed rankings

  

Consider the set of equations describing the motion of a pendulum, that is, a point mass m suspended from a massless rod of length l under the influence of gravity g, in Cartesian coordinates x,y. The Lagrangian formulation leads to two second order differential equations with an algebraic constraint. T is the Lagrangian multiplier.

Pmdiffyt,t,t+Ttyt+g,mdiffxt,t,t+Ttxt,xt2+yt2l2

Pmⅆ2ⅆt2yt+Ttyt+g,mⅆ2ⅆt2xt+Ttxt,xt2+yt2l2

(14)
  

Orderly Ranking

• 

To find the lowest order equations vanishing on the zeros of the system modeling the pendulum and in particular all the algebraic constraints (that is, the equations of order 0), use an orderly ranking, with all the dependent variables in a list within a list, as in T,x,y.

RDifferentialRingblocks=T,x,y,derivations=t,arbitrary=m,l,g:

GRosenfeldGroebnerP,R

Gregular_differential_chain,regular_differential_chain

(15)

EquationsG1,solved

ⅆⅆtTt=3ⅆⅆtytgl2,ⅆⅆtyt2=Ttyt2l2Ttl4+yt3gytl2gml2,xt2=yt2+l2

(16)

EquationsG2,solved

Tt=ytgl2,xt=0,yt2=l2

(17)
  

The second component in the output of RosenfeldGroebner corresponds to the equilibria of the pendulum. From the first component of the output, it can be seen that the actual motion is described by two first order differential equations with a constraint: the solution depends on only two arbitrary constants.

  

Mixed Ranking

  

To obtain the differential system satisfied by x and y alone, eliminate T, so enter a ranking where T is in equal footing to the list of x,y and to its left, as in T,x,y

RMDifferentialRingR,blocks=T,x,y

RMdifferential_ring

(18)

GMRosenfeldGroebnerP,RM

GMregular_differential_chain,regular_differential_chain

(19)

EquationsGM1,solved

Tt=ⅆⅆtyt2ml2+yt3gytl2gyt2l2l4,ⅆ2ⅆt2yt=ⅆⅆtyt2ytml2yt4g+2yt2l2gl4gyt2ml2ml4,xt2=yt2+l2

(20)

EquationsGM2,solved

Tt=ytgl2,xt=0,yt2=l2

(21)
  

Note here that the motion is given by a second order differential equation in yt. Then the Lagrange multiplier is given explicitly in terms of yt and its first derivative.

Solving partial differential system: lexicographic elimination ranking

  

To solve overdetermined systems of partial differential equations it is interesting to compute first the ordinary differential equations satisfied by the solutions of the system. For this purpose, a lexicographic ranking must be chosen. Consider the differential system S defining the infinitesimal generators of the symmetry group of the Burgers equations.

Burgers_pdediffut,x,t=diffut,x,x,xut,xdiffut,x,x

Burgers_pdetut,x=2x2ut,xut,xxut,x

(22)

BurgersSymmPDEtools:-DeterminingPDEBurgers_pde,ut,x,V1,V2,V3t,x,u

BurgersSymmuV1t,x,u=0,xV1t,x,u=0,tV2t,x,u=utV1t,x,u2+V3t,x,u,uV2t,x,u=0,xV2t,x,u=tV1t,x,u2,tV3t,x,u=2t2V1t,x,uu2,uV3t,x,u=tV1t,x,u2,xV3t,x,u=2t2V1t,x,u2,3t3V1t,x,u=0

(23)
  

Seek the ordinary differential equations with respect to t satisfied by the solutions of this system using lex at the time of raking the variables, as in lexV3,V2,V1

RDifferentialRingblocks=lexV3,V2,V1,derivations=u,x,t

Rdifferential_ring

(24)

GRosenfeldGroebnermaplhsrhs,BurgersSymm,R

Gregular_differential_chain

(25)

EquationsG1,solved

uV3t,x,u=tV1t,x,u2,uV2t,x,u=0,uV1t,x,u=0,xV3t,x,u=tV3t,x,uu,xV2t,x,u=tV1t,x,u2,xV1t,x,u=0,2t2V3t,x,u=0,2t2V1t,x,u=2tV3t,x,uu,tV2t,x,u=utV1t,x,u2+V3t,x,u

(26)
  

There are three independent ordinary differential equations with respect to t (the last three of the differential characteristic set). All other ordinary (in t) equations vanishing on the solutions of BurgersSymm can be written as linear combination of these three with their derivatives.

  

You can change any of the pieces of information constituting a differential ring by passing the ring itself as the first argument, followed by any of the keywords blocks = ..., derivations = ..., parameters = ..., and so on, where the right-hand sides specify the new information, or you can also add to the previous information by passing the keyword additionally.

Getdata,R

* Partial match of 'data' against keyword 'differentialringdata'

derivations=u,x,t,blocks=lexV3,V2,V1,parameters=,arbitrary=

(27)

R_with_replaced_blocksDifferentialRingR,blocks=F,V1,H

R_with_replaced_blocksdifferential_ring

(28)

Getdata,R_with_replaced_blocks

* Partial match of 'data' against keyword 'differentialringdata'

derivations=u,x,t,blocks=F,V1,H,parameters=,arbitrary=

(29)

R_additionally_blocks_and_arbitraryDifferentialRingR,blocks=F,H,arbitrary=V1,V2,additionally

R_additionally_blocks_and_arbitrarydifferential_ring

(30)

Getdata,R_additionally_blocks_and_arbitrary

* Partial match of 'data' against keyword 'differentialringdata'

derivations=u,x,t,blocks=lexV3,F,H,V1,V2,parameters=,arbitrary=V1,V2

(31)

R_with_replaced_arbitraryDifferentialRingR,arbitrary=F,H

R_with_replaced_arbitrarydifferential_ring

(32)

Getdata,R_with_replaced_arbitrary

* Partial match of 'data' against keyword 'differentialringdata'

derivations=u,x,t,blocks=lexV3,V2,V1,F,H,parameters=,arbitrary=F,H

(33)

For more details see RosenfeldGroebner

See Also

DifferentialAlgebra

RosenfeldGroebner

Equations

Inequations