ODETools(F, LODO)¶
oderf.spad line 535 [edit on github]
F: Field
ODETools
provides tools for the linear ODE solver.
- particularSolution: (LODO, F, List F, F -> F) -> Union(F, failed)
particularSolution(op, g, [f1, ..., fm], I)
returns a particular solutionh
of the equationop y = g
where[f1, ..., fm]
are linearly independent andop(fi)=0
. The value “failed” is returned if no particular solution is found. Note: the method of variations of parameters is used.
- variationOfParameters: (LODO, F, List F) -> Union(Vector F, failed)
variationOfParameters(op, g, [f1, ..., fm])
returns[u1, ..., um]
such that a particular solution of the equationop y = g
isf1 int(u1) + ... + fm int(um)
where[f1, ..., fm]
are linearly independent andop(fi)=0
. The value “failed” is returned ifm < n
and no particular solution is found.
- wronskianMatrix: (List F, NonNegativeInteger) -> Matrix F
wronskianMatrix([f1, ..., fn], q)
returns theq x n
matrixm
whose i^th row is[f1^(i-1), ..., fn^(i-1)]
.