oderf.spad line 302 [edit on github]
RationalLODE
provides functions for in-field solutions of linear ordinary differential equations, in the rational case.
indicialEquationAtInfinity op
returns the indicial equation of op
at infinity.
indicialEquationAtInfinity op
returns the indicial equation of op
at infinity.
integrate_sols(l)
integrates the solutions of an operator l
.
ratDsolve(op, [g1, ..., gm])
returns [[h1, ..., hq], M]
such that any rational solution of op y = c1 g1 + ... + cm gm
is of the form c1 h1 + ... + cq hq
where M [c1, ..., cq] = 0
and q >= m
.
ratDsolve(op, [g1, ..., gm])
returns [[h1, ..., hq], M]
such that any rational solution of op y = c1 g1 + ... + cm gm
is of the form c1 h1 + ... + cq hq
where M [c1, ..., cq] = 0
and q >= m
.
ratDsolve(op, g)
returns ["failed", []]
if the equation op y = g
has no rational solution. Otherwise, it returns [f, [y1, ..., ym]]
where f
is a particular rational solution and the yi
's
form a basis for the rational solutions of the homogeneous equation.
ratDsolve(op, g)
returns ["failed", []]
if the equation op y = g
has no rational solution. Otherwise, it returns [f, [y1, ..., ym]]
where f
is a particular rational solution and the yi
's
form a basis for the rational solutions of the homogeneous equation.