DEtools
newton_polygon
construct the Newton polygon of a LODE
Calling Sequence
Parameters
Description
Examples
newton_polygon(L, y, u)
newton_polygon(L, y, u, x = x0)
L
-
linear homogeneous differential equation
y
unknown function to search for
u
name
x0
(optional) rational or an algebraic number or infinity
The newton_polygon function constructs the Newton polygon of a linear differential operator at the point x0. The linear differential operator L corresponds to the differential equation L⁡y=0. The equation L⁡y=0 must be homogeneous and linear in y and its derivatives, and its coefficients must be rational functions in the variable x. The variable u must be a name and specifies the variable for the Newton polynomials. The variable x0 must be a rational or an algebraic number or the symbol infinity. If x0 is not passed as argument, then x0=0 is assumed.
The Newton polygon of a linear differential operator at a point x0 is defined in the following way: for a rational function f, denote v_x0⁡f the valuation at the point x0, that is, the lowest power in the series expansion of f at x0: f=f0⁢x−x0v_x0⁡f+terms of higher order. f0 is called the leading coefficient of f at x0. For real numbers u,v let Q⁡u,v be the subset of R⁢x⁢R defined by {x,y|⁢x≤u⁢and⁢y≥v}. Now consider a monomial ai⁢didxi⁢y⁡x of L. Define M⁡L as the union of Q⁡i,v_x0⁡ai−i for i=0..order⁡L. The Newton polygon is then the lower convex hull of the set M⁡L. The slopes of the Newton polygon are non-negative rational numbers, and with each slope one associates the Newton polynomial Pk⁡u. The length l⁡k of a slope k is defined as the length of the projection of this slope onto the x-axis. Pk is a polynomial in the new indeterminate u of degree l⁡kdenom⁡k. Its monomials can be computed from the points which lie exactly on the slope k and the leading coefficients of the corresponding ai's. This Newton polynomial is called "reduced characteristic polynomial" in Barkatou, "Rational Newton Algorithm for computing formal solutions of linear differential equations", ISSAC'88.
The Newton polygon is an important tool for the classification of singular points of linear differential equations, because the slopes give information on the asymptotic behavior of the solutions near the singularity. It is also used in the computation of formal solutions; see also DEtools[formal_sols] and DEtools[regular_parts].
The output is a list of entries of the form k,Pk⁡u where k is a slope of the Newton polygon and Pk is the associated Newton polynomial. Note that P0⁡u is also called an indicial equation. The roots of P0⁡u are called the exponents.
This function is part of the DEtools package, and so it can be used in the form newton_polygon(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[newton_polygon](..).
with⁡DEtools:
ode≔x7⁢diff⁡y⁡x,x,x,x,x−x+x7⁢diff⁡y⁡x,x−x9⁢y⁡x
ode≔x7⁢ⅆ4ⅆx4y⁡x−x7+x⁢ⅆⅆxy⁡x−x9⁢y⁡x
newton_polygon⁡ode,y⁡x,u
0,−u,1,u3−1
newton_polygon⁡ode,y⁡x,u,x=1
0,u4−6⁢u3+11⁢u2−6⁢u
newton_polygon⁡ode,y⁡x,u,x=∞
32,u2−1
ode≔x2+15⁢x⁢diff⁡y⁡x,x,x−x2+13⁢diff⁡y⁡x,x−x9⁢y⁡x
ode≔x2+15⁢x⁢ⅆ2ⅆx2y⁡x−x2+13⁢ⅆⅆxy⁡x−x9⁢y⁡x
newton_polygon⁡ode,y⁡x,u,x=RootOf⁡xx2+1,xx
32,32⁢u+RootOf⁡_Z2+1
See Also
DEtools/DEplot_polygon
DEtools/formal_sols
DEtools/regular_parts
Download Help Document