dispersion - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LREtools

  

dispersion

  

compute dispersion of two polynomials

  

autodispersion

  

compute self-dispersion of a polynomial

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

dispersion(p1, p2, n)

dispersion(p1, p2, n, 'maximal')

autodispersion(p1, n)

Parameters

p1, p2

-

polynomials in n with any coefficient type

n

-

indeterminate

Description

• 

dispersion computes the set of non-negative integers i such that gcdLREtoolsshiftp1,n,i,p21.  If there are no such integers, the function returns FAIL. Effectively, the dispersion measures the integers that can be added to the indeterminate in p1 and get a polynomial that has a common factor with p2.

• 

If any of the polynomials contain parameters, then the returned answer is the generic dispersion, in other words the dispersion of the polynomials obtained by replacing the parameters by random numbers.  As such, the answer returned will be subject to specialization problems.

• 

The optional argument 'maximal' can be used to indicate that only the maximal dispersion is wanted.  Returns FAIL if there are no such integers.

• 

autodispersion computes dispersion(p1, subs(var=var-1, p1), n). This function is provided as this quantity can be computed more efficiently than the equivalent call to dispersion.

• 

This notion originated in the works of Abramov.  The algorithm used is based on the work of Yiu-Kwong Man and Francis J. Wright. (See References).

Examples

withLREtools:

dispersionx,x+4,x

4

(1)

dispersionx2+2,x6,x

FAIL

(2)

dispersionx1xa,x7x53,x

FAIL

(3)

dispersionx7x53,x1xa,x

6

(4)

dispersionx7x53,x1xa,x,maximal

6

(5)

dispersionx151,x+1151,x

1

(6)

References

  

Abramov, S.A..  "On the summation of rational functions."  USSR Comp. Math. Phys. 11.  (1971): 324-330.

  

Abramov, S.A..  "Rational solutions of linear differential and difference equations with polynomial coefficients."  USSR Comp. Math. Phys. 29.  (1989): 7-12.

  

Man, Yiu-Kwong, and Wright, Francis J.  "Fast  Polynomial Dispersion Computation and its Application to Indefinite Summation."  Proceedings of ISSAC '94:  175-180

See Also

factors

gcd

LREtools

resultant

roots