b-prem-sequence-subresultant

▸ function bPremSequenceSubresultant (f: bigint[], g: bigint[], sturm?: boolean): bigint[][]

Defined in euclidean-division-related/bigint/b-prem-sequence-subresultant.ts:24

Returns the subresultant pseudo remainder sequence of a/b.

Parameters:

NameTypeDefault valueDescription
fbigint[]-the polynomial a in the formula a = bq + r; the polynomial is given with coefficients as a dense array of bigints from highest to lowest power, e.g. [5n,-3n,0n] represents the polynomial 5x^2 - 3x
gbigint[]-the polynomial b in the formula a = bq + r;
sturmbooleanfalseif set to true then calculate a Sturm sequence instead

Returns: bigint[][]