AssociatedEquations(R, L)ΒΆ
lodof.spad line 236 [edit on github]
AssociatedEquations provides functions to compute the associated equations needed for factoring operators
- associatedEquations: (L, PositiveInteger) -> Record(minor: List PositiveInteger, eq: L, minors: List List PositiveInteger, ops: List L) if R has Field
associatedEquations(op, m)
returns[w, eq, lw, lop]
such thateq(w) = 0
wherew
is the given minor, andlw_i = lop_i(w)
for all the other minors.
- associatedSystem: (L, PositiveInteger) -> Record(mat: Matrix R, vec: Vector List PositiveInteger)
associatedSystem(op, m)
returns[M, w]
such that them
-th associated equation system toL
isw' = M w
.