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

Online Help

All Products    Maple    MapleSim


LREtools

  

polysols

  

find polynomial solutions of Linear Recurrence equations

  

ratpolysols

  

find rational solutions of Linear Recurrence equations

  

hypergeomsols

  

find hypergeometric solutions of Linear Recurrence equations

  

dAlembertiansols

  

find d'Alembertian solutions of Linear Recurrence equations

 

Calling Sequence

Parameters

Description

Options

Examples

References

Calling Sequence

polysols(problem,output=type)

ratpolysols(problem,output=type)

hypergeomsols(problem,output=type)

dAlembertiansols(problem,output=type)

Parameters

problem

-

problem statement or RESol

output=type

-

(optional) where type is one of basis, basis[var], onesol, gensol, or anysol and "var" is a name. The words output, basis, onesol, gensol and anysol must be used literally

Description

• 

The commands find the polynomial, rational, hypergeometric and d'Alembertian solutions of linear recurrence equations with rational polynomial coefficients.

  

Note that only LREtools[polysols] and LREtools[ratpolysols] are capable of finding solutions for a system of recurrences. Both LREtools[hypergeomsols] and LREtools[dAlembertiansols] can obtain recurrence solutions only for a single equation in a single recurrence variable.

Options

• 

Optionally, you can specify output=basis, output=basis[var], output=onesol, output=gensol, or output=anysol.

  

output=basis

  

Requests that independent solutions be provided in the form of a list of independent solutions (the basis). If the input recurrence is homogeneous, then the independent solutions are output in a list as [sol1,sol2,...,soln]. If the input recurrence is inhomogeneous, then the output is a list containing the list of independent solutions in the first element, and a particular solution in the second, as [[sol1,sol2,...,soln],part].

  

output=basis[var]

  

This is related to the output=basis form, but rather than providing the output in list form, it is provided as a single algebraic expression that is a var-linear combination of the independent solutions plus any particular solution for the inhomogeneous case. The independent solutions will have indexed coefficients of the form var0,var1,...,varn, where var is as provided in the output=basis[var] option. This is primarily provided for backward compatibility, as the default operation of the basis output used to be as though output=basis[_C] was provided.

  

output=onesol

  

This specifies that only a single solution be provided as output. In general, for inhomogeneous recurrences this is a particular solution for the problem, while for homogeneous recurrences this is simply one of the independent solutions for the recurrence.

  

output=gensol

  

This specifies that the fully general solution should be obtained for the problem, and will fail if unable to obtain as many independent solutions as the order of the recurrence (regardless of initial conditions). This is the default for systems of recurrences, and for any single recurrences specified in RESol form. The initial conditions are applied once the full solution is obtained.

  

output=anysol

  

This specifies that if a solution can be obtained that satisfies the initial conditions, then it should be returned regardless of the number of independent solutions obtained. For example, if no independent solutions can be obtained, but no initial conditions have been specified, then the particular solution is output. This is the default for any single recurrences that are not specified in RESol form.

• 

For the definition of the format of a problem, see the help page for LREtools[REcreate].

• 

As mentioned, the functions polysols and ratpolysols can also solve problems when the input is a system of recurrence relations. They invoke LinearFunctionalSystems[PolynomialSolution] and LinearFunctionalSystems[RationalSolution], respectively.

Examples

withLREtools:

recnn+1an+22nn+10an+1+n+9n+10an=0:

polysolsrec,an,,output=basis

n10750n815120n7140847n6740880n52304100n44142880n33904704n21451520n,n9+36n8+546n7+4536n6+22449n5+67284n4+118124n3+109584n2+40320n

(1)

recan+22n+1an+1n+nann1=nn+1:

polysolsrec,an,,output=onesol

19n4518n319n2+518

(2)

Note: This fails because the general solution cannot be obtained.

polysolsrec,an,,output=gensol

But with the default, the result is

polysolsrec,an,

n495n318n29+1118+a2n13a2

(3)

recn+1n+3an+12nn+2an+n2an1=an:

ratpolysolsrec,an,,output=basis

1n+2n+1

(4)

recn+4an+2+an+1n+1an:

hypergeomsolsrec,an,a0=1,a1=3

8n+2n+12−1n2n+3n+1n+2

(5)

recn1an+3+2nan+1+n2an+2=1n+2:

dAlembertiansolsrec,an,,output=basis

1,n1=0n11n1+1,n1=0n1n2=0n111n2+2n1+1

(6)

sysy2xx2+3y2xx+2y2x2y1xx24y1xx+y1x+1x2+y1x+1x,y2x+1y1x:

varsy1x,y2x:

polysolssys,vars,,output=basis

_C1+x_C1+2_C2+xx1_C2,x_C1+xx1_C2

(7)

References

  

The algorithm Maple uses to compute hypergeometric solutions is based on the following paper.

  

van Hoeij, M. "Finite Singularities and Hypergeometric Solutions of Linear Recurrence Equations." J. Pure Appl. Algebra. Vol. 139. (1999): 109-131.

See Also

hypergeom

LinearFunctionalSystems[PolynomialSolution]

LinearFunctionalSystems[RationalSolution]

LREtools

LREtools[REcreate]

RESol

rsolve