Sqrfree - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Sqrfree

inert square-free factorization function

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Sqrfree(a)

Parameters

a

-

multivariate polynomial or a multivariate rational function

Description

• 

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.

Examples

> 

Sqrfree⁡2⁢x2+6⁢x+6mod7

2,x2+3⁢x+3,1

(1)
> 

Sqrfree⁡4⁢x2+4⁢x+1mod7

4,x+4,2

(2)
> 

alias⁡α=RootOf⁡x2+x+1

α

(3)
> 

Sqrfree⁡α⁢x3+α+1⁢x2+x+αmod2

α,x+α,3

(4)
> 

Sqrfree⁡x2+y2+α+1mod2

1,y+x+α,2

(5)
> 

evala⁡Sqrfree⁡x3−2⁢x−212⁢x2+2⁢212

1,x+2,1,x−2,2

(6)
> 

evala⁡Sqrfree⁡3⁢x2+6⁢RootOf⁡x2−2⁢x+6

3,RootOf⁡_Z2−2+x,2

(7)

See Also

Factors

isqrfree

mod

modp1

RootOf

sqrfree