Trisha Shetty (Editor)

Square free polynomial

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In mathematics, a square-free polynomial is a polynomial defined over a field (or more generally, a unique factorization domain) that does not have as a factor any square of a non-unit factor. In the important case of univariate polynomials over a field k, this means that, f k [ X ] is square-free if and only if b 2 f for every polynomial b k [ X ] of positive degree. In applications in physics and engineering, a square-free polynomial is commonly called a polynomial with no repeated roots. Such polynomials are called separable, but over a perfect field being separable is the same as being square-free.

A square-free decomposition or square-free factorization of a polynomial is a factorization into powers of square-free factors

f = a 1 a 2 2 a 3 3 a n n = k = 1 n a k k

where those of the ak that are not equal to 1 are pairwise coprime square-free polynomials. Every non-zero polynomial with coefficients in a field admits a square-free factorization, which is unique up to the multiplication of the factors by non zero constants. The square-free factorization is much easier to compute than the complete factorization into irreducible factors, and is thus often preferred when the complete factorization is not really needed, as for the partial fraction decomposition and the symbolic integration of rational fractions. Square-free factorization is the first step of the polynomial factorization algorithms which are implemented in computer algebra systems. Therefore, the algorithm of square-free factorization is basic in computer algebra.

In the case of univariate polynomials over a field, any multiple factor of a polynomial introduces a nontrivial common factor of f and its formal derivative f ′, so a sufficient condition for f to be square-free is that the greatest common divisor of f and f ′ is 1. This condition is also necessary over a field of characteristic 0 or, more generally, over a perfect field, because over such a field, every irreducible polynomial is separable, and thus coprime with its derivative.

Over a field of characteristic 0, the quotient of f by its GCD with its derivative is the product of the a i in the above square free decomposition. Over a perfect field of nonzero characteristic p, this quotient is the product of the a i such that i is not a multiple of p. Further GCD computations and exact divisions allow computing the square-free factorization (see square-free factorization over a finite field). In characteristic zero, a better algorithm is known, Yun's algorithm, which is described below. Its computational complexity is, at most, twice that of the GCD computation of the input polynomial and its derivative. More precisely, if T n is the time needed to compute the GCD of two polynomials of degree n and the quotient of these polynomial by the GCD, then 2 T n is an upper bound for the time needed to compute the square free decomposition.

There are also known algorithms for the computation of the square-free decomposition of multivariate polynomials.

Yun's algorithm

In this section we describe Yun's algorithm for the square-free decomposition of univariate polynomials over a field of characteristic 0. It proceeds by a succession of GCD computations and exact divisions.

The input is thus a non zero polynomial f, and the first step of the algorithm consists in computing the GCD a0 of f and its formal derivative f'.

If

f = a 1 a 2 2 a 3 3 a k k

is the desired factorization, we have thus

a 0 = a 2 1 a 3 2 a k k 1 , f / a 0 = a 1 a 2 a 3 a k

and

f / a 0 = i = 1 k i a i a 1 a i 1 a i + 1 a k .

If we set b 1 = f / a 0 , c 1 = f / a 0 and d 1 = c 1 b 1 , we get that

gcd ( b 1 , d 1 ) = a 1 , b 2 = b 1 / a 1 = a 2 a 3 a n ,

and

c 2 = d 1 / a 1 = i = 2 k ( i 1 ) a i a 2 a i 1 a i + 1 a k .

Iterating this process until b k + 1 = 1 we find all the a i .

This is formalized into an algorithm as follows:

The degree of c i and d i is one less than the degree of b i . As f is the product of the b i , the sum of the degrees of the b i is the degree of f . As the complexity of GCD computations and divisions increase more than linearly with the degree, it follows that the total running time of the "repeat" loop is less than the running time of the first line of the algorithm, and that the total running time of Yun's algorithm is upper bounded by twice the time needed to compute the GCD of f and f and the quotient of f and f by their GCD.

References

Square-free polynomial Wikipedia