integralDivision: Integral division of two polynomials
Description
Integral division (division without remainder) of two
polynomials with rational coefficients.
Usage
integralDivision(qspray1, qspray2, check = TRUE)
Value
If check=TRUE, this returns NULL if qspray2
does not divide qspray1, otherwise this returns a qspray
polynomial, the quotient of qspray1 by qspray2.
If check=FALSE, this always returns a qspray polynomial,
which is the quotient of qspray1 by qspray2 if
qspray2 divides qspray1, otherwise it is an undefined
polynomial. So you can use check=FALSE only when you are sure that
qspray2 divides qspray1.
Arguments
qspray1, qspray2
two qspray polynomials having at most nine
variables
check
Boolean, whether to check that qspray2 divides
qspray1