Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
modp1 - univariate polynomial arithmetic modulo n
Calling Sequence
modp1(e, n)
Parameters
e
-
algebraic expression
n
positive integer
Description
The modp1 function provides very efficient arithmetic and other operations in the domain of univariate polynomials over the integers modulo n written . The mod function, which supports operations in the domain of multivariate polynomials over the integers modulo n, uses modp1 for the univariate case. Hence, interactive calculations can be performed using mod.
To achieve a high level of efficiency, modp1 uses a special representation. Explicit conversions are provided for converting the Maple ``sum of products'' representation to and from this representation and also from a list of integers representing a polynomial to and from this representation. Knowledge of this representation is not required by the user to use modp1. If the modulus n is sufficiently small, arithmetic in Zn is performed directly by the hardware instead of using multi-precision integer arithmetic and the data representation is an array of machine integers. The modp1(Prime(1)) command returns the largest prime for which arithmetic is done in the hardware. On a 32-bit machine, this is the prime 46327. On a 64-bit machine, this is the prime 3037000453.
A typical use of modp1 is modp1(Eval(a, x), n), which evaluates the modp1 polynomial a at the value x (an integer) modulo n. The modp1 function accepts the following functions, whose names are also protected global names.
Add
Chrem
Coeff
Constant
ConvertIn
ConvertOut
Degree
Det
Diff
Divide
Embed
Eval
Factors
Gcd
Gcdex
Indeterminate
Interp
Irreduc
IsConstant
IsOne
IsZero
Lcm
Lcoeff
Ldegree
Modulus
Monomial
Multiply
One
Power
Powmod
Prem
Prime
Quo
Randpoly
Rem
Resultant
Roots
Smith
Shift
Sqrfree
Subtract
Tcoeff
Translate
UNormal
Zero
The Add function is n-ary. The Subtract function is unary or binary. The Zero and One nullary functions create the and 1 modp1 polynomials. (The One and Zero functions require one argument, the indeterminate variable.) The Constant function creates a modp1 polynomial for the given integer constant. (The Constant function requires a second argument, the indeterminate variable.) The Multiply function is binary. Note that scalar multiplication requires explicit conversion using the Constant function.
The Degree function computes the degree. The Ldegree function computes the low degree. The Coeff function computes the coefficient. The Lcoeff function computes the leading coefficient. The Tcoeff function computes the trailing Coefficient. The Diff function computes the derivative. The UNormal function computes the monic part or unit normal part. Note that Degree returns 0 and Ldegree returns 1 for the zero modp1 polynomial. The Randpoly function takes a degree as an argument and generates a polynomial of the given degree with random coefficients modulo n.
The ConvertIn and ConvertOut functions convert to and from the modp1 representation. The modp1(ConvertIn(b, x), n) command converts from a univariate polynomial b in x over the integers to a modp1 polynomial modulo n. The modp1(ConvertIn([a0, a1, ..., ak], x), n) command converts from the given list of integers representing the polynomial to a modp1 polynomial. The ConvertOut function does the reverse of ConvertIn.
Note that unlike the mod function, modp1 arithmetic operations do not take the variable as an argument. For example, the calling sequences of the Rem operation are Rem(a, b) and Rem(a, b, 'q'). Calling sequences are similar for Coeff, Degree, Diff, Discrim, Gcdex, Interp, Lcoeff, Ldegree, Powmod, Prem, Quo, Resultant, Smith, and Tcoeff.
The Constant, Interp, Monomial, One, Randpoly, and Zero functions all expect their last argument to be the indeterminate variable. The indeterminate of an existing modp1 polynomial can be queried using the Indeterminate function. The modulus can be queried using Modulus.
The IsZero, IsOne, and IsConstant boolean functions must be used to check against an integer constant value. The zero polynomial is not the same as the zero modp1 polynomial.
Separate help exists for most of the remaining functions.
Examples
Error, invalid terms in product: modp1(ConvertIn(6*x^10+9*x^9+5*x^8+x^7+10*x^6+3*x^5+5*x^4+4*x^3+10*x^2+7,x),11)
See Also
mod, modp2
Download Help Document