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

Online Help

All Products    Maple    MapleSim


DifferentialAlgebra

  

Equations

  

returns the equations of a differential ideal, optionally satisfying given criteria

  

Inequations

  

returns the inequations of a differential ideal

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

Equations(ideal, criterion, opts)

Equations(L, criterion, R, opts)

Inequations(ideal, opts)

Inequations(L, R, opts)

Parameters

ideal

-

differential polynomial ideal

criterion

-

(optional) selection criterion; only works for Equations

L

-

differential polynomial or a list or set of differential polynomials

R

-

differential polynomial ring or ideal

opts

-

(optional) sequence of options

Options

• 

notation = jet, tjet, diff, or Diff. Specifies the notation used for the result of the function call. If not specified, the notation of the first argument, ideal or L, is used.

• 

fullset = true or false. This option only works with Equations and is incompatible with the option notation = diff. If fullset = true, Equations(ideal) also applies the function over the differential polynomials which state that the derivatives of the parameters are zero. The default value is false.

• 

memout = nonnegative. Specifies a memory limit, in MB, for the computation. The default value is zero (no memory out).

Description

• 

The commands Equations(ideal) and Inequations(ideal) return the equations and inequations of a differential ideal. The list of differential polynomials returned as the equations is assumed to be equal to zero and represents the chain of a regular differential chain. The list of differential polynomials returned as the inequations is assumed to be different from zero. In general, they are restrictions to the differential chain or case; specifically, they represent the initials and separants of the differential ideal.

• 

The inequations of a regular differential chain also represent conditions that expansion points and initial values of power series solutions must satisfy. See the option conditions of PowerSeriesSolution.

• 

To obtain the same equations returned by Equations but solved for the highest power of the leading derivative, pass the solved keyword anywhere in the sequence of arguments.

• 

For both commands, if ideal is a list of regular differential chains, the commands are automatically mapped over the elements of the list.

• 

The option criterion only works with Equations and restricts the equations returned to those satisfying the criterion specified (see below). When the first argument L is a list or set of differential polynomials, these two commands are automatically mapped over the elements of L; if criterion is omitted, L is returned.

  

The possible values of criterion are listed here with the symbol * representing any one of the relational operators >, >=, <, <=, =, <>.

– 

order * n where n is a nonnegative integer. In this case, Equations only returns differential polynomials whose orders satisfy the criterion. Differential polynomials, which do not depend on any derivative, are not selected.

– 

rank * rk. The special ranks 0 and 1 are allowed. In this case, Equations only returns differential polynomials whose leading ranks satisfy the criterion.

– 

leader * v, where v is a derivative. In this case, Equations only returns differential polynomials whose leading derivatives satisfy the criterion. This form applies also to differential polynomials which depend on independent variables only.

– 

leader * derivative(v) where * represents either = or <> and v is a derivative. In this case, Equations only returns differential polynomials whose leading derivatives are equal to (or different from) any derivative of v. This form applies also to differential polynomials which depend on independent variables only.

– 

leader * proper(v) where * represents either = or <> and v is a derivative. In this case, Equations only returns differential polynomials whose leading derivatives are equal to (or different from) any proper derivative of v. This form applies also to differential polynomials which depend on independent variables only.

• 

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

Examples

withDifferentialAlgebra&colon;

RDifferentialRingderivations=x&comma;y&comma;blocks=u&comma;v&comma;p&comma;parameters=p

Rdifferential_ring

(1)

idealRosenfeldGroebnerux24u&comma;ux,yvyu+p&comma;vx,xux&comma;R

idealregular_differential_chain&comma;regular_differential_chain

(2)

The two equations stating that the derivatives of p are zero are omitted.

Equationsideal

pvx,x+uvx,x2uyvy&comma;pux+uux2uyvy&comma;uy22u&comma;p2+2puu2+2vy2&comma;vx,x&comma;u&comma;p

(3)

Equationsideal&comma;solved

vx,x=2uyvyup&comma;ux=2uyvyup&comma;uy2=2u&comma;vy2=12u2pu+12p2&comma;vx,x=0&comma;u=0&comma;p=0

(4)

Inequationsideal

uy&comma;vy&comma;up&comma;

(5)

Compare with the initials and separants of ideal

Tools:-Initialideal,Tools:-Separantideal

up&comma;up&comma;1&comma;2&comma;1&comma;1&comma;1,up&comma;up&comma;2uy&comma;4vy&comma;1&comma;1&comma;1

(6)

The two equations returned by Equations, stating that the derivatives of p are zero, are present when using fullset = true or directly fullset

Equationsideal1&comma;fullset

pvx,x+uvx,x2uyvy&comma;pux+uux2uyvy&comma;uy22u&comma;p2+2puu2+2vy2&comma;px&comma;py

(7)

Equationsideal1&comma;fullset&comma;solved

vx,x=2uyvyup&comma;ux=2uyvyup&comma;uy2=2u&comma;vy2=12u2pu+12p2&comma;px=0&comma;py=0

(8)

Selects the equations of order greater than 1 only.

Equationsideal&comma;1<order

pvx,x+uvx,x2uyvy&comma;vx,x

(9)

Equationsideal&comma;1<order&comma;solved

vx,x=2uyvyup&comma;vx,x=0

(10)

Selects the equations of rank less than or equal to the special rank 1, i.e., all the numeric differential polynomials.

Equations0&comma;17&comma;ux&comma;rank1&comma;R

17&comma;0

(11)

Note that for Equations to accomplish its task, the differential polynomial must include one of the dependent or independent variables of the differential ring. Otherwise, an error occurs.

Selects the equations whose leading derivatives are derivatives of u.

Equationsideal1&comma;leader=derivativeu

pux+uux2uyvy&comma;uy22u

(12)

Equationsideal1&comma;leader=derivativeu&comma;solved

ux=2uyvyup&comma;uy2=2u

(13)

See Also

DifferentialAlgebra

LeadingDerivative

LeadingRank