Skip to content

PolynomialQuotientRemainder

PolynomialQuotientRemainder(p, q, x)

returns a list with the polynomial quotient and remainder of the polynomials p and q for the variable x.

PolynomialQuotientRemainder(p, q, x, Modulus -> prime)

returns list with the polynomial quotient and remainder of the polynomials p and q for the variable x modulus the prime integer.

See

Examples

>> PolynomialQuotientRemainder(x^2 + 7*x + 6, x^2-5*x-6, x)
{1,12+12*x}

Implementation status

  • ✅ - full supported

Github