PrimitiveRatDE(F, UP, L, LQ)¶
oderf.spad line 73 [edit on github]
F: Join(Field, CharacteristicZero, RetractableTo Fraction Integer)
PrimitiveRatDE
provides functions for in-field solutions of linear ordinary differential equations, in the transcendental case. The derivation to use is given by the parameter L
.
- denomLODE: (L, Fraction UP) -> Union(UP, failed)
denomLODE(op, g)
returns a polynomiald
such that any rational solution ofop y = g
is of the formp/d
for some polynomialp
, and “failed”, if the equation has no rational solution.
- denomLODE: (L, List Fraction UP) -> UP
denomLODE(op, [g1, ..., gm])
returns a polynomiald
such that any rational solution ofop y = c1 g1 + ... + cm gm
is of the formp/d
for some polynomialp
.
- indicialEquation: (L, F) -> UP
indicialEquation(op, a)
returns the indicial equation ofop
ata
.
- indicialEquation: (LQ, F) -> UP
indicialEquation(op, a)
returns the indicial equation ofop
ata
.
- indicialEquations: (L, UP) -> List Record(center: UP, equation: UP)
indicialEquations(op, p)
returns[[d1, e1], ..., [dq, eq]]
where thed_i
's
are the affine singularities ofop
above the roots ofp
, and thee_i
's
are the indicial equations at eachd_i
.
- indicialEquations: (LQ, UP) -> List Record(center: UP, equation: UP)
indicialEquations(op, p)
returns[[d1, e1], ..., [dq, eq]]
where thed_i
's
are the affine singularities ofop
above the roots ofp
, and thee_i
's
are the indicial equations at eachd_i
.
- indicialEquations: L -> List Record(center: UP, equation: UP)
indicialEquations op
returns[[d1, e1], ..., [dq, eq]]
where thed_i
's
are the affine singularities ofop
, and thee_i
's
are the indicial equations at eachd_i
.
- indicialEquations: LQ -> List Record(center: UP, equation: UP)
indicialEquations op
returns[[d1, e1], ..., [dq, eq]]
where thed_i
's
are the affine singularities ofop
, and thee_i
's
are the indicial equations at eachd_i
.