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

Online Help

All Products    Maple    MapleSim


LREtools

  

GeneralizedExponents

  

compute the generalized exponents of a difference operator

 

Calling Sequence

Parameters

Description

Examples

References

Compatibility

Calling Sequence

GeneralizedExponents(L, K)

GeneralizedExponents(L, x, tau, K)

Parameters

L

-

linear difference operator

x

-

name for the independent variable

tau

-

name for the shift operator

K

-

(optional) set of algebraic extensions

Description

• 

If E is the shift operator, then a difference operator L = adEd + ... + a0 represents a recurrence relation adxux+d + ... + a0xux = 0. A generalized exponent of L is an algebraic expression that encodes the asymptotic behavior (as x -> ) of a solution of L. A precise definition is found in section 4 in the reference below, but a description in terms of examples is given here.

• 

A non-zero solution u of L corresponds to a first-order right-hand factor Er of L where r = Euu = ux+1ux. If r is a rational function then u is called a hypergeometric solution but that is not assumed here.

• 

The asymptotic behavior of u as x ->  is determined by the asymptotic behavior of r as x -> , which in turn can be represented with a series expansion at x=. Ignoring logarithmic terms, this expansion takes the form r = cxv (1 + c1x1n + c2x2n + ...) for some constants c, c1, c2, ..., a rational number v, and positive integer n.

• 

The only terms cixin in this sum with a significant contribution to the asymptotic behavior of u are terms with in1. Discarding terms with 1<in and logarithmic terms, what remains is the generalized exponent e := cxv (1 + c1x1n + c2x2n + ... cnx) for a solution u.

• 

For example, if u is a polynomial solution of degree N, then u  = constant  (xN + less dominant terms). Then Euu = 1 + Nx + less dominant terms, and so e=1+Nx is the generalized exponent of u.

• 

If u=cx then Euu=c, so in this case the generalized exponent of u is c. If u=Γx then Euu=x and so e=x in this example.

• 

Multiplying solutions corresponds to multiplying generalized exponents (and deleting terms cixin with 1<in). So if u=cxxNΓxv is a solution of L, then e=cxv1+Nx is a generalized exponent of L. This is used in LREtools[hypergeomsols] to narrow the search.

• 

Fractional powers of x can only appear if L has order > 1 because n is at most the order. The GeneralizedExponents command will represent e in the form T11+T2  ...  1+Tk1+Nx where T1=cxv for some constant c and rational number v. Each T2, T3, ... is of the form cixin for some constant ci and rational number 0 < in < 1, and will be given implicitly in the form of an equation. In the output, each e is presented as a list, in which each variable is T1, T2, ... is defined in terms of prior variables. The notation N = list means that N runs through all elements of that list, which may contain duplicates because generalized exponents have multiplicities.

• 

Counting with multiplicities, the number of generalized exponents will be equal to the order of L, however, the algorithm will only give one e in every conjugacy class over C((1x)), where C is the smallest field of constants that contains the coefficients of L as well as the extensions in the optional argument K.

• 

The generalized exponents of any right-factor R of L form a subset of the generalized exponents of L. This is used to compute right-factors efficiently, and makes it possible to quickly compute degree-bounds for right-factors of L.

Examples

withLREtools&colon;

LE2x

LE2x

(1)

geGeneralizedExponentsL&comma;x&comma;E

geT11+Nx&comma;T12=x&comma;N=14

(2)

ege1

eT11+Nx&comma;T12=x&comma;N=14

(3)

The optional argument K was omitted, so the field of constants is Q here. The equation T1^2 = x has two solutions, and so although the output lists only one e, it represents T1  (1 - (1/4)/x) for both T1 = x^(1/2) and for T1 = -x^(1/2). Counted this way, the number of generalized exponents matches the order of the input.

The names for the independent variable and the shift operator may be omitted from the input when they have been assigned to _Env_LRE_x and _Env_LRE_tau:

_Env_LRE_xx

_Env_LRE_xx

(4)

_Env_LRE_tauE

_Env_LRE_tauE

(5)

GeneralizedExponentsL

T11+Nx&comma;T12=x&comma;N=14

(6)

Any operator with L as right-factor will have L's generalized exponents (for left factors, this holds for terms other than the N/x term). This helps to detect factors efficiently.

L2LCLML&comma;E2x1&comma;E4+E3+2E2x+x2

L2256x6+2784x5+11505x4+22536x3+20923x2+7496x+122E8+256x6+2912x5+12713x4+26588x3+27269x2+12484x+1766E7+768x69280x542905x495556x3106161x254352x9266E6+512x78256x653482x5178405x4326480x3323499x2159312x29766E5+512x88896x762434x6226115x5443306x4433839x3121064x2+99674x+57908E4+256x8+4960x7+40505x6+181387x5+485301x4+791893x3+768780x2+407034x+90552E3+256x84800x737619x6160764x5408389x4627288x3562190x2263264x47544E2+128x82232x716612x668782x5172684x4268054x3250364x2128464x27744E+256x10+5088x9+42737x8+197951x7+552319x6+949181x5+979382x4+553718x3+131244x2

(7)

GeneralizedExponentsL2

T11+Nx&comma;T12=x&comma;N=14&comma;14&comma;T11+T21+T31+T41+Nx&comma;T12=x&comma;T22=14T1&comma;T3=14T1&comma;T4=31128xT2&comma;N=4364

(8)

This contains the generalized exponents of each right-factor of L2, see

GeneralizedExponentsE2x1

T11+Nx&comma;T12=x&comma;N=14

(9)

and

GeneralizedExponentsE4+E3+2E2x+x2

T11+T21+T31+T41+Nx&comma;T12=x&comma;T22=14T1&comma;T3=14T1&comma;T4=31128xT2&comma;N=4364

(10)

References

  

Y. Cha, M. van Hoeij, G. Levy.  "Solving Recurrence Relations using Local Invariants." ISSAC'2010 Proceedings.

Compatibility

• 

The LREtools[GeneralizedExponents] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

LREtools

LREtools[hypergeomsols]

LREtools[LCLM]

LREtools[RightFactors]