diffalg(deprecated)/power_series_solution - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : diffalg(deprecated)/power_series_solution

diffalg

  

power_series_solution

  

expand the non-singular zero of a characterizable differential ideal into integral power series

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

power_series_solution (point, order, J, 'syst', 'params')

Parameters

point

-

list or set of names or equations

order

-

non-negative integer

J

-

characterizable differential ideal

syst

-

(optional) name

params

-

(optional) name

Description

• 

Important: The diffalg package has been deprecated. Use the superseding package DifferentialAlgebra instead.

• 

The function power_series_solution computes a formal integral power series solution of the differential system equations J=0, inequations J0. Such a system is formally integrable. See the last example below.

• 

The parameter point furnishes the point of expansion of the formal power series. It is a set or a list of equations x=v where x is one of the derivation variables  and v is its value.

  

If point is a singular point of equations (J), then power_series_solution returns FAIL. Nevertheless, this does not mean that no formal power series solution exists at that point.

• 

When point is not singular, the series is truncated at the order given by the parameter order. They  could be expanded up to any order, though convergence is not guaranteed.

  

The result is presented as a list of equations ui=six1...xm, where the ui are the differential indeterminates and the si are series in the derivation variables.

• 

The series involve parameters corresponding to initial conditions to be given.

  

The parameters appear as  _Cu, where u is a differential indeterminate if it represents the value of the solution at point, or _Cu_x, where  x is some derivation variable, if it represents the value of the value of the first derivative of u according to x at point.

  

The parameters  must satisfy a triangular system of polynomial equations and inequations given by syst in terms of the parameters involved in the power series solution.

  

If present, the variable params receives the subset of the parameters involved in the power series solution that can almost be chosen arbitrarily if not for some inequations in syst.

• 

If J is a radical differential ideal represented by a list of characterizable differential ideals, the function power_series_solution is mapped on its component.

• 

The command with(diffalg,power_series_solution) allows the use of the abbreviated form of this command.

Examples

Important: The diffalg package has been deprecated. Use the superseding package DifferentialAlgebra instead.

withdiffalg:

Rdifferential_ringderivations=x,ranking=u,v

RODE_ring

(1)

p1ux2v;p2vx24v

p1ux2v

p2vx24v

(2)

JRosenfeld_Groebnerp1,p2,vx,R

Jcharacterizable

(3)

solpower_series_solutionx=0,50,J1,syst,params

solux=_Cu+x_Cu_x+x2_Cv_x4_Cu_x,vx=x_Cv_x+x2+_Cv

(4)

syst;params

_Cu_x2_Cv=0,_Cv_x24_Cv=0,_Cu_x0,_Cv_x0

_Cv

(5)

initial_cond_Cv=c2,_Cu_x=c,_Cv_x=2c,_Cu=u0

initial_cond_Cv=c2,_Cu_x=c,_Cv_x=2c,_Cu=u0

(6)

subsinitial_cond,syst

0=0,0=0,c0,2c0

(7)

solsimplifysubsinitial_cond,sol

solux=u0+xc12x2,vx=cx2

(8)

Let us explain now why, in general, we have to start from a characterizable differential system instead of any differential system. Consider the  differential system given by these two differential polynomials.

Rdifferential_ringranking=u,derivations=x,y:

p1ux24u;p2uyu

p1ux24u

p2uyu

(9)

We are looking for a solution starting as:

ux,y=u0,0+xux0,0+yuy0,0+x2ux,x0,02+xyux,y0,0

ux,y=u0,0+xux0,0+yuy0,0+x2ux,x0,02+xyux,y0,0

(10)

It seems that we can choose  an initial condition u0,0=c2 (c0) and that, by differentiating the equations, all the coefficients in the expansion can be  expressed in terms of c.

The first terms do not lead to any problem:

solvesubsu=c2,ux=ux0,0,uy=uy0,0,ux,x=ux,x0,0,p1,p2,differentiatep1,x,R,ux0,0,uy0,0,ux,x0,0

ux0,0=2c,uy0,0=c2,ux,x0,0=2,ux0,0=2c,uy0,0=c2,ux,x0,0=2

(11)

To compute the next term we can either differentiate p1 or p2. The problem is that the results obtained are not compatible.

solvesubsux,y=ux,y0,0,ux=2c,uy=c2,differentiatep1,y,R,ux,y0,0

ux,y0,0=c

(12)

solvesubsux,y=ux,y0,0,ux=2c,uy=c2,differentiatep2,x,R,ux,y0,0

ux,y0,0=2c

(13)

The system p1=0,p2=0 is not formally integrable as it stands. The only solution of the system is:

JRosenfeld_Groebnerp1,p2,R

Jcharacterizable

(14)

rewrite_rulesJ

u=0

(15)

power_series_solutionx,y,1000,J1

ux,y=0

(16)

See Also

diffalg(deprecated)

diffalg(deprecated)/differential_algebra

diffalg(deprecated)/differential_ring

diffalg(deprecated)/initial_conditions

diffalg(deprecated)/Rosenfeld_Groebner

DifferentialAlgebra[PowerSeriesSolution]

simplify

solve

subs