LinearOrdinaryDifferentialOperatorsOps(A, L)ΒΆ
lodo.spad line 55 [edit on github]
LinearOrdinaryDifferentialOperatorsOps
provides symmetric products and sums for linear ordinary differential operators.
- directSum: (L, L, A -> A) -> L
directSum(a, b, D)
computes an operatorc
of minimal order such that the nullspace ofc
is generated by all the sums of a solution ofa
by a solution ofb
.D
is the derivation to use.
- symmetricPower: (L, NonNegativeInteger, A -> A) -> L
symmetricPower(a, n, D)
computes an operatorc
of minimal order such that the nullspace ofc
is generated by all the products ofn
solutions ofa
.D
is the derivation to use.
- symmetricProduct: (L, L, A -> A) -> L
symmetricProduct(a, b, D)
computes an operatorc
of minimal order such that the nullspace ofc
is generated by all the products of a solution ofa
by a solution ofb
.D
is the derivation to use.