Sqrfree
inert square-free factorization function
Calling Sequence
Parameters
Description
Examples
Sqrfree(a)
a
-
multivariate polynomial or a multivariate rational function
The Sqrfree function is a placeholder for representing the square-free factorization of the multivariate polynomial or rational function a over a unique factorization domain. It is used in conjunction with either mod, modp1 or evala which define the coefficient domain as described below.
The Sqrfree function returns a data structure of the form u,f1,e1,...,fn,en such that a=u⁢f1e1⁢⋯⁢fnen and fi is primitive and square-free and u is the leading coefficient of a. That is, Gcd⁡fi,∂∂xjfi=1 for all i and Gcd⁡fi,fj=1 for i≠j.
The call Sqrfree(a) mod p computes the square-free factorization of the polynomial a modulo p a prime integer. The multivariate polynomial a must have rational coefficients or coefficients from an algebraic extension of the integers modulo p.
The call modp1(Sqrfree(a), p) computes the square-free factorization of the polynomial a in the modp1 representation modulo p a prime integer.
The call evala(Sqrfree(a)) computes the square-free factorization of the polynomial or the rational function a where the coefficients of a are algebraic numbers (or functions) defined by RootOf or radicals. See evala,Sqrfree for more information.
Sqrfree⁡2⁢x2+6⁢x+6mod7
2,x2+3⁢x+3,1
Sqrfree⁡4⁢x2+4⁢x+1mod7
4,x+4,2
alias⁡α=RootOf⁡x2+x+1
α
Sqrfree⁡α⁢x3+α+1⁢x2+x+αmod2
α,x+α,3
Sqrfree⁡x2+y2+α+1mod2
1,y+x+α,2
evala⁡Sqrfree⁡x3−2⁢x−212⁢x2+2⁢212
1,x+2,1,x−2,2
evala⁡Sqrfree⁡3⁢x2+6⁢RootOf⁡x2−2⁢x+6
3,RootOf⁡_Z2−2+x,2
See Also
Factors
isqrfree
mod
modp1
RootOf
sqrfree
Download Help Document