DifferentialAlgebra[Tools]
DifferentialPrem
the Ritt reduction algorithm
Calling Sequence
Parameters
Options
Description
Examples
DifferentialPrem (p,regchain,opts)
DifferentialPrem (p,redset,R,opts)
p
-
a differential polynomial
regchain
a regular differential chain
redset
a polynomial or a list or a set of differential polynomials
opts (optional)
a sequence of options
The opts arguments may contain one or more of the options below.
reduction = full, partial or algebraic. Indicates the type of reduction to be performed. Depending on the type of reduction, the differential polynomial r satisfies the following properties:
algebraic. For each leading rank vd of regchain, or, of redset, r has degree less than d in v.
partial. For each leading derivative v of regchain, or, of redset, no proper derivative of v occurs in r.
full. For each leading rank vd of regchain, or, of redset, no proper derivative of v occurs in r, and, moreover, r has degree less than d in v.
notation = jet, tjet, diff or Diff. Specifies the notation used for the result of the function call. If not specified, the notation of p is used.
memout = nonnegative. Specifies a memory limit, in MB, for the computation. Default is zero (no memory out).
The function call DifferentialPrem (p,regchain) returns a sequence h,r such that h is a power product of initials and separants of regchain, r is a differential polynomial fully reduced (see below) with respect to regchain, and, h⁢p=r modulo the differential ideal generated by the regular differential chain.
The function call DifferentialPrem (p,redset,R,opts) returns a sequence h,r such that h is a power product of initials and separants of redset, r is a differential polynomial fully reduced with respect to each element of redset, and, h⁢p=r modulo the differential ideal generated by redset. The elements of redset must depend on at least, one derivative and have integer coefficients. All the differential polynomials are regarded as elements of R, or, of its embedding ring, if R is an ideal.
A differential polynomial p belongs to the differential ideal defined by regchain if and only if, the function call DifferentialPrem (p,regchain) returns a sequence h,0 whose second component is zero.
This command is part of the DifferentialAlgebra:-Tools package. It can be called using the form DifferentialPrem(...) after executing the command with(DifferentialAlgebra:-Tools). It can also be directly called using the form DifferentialAlgebra[Tools][DifferentialPrem](...).
with⁡DifferentialAlgebra:with⁡Tools:
R≔DifferentialRing⁡derivations=x,y,blocks=v,u
R≔differential_ring
syst≔ux2−4⁢u,ux,y⁢vy−u+1,vx,x−ux
ideal≔RosenfeldGroebner⁡syst,R1
ideal≔regular_differential_chain
p≔ux,y
h,r≔DifferentialPrem⁡p,ideal
h,r≔2⁢uy,2⁢ux
h,r≔DifferentialPrem⁡p,syst,R
h,r≔2⁢ux,4⁢uy
The ratio r/h is equivalent to p modulo the differential ideal defined by the regular differential chain, but, it is not the normal form of p
NormalForm⁡rh,ideal,NormalForm⁡p,ideal
ux⁢uy2⁢u,ux⁢uy2⁢u
Different modes of reduction are available
h,r≔DifferentialPrem⁡ux3,syst,R,reduction=partial
h,r≔1,ux3
h,r≔DifferentialPrem⁡ux,y+ux3,syst,reduction=algebraic,R
h,r≔vy,4⁢u⁢ux⁢vy+u−1
See Also
DifferentialAlgebra
LeadingDerivative
LeadingRank
NormalForm
BelongsTo
Download Help Document