Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DEtools[newton_polygon] - construct the Newton polygon of a LODE
Calling Sequence
newton_polygon(L, y, u)
newton_polygon(L, y, u, x = x0)
Parameters
L
-
linear homogeneous differential equation
y
unknown function to search for
u
name
x0
(optional) rational or an algebraic number or infinity
Description
The newton_polygon function constructs the Newton polygon of a linear differential operator at the point . The linear differential operator L corresponds to the differential equation . The equation must be homogeneous and linear in y and its derivatives, and its coefficients must be rational functions in the variable . 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 is assumed.
The Newton polygon of a linear differential operator at a point x0 is defined in the following way: for a rational function , denote the valuation at the point x0, that is, the lowest power in the series expansion of at : . is called the leading coefficient of at . For real numbers u,v let be the subset of defined by . Now consider a monomial of . Define as the union of for . The Newton polygon is then the lower convex hull of the set . The slopes of the Newton polygon are non-negative rational numbers, and with each slope one associates the Newton polynomial . The length of a slope is defined as the length of the projection of this slope onto the x-axis. is a polynomial in the new indeterminate u of degree . Its monomials can be computed from the points which lie exactly on the slope and the leading coefficients of the corresponding . 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 where is a slope of the Newton polygon and is the associated Newton polynomial. Note that is also called an indicial equation. The roots of 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](..).
Examples
See Also
DEtools, DEtools/DEplot_polygon, DEtools/formal_sols, DEtools/regular_parts
Download Help Document