Basic Concepts in Constructive Differential Algebra and Their Representation in the diffalg Package
|
Motivation to study differential equations from an algebraic standpoint
|
|
•
|
Consider the differential system consisting of the two equations:
|
>
|
eq1 := diff(U(x),x)^2+U(x)^2*diff(V(x),x)^2+2*U(x)*V(x)+2*U(x)^2 =0;
|
| (1) |
>
|
eq2 := diff(U(x),x)*diff(V(x),x)-U(x)-V(x) =0;
|
| (2) |
|
If a pair of meromorphic functions is a solution of this system, then is also a solution of the equations obtained by differentiation, for example,
|
| (3) |
|
and the equations obtained by linear combination, for example,
|
>
|
expand(eq1+2*U(x)*eq2);
|
| (4) |
|
Note that this latter equation can also be written as
|
>
|
factor(eq1+2*U(x)*eq2);
|
| (5) |
|
Therefore must be a solution of
|
| (6) |
|
If the -tuple forms a meromorphic solution of the system, then it is also a solution of any equation obtained by:
|
|
- differentiating ,
|
|
- taking linear combination of , and therefore,
|
|
- taking any linear combination of and their derivatives.
|
|
The set of all linear combinations of and their derivatives is the differential ideal generated by .
|
|
Actually, the radical differential ideal generated by is the biggest set of equations with the same meromorphic solutions as the system .
|
|
Furthermore, the system has at least one meromorphic solution if and only if the radical differential ideal generated by does not contain an element independent of the unknown functions.
|
•
|
These two last facts are the fundamental results of differential algebra. This theory was initiated around 1930 by Ritt for ordinary differential equations and later developed for partial differential equations by his students.
|
|
The purpose of constructive differential algebra, and of the package diffalg, is to give good representations of the radical differential ideals generated by finitely many differential polynomials. Doing so we give a good decomposition of the solution set of the associated differential system.
|
•
|
This help page attempts to give an account of the concepts used in the diffalg package. For more information, refer to the bibliography.
|
|
|
Differential rings and fields
|
|
•
|
A derivation on a ring is an inner application d that is an additive morphism(1) satisfying Leibniz rule(2).
|
|
(1)
|
|
(2)
|
•
|
A differential ring (field) is a commutative ring (field) endowed with a finite set of derivations that commute pairwise.
|
|
The field of rational numbers endowed with the trivial derivation that maps any element to is a differential field (of constants).
|
•
|
A derivation operator is the composition of a finite number of derivations. The non-negative number of derivations involved is the order of the derivation operator.
|
|
|
Differential polynomial ring
|
|
|
is the ring of polynomials in the indeterminates with their derivatives up to any order.
|
•
|
The differential polynomials of can be denoted by using the Maple diff and Diff functions or the more compact jet notation.
|
|
denotes diff(u(x),x)^2 - 4*u(x) in
|
|
denotes (1/y)*diff(u(x,y),x,x,y) + y + 1 in
|
|
|
Ranking
|
|
•
|
A ranking is a total order over the set of the derivatives of the differential indeterminates of that satisfies the two axioms:
|
•
|
Rankings are the analogs of term orderings used in Groebner bases algorithms. However, rankings order the derivatives of the differential indeterminates while term orderings order monomials.
|
|
|
Representation of differential ring and rankings in the diffalg package
|
|
•
|
A differential polynomial ring indicates the data structure (a Maple table) returned by the function differential_ring.
|
|
This structure corresponds to a differential polynomial ring (in the mathematical sense) endowed with a ranking and a notation.
|
•
|
In the diffalg package, is by default the field of rational numbers. Nonetheless, transcendental and (differential) algebraic extensions of the field of rational numbers can be defined by using the command field_extension.
|
>
|
R := differential_ring(ranking=[[u,v,w]], derivations=[x,y]);
|
| (7) |
| (8) |
|
A concise presentation of the ranking you have defined can be obtained by using the command print_ranking.
|
In lists, leftmost elements are greater than rightmost ones.
The derivatives of [u, v, w] are ordered by grlexA:
_U [tau] > _V [phi] when
|tau| > |phi| or
|tau| = |phi| and _U > _V w.r.t. the list of indeterminates or
|tau| = |phi| and _U = _V and tau > phi w.r.t. [x, y]
| |
|
|
Radical differential ideals
|
|
•
|
We introduce the concepts of a differential ideal and a radical differential ideal to discuss the following differential analog of the Hilbert theorem of zeros.
|
•
|
A differential ideal of a differential ring is an ideal of stable under derivations.
|
|
: is a radical differential ideal.
|
|
Given a parametrized family of n-tuples of meromorphic functions, the set of differential polynomials in vanishing on this n-tuple forms a prime differential ideal.
|
|
A radical differential ideal is a finite intersection of prime differential ideals. This decomposition is unique when minimal.
|
|
|
Differentially triangular sets
|
|
•
|
A set of differential polynomials in a polynomial differential ring is said to be differentially triangular with respect to a given ranking if:
|
|
- no pi belongs to the ground field,
|
|
- no proper derivative of the leader of pi appears in , and
|
|
- the leaders of the pi's are pairwise different.
|
•
|
The command differential_sprem implements a generalization of the pseudo-division algorithm to compute the reduction of a differential polynomial with respect to a differentially triangular systems of differential polynomials.
|
|
|
Coherence and regular differential systems
|
|
•
|
A differentially triangular set is said to be coherent if all the well-defined delta-polynomials that can be formed with any pair of its elements belong to the (non differential) ideal determined by a limited differential prolongation of . For a more precise definition, see [Kolchin].
|
|
The sufficient condition that appears commonly is that all these delta-polynomials are reduced (by using differential_sprem) to zero by .
|
|
Testing triviality or membership to a regular differential ideal is a purely algebraic problem.
|
|
Every regular differential ideal is radical and is an intersection of prime differential ideals that have the same parametric set (arbitrary constants and functions).
|
|
|
Differential characteristic sets and characterizable differential ideals
|
|
|
Characterizable differential ideals are regular differential ideals. They are radical and are the intersection of prime differential ideals that have the same parametric set (arbitrary constants and functions).
|
•
|
The non singular zeros of a differential characteristic set are the zeros for which no element of vanishes.
|
|
The non singular zeros of a characterizable differential ideal can be expanded into formal integral power series up to any order, but convergence is not guaranteed.
|
•
|
A prime differential ideal is a characterizable differential ideal for any ranking. A characterizable differential ideal is prime if its defining characteristic set is irreducible. A sufficient condition for this is that all the differential polynomials in the characteristic set have degree one in their leaders.
|
|
|
Characteristic decomposition
|
|
•
|
Any radical differential ideal can be decomposed into an intersection of characterizable differential ideals. The characterizable differential ideals entering the decomposition are called (characterizable) components and the representation obtained is called a characteristic decomposition.
|
|
This representation is not unique and does not need to be minimal.
|
|
A characteristic decomposition of a radical differential ideal allows one to test membership to .
|
•
|
The command Rosenfeld_Groebner computes a characteristic decomposition of a radical differential ideal generated by a finite set of differential polynomials. It can also compute the characteristic decomposition of a saturation.
|
•
|
The algorithm proceeds in two fundamental steps. It first computes a decomposition into regular differential ideals. The algorithm used is described in [Boulier et al. 1997]. The second step consists of computing characteristic decompositions of these regular differential ideals. The algorithm used is described in [Hubert 2000].
|
•
|
When considering the radical differential ideal generated by a unique differential polynomial, one can obtain a minimal characteristic decomposition by using the command essential_components. The algorithm used by essential_components is described in [Hubert 1999].
|
|
|
Representation of characterizable and radical differential ideals
|
|
•
|
A characterizable differential ideal is represented by a Maple table, appearing as characterizable, that records the defining characteristic set, as well as the differential polynomial ring with respect to which it was computed.
|
•
|
A radical differential ideal is representable by a characteristic decomposition, that is an intersection of characterizable differential ideals. This intersection is represented by a list of characterizable tables.
|
•
|
Characterizable and radical differential ideals are built by the function Rosenfeld_Groebner.
|
>
|
R := differential_ring(ranking=[[z,y]], derivations=[x]);
|
| (9) |
>
|
S := [-y[]+x* y[x]+y[x]^2+z[x], -z[]+x*z[x]+y[x]*z[x]];
|
| (10) |
>
|
Radical_d_ideal := Rosenfeld_Groebner(S, R);
|
| (11) |
>
|
Characterizable_d_ideal := Radical_d_ideal[1];
|
| (12) |
>
|
{indices(Characterizable_d_ideal)};
|
| (13) |
>
|
Characterizable_d_ideal[Type];
|
| (14) |
>
|
evalb(Characterizable_d_ideal[Differential_ring] = R);
|
| (15) |
|
The other entries of Characterizable_d_ideal are represented in internal notations. The entries Equations and Inequations can be read by using the commands equations and inequations or rewrite_rules .
|
•
|
If the environment variable _Env_diffalg_char is set to false, Rosenfeld_Groebner represents the radical differential ideals as an intersection of regular differential ideals.
|
|
Regular differential ideal are tables with an identical structure to characterizable differential ideals. They appear as regular.
|
|
|
See Also
|
|
diffalg(deprecated), diffalg(deprecated)[belongs_to], diffalg(deprecated)[delta_polynomial]], diffalg(deprecated)[differential_ring], diffalg(deprecated)[differential_sprem], diffalg(deprecated)[essential_components], diffalg(deprecated)[field_extension], diffalg(deprecated)[leader], diffalg(deprecated)[print_ranking], diffalg(deprecated)[Rosenfeld_Groebner], DifferentialAlgebra
|
|
References
|
|
|
Boulier, F.; Lazard, D.; Ollivier, F.; and Petitot, M. "Representation for the Radical of a Finitely Generated Differential Ideal." In Proceedings of ISSAC '95, pp. 158-166. Edited by A. H. M. Levelt. New York: ACM Press, 1995.
|
|
Boulier, F.; Lazard, D.; Ollivier, F.; and Petitot, M. "Representation for the Radical of a Finitely Generated Differential Ideal." University of Lille Research Report LIFL IT-306, Department of Computer Science, 1997.
|
|
Hubert, E. "Essential Components of an Algebraic Differential Equation." Journal of Symbolic Computation, (October/November 1999): 657-680.
|
|
Hubert, E. "Factorisation Free Decomposition Algorithms in Differential Algebra." Journal of Symbolic Computation, (May 2000): 641-662.
|
|
Kaplansky, I. An Introduction to Differential Algebra. Paris: Hermann, 1970.
|
|
Kolchin, E. Differential Algebra and Algebraic Groups. New York: Academic Press, 1973.
|
|
Ritt, J. F. Differential Algebra. New York: Dover, 1966.
|
|
|