NPCoef(BP, E, OV, R, P)ΒΆ
npcoef.spad line 1 [edit on github]
OV: OrderedSet
P: PolynomialCategory(R, E, OV)
Package for the determination of the coefficients in the lifting process. Used by MultivariateLifting. This package will work for every integral domain R
. The same method is described in [1] section 2.3.4.
- npcoef: (SparseUnivariatePolynomial P, List BP, List P) -> Record(deter: List SparseUnivariatePolynomial P, dterm: List List Record(expt: NonNegativeInteger, pcoef: P), nfacts: List BP, nlead: List P)
npcoef(p, lmf, lcf)
tries to determine some coefficients of factors ofp
assuming thatlcf
givestrue
leading coefficients of the factors and that sparsity pattern of modular factorslmf
is the same as sparsity pattern oftrue
factors. Ifres
is the result, thenres.deter
gives fully determined factors,res.dterm
gives determined terms of partially determinaed factors,res.nfacts
andres.nlead
give modular factors and leading coefficients corresponding to undetermined factors.