modp2
bivariate polynomial arithmetic modulo n
Calling Sequence
Parameters
Description
Examples
modp2(e, p)
e
-
algebraic expression
p
prime integer
The modp2 function offers fast arithmetic for bivariate polynomials over the integers modulo p, written Zp[x,y].
To achieve its efficiency, modp2 uses a special representation. Explicit conversions are provided for converting the Maple ``sum of products'' representation to and from this representation. Knowledge of this representation is not required by the user in order to use modp2. Also, some of the Maple mod functions already take advantage of the modp2 routines.
The actual representation consists of a list of modp1 polynomials representing the coefficients of the main variable.
A typical use of modp2 would be modp2(Add(a, b), p), meaning add the modp2 polynomial a and the modp2 polynomial b together modulo p and return the result in the form of another modp2 polynomial. The modp2 function accepts the following functions, whose names are also protected global names.
Add
Coeff
Content
Constant
ConvertIn
ConvertOut
Degree
Diff
Divide
Eval
Factors
RingMultiply
Gcd
Lcm
Multiply
One
Prem
Pquo
Power
Primpart
Randpoly
Sqrfree
TotalDegree
Unit
VarSwap
Zero
The Add function is n-ary. The Zero and One nullary functions create the 0 and 1 modp2 polynomials. The Constant function creates a modp2 polynomial for the given integer constant. The Multiply function is n-ary. Scalar multiplication can be done using RingMultiply(n, a).
The Degree function computes the degree. The TotalDegree function computes the total degree in both variables. The Coeff function computes any coefficient. The Diff function computes the derivative. The Randpoly function takes two degrees as arguments and generates a polynomial of the given degrees with random coefficients modulo p.
The Eval function evaluates one indeterminate of the polynomial for a specific value. The indeterminate to evaluate can be specified as the second argument (followed by the evaluation constant). If the indeterminate is left out, the main variable is evaluated
The ConvertIn and ConvertOut functions are used to convert to and from the modp2 representation. The modp2(ConvertIn(b, x, y), p) command converts from a bivariate polynomial b in x and y over the integers to a modp2 polynomial modulo p. The ConvertOut function does the reverse of ConvertIn.
Note that unlike the mod function, modp2 arithmetic operations do not take the variable as a name. Instead, 1 means take the main variable, x and 2 means use the second variable, y. If the variable argument is left out, the main variable is assumed. For example, the calling sequences of the Diff operation are Diff(a, 1), Diff(a, 2), and Diff(a). Calling sequences are similar for Coeff, Degree, Prem, and Pquo.
p≔11
a≔x4⁢y2−1
a≔modp2⁡ConvertIn⁡a,x,y,p
a≔x4⁢y2+10mod11
modp2⁡ConvertOut⁡a,x,y,p
x4⁢y2+10
b≔modp2⁡Randpoly⁡3,4,x,y,p
b≔x3⁢y4+3⁢x3⁢y3+7⁢x2⁢y4+7⁢x3⁢y2+4⁢x2⁢y3+3⁢x⁢y4+10⁢x3⁢y+9⁢x2⁢y2+5⁢x⁢y3+6⁢y4+2⁢x3+10⁢x2⁢y+4⁢x⁢y2+9⁢y3+x2+10⁢x⁢y+5⁢y2+y+10mod11
modp2⁡Prem⁡a,b,p
2⁢x2⁢y10+9⁢x2⁢y9+4⁢x⁢y10+3⁢x2⁢y8+9⁢x⁢y9+9⁢y10+4⁢x2⁢y7+x⁢y8+10⁢y9+6⁢x2⁢y6+3⁢y8+2⁢x2⁢y5+x⁢y6+8⁢y7+10⁢x2⁢y4+8⁢x⁢y5+5⁢y6+3⁢x⁢y4+2⁢y5+x2⁢y2+7⁢x⁢y3+3⁢y4+2⁢x⁢y2+4⁢y3+3⁢y2+4⁢y+7mod11
c≔modp2⁡Diff⁡a,p
c≔4⁢x3⁢y2mod11
modp2⁡ConvertOut⁡c,x,y,p
4⁢x3⁢y2
d≔modp2⁡Diff⁡a,2,p
d≔2⁢x4⁢ymod11
modp2⁡ConvertOut⁡d,x,y,p
2⁢x4⁢y
modp2⁡Gcd⁡a,d,p
1mod11
See Also
mod
modp1
type,zppoly
Download Help Document