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

Online Help

All Products    Maple    MapleSim


LinearFunctionalSystems

  

ExtendSeries

  

extend the number of terms in the series solution of a linear functional system of equations

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ExtendSeries(sol, deg)

Parameters

sol

-

formal series solution of the system which is the result of an invocation of LinearFunctionalSystems[SeriesSolution] or ExtendSeries

deg

-

positive integer; formal degree of the initial terms to extend to

Description

• 

The ExtendSeries(sol, deg) function returns the initial terms of the formal series solution sol extended to the specified formal degree deg.

  

The specified solution sol must be in the form returned by LinearFunctionalSystems[SeriesSolution] or ExtendSeries. In other words, sol must have an attribute of the special form as described in LinearFunctionalSystems[SeriesSolution].

• 

This function computes the additional terms of the series expansions using the invertible leading matrix of the matrix recurrence system corresponding to the linear functional system that was originally specified. This recurrence is the part of the special structure stored in the attribute of the given solution.

• 

The result of ExtendSeries is returned in the same form as the result of LinearFunctionalSystems[SeriesSolution] (the list of series expansions in x, corresponding to vars). The order term (for example, Ox6) is the last term in the series. The result involves arbitrary constants of the form _c1, _c2, etc., and it has an attribute of the special form as described in LinearFunctionalSystems[SeriesSolution].

• 

This function is part of the LinearFunctionalSystems package, and so it can be used in the form ExtendSeries(..) only after executing the command with(LinearFunctionalSystems). However, it can always be accessed through the long form of the command by using the form LinearFunctionalSystems[ExtendSeries](..).

Examples

withLinearFunctionalSystems:

sysdiffy1x,xy2x,diffy2x,xy3xy4x,diffy3x,xy5x,diffy4x,x2y1x2xy2xy5x,diffy5x,xx2y1x2xy3xy6x,diffy6x,xx2y2x+2y3x:

varsy1x,y2x,y3x,y4x,y5x,y6x:

solSeriesSolutionsys,vars

sol3_c2+_c5+Ox,3_c6+_c3+Ox,_c42+Ox,_c1+_c42+Ox,_c5+Ox,_c3+Ox

(1)

ExtendSeriessol,5

3_c2+_c5+x3_c6+_c3+x2_c12+x3_c2+x4_c34+_c62+x5_c120+Ox6,3x2_c2+x_c1+_c3+3_c6+x3_c3+2_c6+x4_c14+x5_c22+Ox6,_c42x_c5+x2_c32+x4_c24+x5_c65+_c310+Ox6,_c1+_c42+x6_c2+_c5+x26_c6+5_c32+x3_c1+9x4_c24+x56_c65+3_c35+Ox6,x3_c2+x_c3_c5+x4_c6+_c32+3x5_c120+Ox6,x3_c6+x2_c5+x_c4+_c3+x4_c14+x5_c22+Ox6

(2)

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

varsy1x,y2x:

solSeriesSolutionsys,vars

sol_c1+x2_c2+_c1+Ox2,x_c1+Ox2

(3)

ExtendSeriessol,5

_c1+x2_c2+_c1+xx1_c2+Ox6,x_c1+xx1_c2+Ox6

(4)

See Also

LinearFunctionalSystems[PolynomialSolution]

LinearFunctionalSystems[RationalSolution]

LinearFunctionalSystems[SeriesSolution]