Puneet Varma (Editor)

Polynomial decomposition

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

In mathematics, a polynomial decomposition expresses a polynomial f as the functional composition g h of polynomials g and h, where g and h have degree greater than 1. Algorithms are known for decomposing polynomials in polynomial time.

Contents

Polynomials which are decomposable in this way are composite polynomials; those which are not are prime or indecomposable polynomials (not to be confused with irreducible polynomials, which cannot be factored into products of polynomials).

Examples

In the simplest case, one of the polynomials is a monomial. For example,

f = x 6 3 x 3 + 1

decomposes into

g = x 2 3 x + 1 and h = x 3

since

f ( x ) = ( g h ) ( x ) = g ( h ( x ) ) = g ( x 3 ) = ( x 3 ) 2 3 ( x 3 ) + 1.

Less trivially,

x 6 6 x 5 + 21 x 4 44 x 3 + 68 x 2 64 x + 41 = ( x 3 + 9 x 2 + 32 x + 41 ) ( x 2 2 x ) .

Uniqueness

A polynomial may have distinct decompositions into indecomposable polynomials where f = g 1 g 2 g m = h 1 h 2 h n where g i h i for some i . The restriction in the definition to polynomials of degree greater than one excludes the infinitely many decompositions possible with linear polynomials.

Joseph Ritt proved that m = n , and the degrees of the components are the same, but possibly in different order; this is Ritt's polynomial decomposition theorem. For example, x 2 x 3 = x 3 x 2 .

Applications

A polynomial decomposition may enable more efficient evaluation of a polynomial. For example,

x 8 + 4 x 7 + 10 x 6 + 16 x 5 + 19 x 4 + 16 x 3 + 10 x 2 + 4 x 1 = ( x 2 2 ) ( x 2 ) ( x 2 + x + 1 )

can be calculated with only 3 multiplications using the decomposition, while Horner's method would require 7.

A polynomial decomposition enables calculation of symbolic roots using radicals, even for some irreducible polynomials. This technique is used in many computer algebra systems. For example, using the decomposition

x 6 6 x 5 + 15 x 4 20 x 3 + 15 x 2 6 x 1 = ( x 3 2 ) ( x 2 2 x + 1 ) ,

the roots of this irreducible polynomial can be calculated as

1 ± 2 1 / 6 , 1 ± 1 ± 3 i 2 1 / 3 .

Even in the case of quartic polynomials, where there is an explicit formula for the roots, solving using the decomposition often gives a simpler form. For example, the decomposition

x 4 8 x 3 + 18 x 2 8 x + 2 = ( x 2 + 1 ) ( x 2 4 x + 1 )

gives the roots

2 ± 3 ± i

but straightforward application of the quartic formula gives equivalent results but in a form that is difficult to simplify and difficult to understand:

9 ( 8 10 i 3 3 / 2 + 72 ) 2 / 3 + 36 ( 8 10 i 3 3 / 2 + 72 ) 1 / 3 + 156 ( 8 10 i 3 3 / 2 + 72 ) 1 / 3 6 ( 8 10 i 3 3 / 2 + 72 ) 1 / 3 52 3 ( 8 10 i 3 3 / 2 + 72 ) 1 / 3 + 8 2 + 2 .

Algorithms

The first algorithm for polynomial decomposition was published in 1985, though it had been discovered in 1976 and implemented in the Macsyma computer algebra system. That algorithm took worst-case exponential time but worked independently of the characteristic of the underlying field.

More recent algorithms ran in polynomial time but with restrictions on the characteristic.

The most recent algorithm calculates a decomposition in polynomial time and without restrictions on the characteristic.

References

Polynomial decomposition Wikipedia


Similar Topics