bezout.spad line 1 [edit on github]
BezoutMatrix contains functions for computing resultants and discriminants using Bezout matrices, and functions related with Sylvester matrix and subresultant.
bezoutDiscriminant(p)
computes the discriminant of a polynomial p
by computing the determinant of a Bezout matrix.
bezoutMatrix(p, q)
returns the Bezout matrix for the two polynomials p
and q
.
bezoutResultant(p, q)
computes the resultant of the two polynomials p
and q
by computing the determinant of a Bezout matrix.
subSylvesterMatrix(S, j)
returns the j
th sub-Sylvester matrix jS
.
subSylvesterMatrix(S, j, i)
returns sub-Sylvester matrix jSi.
subresultants(p, q)
returns a vector of subresultants of p
and q
, in ascending order, starting with index 0.
sylvesterMatrix(p, q)
returns the Sylvester matrix for the two nonzero polynomials p
and q
.