candidate_mpoints - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Slode

  

candidate_mpoints

  

determine m-points for m-sparse power series solutions

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

candidate_mpoints(ode, var)

candidate_mpoints(LODEstr)

Parameters

ode

-

homogeneous linear ODE with polynomial coefficients

var

-

dependent variable, for example y(x)

LODEstr

-

LODEstruct data structure

Description

• 

The candidate_mpoints command determines for all positive integers m candidate points for m-sparse power series solutions of the given homogeneous linear ordinary differential equation with polynomial coefficients, called m-points.

• 

If ode is an expression, then it is equated to zero.

• 

The command returns an error message if the differential equation ode does not satisfy the following conditions.

– 

ode must be homogeneous and linear in var

– 

The coefficients of ode must be polynomial in the independent variable of var, for example, x, over the rational number field which can be extended by one or more parameters.

• 

This command returns a list of lists with three elements:

– 

an integer mi>1, the sparse order;

– 

a LODEstruct representing an mi-sparse differential equation with constant coefficients which is a right factor of the given equation;

– 

a set of candidate mi-points.

  

The list is sorted by sparse order.

• 

If for some sparse-order m the given equation has a nontrivial m-sparse right factor with constant coefficients, then the equation has m-sparse power series solutions at an arbitrary point, and these solutions are solutions of this right factor. If the set of candidate m-points is not empty, then the equation may or may not have m-sparse power series solutions at such a point, but it does not have m-sparse power series solutions at any point outside this set.

Examples

> 

with⁡Slode:

> 

ode≔2+x2⁢diff⁡y⁡x,x,x,x−2⁢diff⁡y⁡x,x,x⁢x+2+x2⁢diff⁡y⁡x,x−2⁢x⁢y⁡x

ode≔x2+2⁢ⅆ3ⅆx3y⁡x−2⁢ⅆ2ⅆx2y⁡x⁢x+x2+2⁢ⅆⅆxy⁡x−2⁢x⁢y⁡x

(1)
> 

candidate_mpoints⁡ode,y⁡x

2,LODEstruct⁡y⁡x+ⅆ2ⅆx2y⁡x,y⁡x,0

(2)

See Also

LODEstruct

Slode

Slode[candidate_points]

Slode[msparse_series_sol]