LinearFunctionalSystems
ExtendSeries
extend the number of terms in the series solution of a linear functional system of equations
Calling Sequence
Parameters
Description
Examples
ExtendSeries(sol, deg)
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
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, O⁡x6) 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](..).
with⁡LinearFunctionalSystems:
sys≔diff⁡y1⁡x,x−y2⁡x,diff⁡y2⁡x,x−y3⁡x−y4⁡x,diff⁡y3⁡x,x−y5⁡x,diff⁡y4⁡x,x−2⁢y1⁡x−2⁢x⁢y2⁡x−y5⁡x,diff⁡y5⁡x,x−x2⁢y1⁡x−2⁢x⁢y3⁡x−y6⁡x,diff⁡y6⁡x,x−x2⁢y2⁡x+2⁢y3⁡x:
vars≔y1⁡x,y2⁡x,y3⁡x,y4⁡x,y5⁡x,y6⁡x:
sol≔SeriesSolution⁡sys,vars
sol≔3⁢_c2+_c5+O⁡x,3⁢_c6+_c3+O⁡x,−_c42+O⁡x,_c1+_c42+O⁡x,−_c5+O⁡x,_c3+O⁡x
ExtendSeries⁡sol,5
3⁢_c2+_c5+x⁢3⁢_c6+_c3+x2⁢_c12+x3⁢_c2+x4⁢_c34+_c62+x5⁢_c120+O⁡x6,3⁢x2⁢_c2+x⁢_c1+_c3+3⁢_c6+x3⁢_c3+2⁢_c6+x4⁢_c14+x5⁢_c22+O⁡x6,−_c42−x⁢_c5+x2⁢_c32+x4⁢_c24+x5⁢_c65+_c310+O⁡x6,_c1+_c42+x⁢6⁢_c2+_c5+x2⁢6⁢_c6+5⁢_c32+x3⁢_c1+9⁢x4⁢_c24+x5⁢6⁢_c65+3⁢_c35+O⁡x6,x3⁢_c2+x⁢_c3−_c5+x4⁢_c6+_c32+3⁢x5⁢_c120+O⁡x6,x3⁢_c6+x2⁢_c5+x⁢_c4+_c3+x4⁢_c14+x5⁢_c22+O⁡x6
sys≔y2⁡x⁢x2+3⁢y2⁡x⁢x+2⁢y2⁡x−2⁢y1⁡x⁢x2−4⁢y1⁡x⁢x+y1⁡x+1⁢x2+y1⁡x+1⁢x,y2⁡x+1−y1⁡x:
vars≔y1⁡x,y2⁡x:
sol≔_c1+x⁢2⁢_c2+_c1+O⁡x2,x⁢_c1+O⁡x2
_c1+x⁢2⁢_c2+_c1+x⁢x−1⁢_c2+O⁡x6,x⁢_c1+x⁢x−1⁢_c2+O⁡x6
See Also
LinearFunctionalSystems[PolynomialSolution]
LinearFunctionalSystems[RationalSolution]
LinearFunctionalSystems[SeriesSolution]
Download Help Document