Cantor–Zassenhaus algorithm

In computational algebra, the Cantor–Zassenhaus algorithm is a method for factoring polynomials over finite fields (also called Galois fields).

The algorithm consists mainly of exponentiation and polynomial GCD computations. It was invented by David G. Cantor and Hans Zassenhaus in 1981.[1]

It is arguably the dominant algorithm for solving the problem, having replaced the earlier Berlekamp's algorithm of 1967. It is currently implemented in many computer algebra systems.

Overview edit

Background edit

The Cantor–Zassenhaus algorithm takes as input a square-free polynomial   (i.e. one with no repeated factors) of degree n with coefficients in a finite field   whose irreducible polynomial factors are all of equal degree (algorithms exist for efficiently factoring arbitrary polynomials into a product of polynomials satisfying these conditions, for instance,   is a squarefree polynomial with the same factors as  , so that the Cantor–Zassenhaus algorithm can be used to factor arbitrary polynomials). It gives as output a polynomial   with coefficients in the same field such that   divides  . The algorithm may then be applied recursively to these and subsequent divisors, until we find the decomposition of   into powers of irreducible polynomials (recalling that the ring of polynomials over any field is a unique factorisation domain).

All possible factors of   are contained within the factor ring  . If we suppose that   has irreducible factors  , all of degree d, then this factor ring is isomorphic to the direct product of factor rings  . The isomorphism from R to S, say  , maps a polynomial   to the s-tuple of its reductions modulo each of the  , i.e. if:

 

then  . It is important to note the following at this point, as it shall be of critical importance later in the algorithm: Since the   are each irreducible, each of the factor rings in this direct sum is in fact a field. These fields each have degree  .

Core result edit

The core result underlying the Cantor–Zassenhaus algorithm is the following: If   is a polynomial satisfying:

 
 

where   is the reduction of   modulo   as before, and if any two of the following three sets is non-empty:

 
 
 

then there exist the following non-trivial factors of  :

 
 
 

Algorithm edit

The Cantor–Zassenhaus algorithm computes polynomials of the same type as   above using the isomorphism discussed in the Background section. It proceeds as follows, in the case where the field   is of odd-characteristic (the process can be generalised to characteristic 2 fields in a fairly straightforward way.[2] Select a random polynomial   such that  . Set   and compute  . Since   is an isomorphism, we have (using our now-established notation):

 

Now, each   is an element of a field of order  , as noted earlier. The multiplicative subgroup of this field has order   and so, unless  , we have   for each i and hence   for each i. If  , then of course  . Hence   is a polynomial of the same type as   above. Further, since  , at least two of the sets   and C are non-empty and by computing the above GCDs we may obtain non-trivial factors. Since the ring of polynomials over a field is a Euclidean domain, we may compute these GCDs using the Euclidean algorithm.

Applications edit

One important application of the Cantor–Zassenhaus algorithm is in computing discrete logarithms over finite fields of prime-power order. Computing discrete logarithms is an important problem in public key cryptography. For a field of prime-power order, the fastest known method is the index calculus method, which involves the factorisation of field elements. If we represent the prime-power order field in the usual way – that is, as polynomials over the prime order base field, reduced modulo an irreducible polynomial of appropriate degree – then this is simply polynomial factorisation, as provided by the Cantor–Zassenhaus algorithm.

Implementation in computer algebra systems edit

The Cantor–Zassenhaus algorithm is implemented in the PARI/GP computer algebra system as the factorcantor() function.

See also edit

References edit

  1. ^ Cantor, David G.; Zassenhaus, Hans (April 1981), "A new algorithm for factoring polynomials over finite fields", Mathematics of Computation, 36 (154): 587–592, doi:10.1090/S0025-5718-1981-0606517-5, JSTOR 2007663, MR 0606517
  2. ^ Elia, Michele; Schipani, Davide (2015), "Improvements on the Cantor–Zassenhaus factorization algorithm", Mathematica Bohemica, 140 (3), Institute of Mathematics, Czech Academy of Sciences: 271–290, arXiv:1012.5322, doi:10.21136/mb.2015.144395

External links edit