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
SDMPolynom
Description
Sparse Distributed Multivariate Polynomial data structure is a dedicated data structure to represent polynomials. This data structure provides more efficient basic polynomial arithmetic than the generic sum. For example, the command a := SDMPolynom(x^3+5*x^2+11*x+15,x); creates the polynomial
This is a univariate polynomial in the variable x with integer coefficients.
Multivariate polynomials, and polynomials over other number rings and fields are constructed similarly. For example, a := SDMPolynom(x*y^3+sqrt(-1)*y+y/2,[x,y]); creates
This is a bivariate polynomial in the variables x and y whose coefficients involve the imaginary number , which is denoted by capital I in Maple.
The type function can be used to test for polynomials. For example the command type(a, SDMPolynom) tests whether the expression a is a polynomial in the variable x. For details, see type[SDMPolynom].
Polynomials in Maple are sorted in lexicographic order, that is, in descending power of the first indeterminate.
The remainder of this file contains a list of operations that are available for polynomials.
Utility Functions for Manipulating Polynomials
coeff
extract a coefficient of a polynomial
coeffs
construct a sequence of all the coefficients
degree
the degree of a polynomial
lcoeff
the leading coefficient
ldegree
the low degree of a polynomial
tcoeff
the trailing coefficient
indets
the indeterminate of a polynomial
Arithmetic Operations on Polynomials
All the arithmetic operations on polynomials are wrapped inside the constructor SDMPolynom.
+,-
addition and subtraction
*,^
multiplication and exponentiation
Prem
pseudo-remainder of two polynomials
Mathematical Operations on Polynomials
diff
differentiate a polynomial
subs
evaluate a polynomial
eval
Miscellaneous Polynomial Operations
norm
norm of a polynomial
maxnorm
maximum norm of a polynomial
map
mapping an operation on the coefficients of a polynomial
convert
converting Polynomials to a Sum of Products
Thread Safety
The SDMPolynom command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
See Also
convert, indets, polynomial, series, type, type[SDMPolynom]
Download Help Document