;;; MONOM/ (m1 m2) [FUNCTION] ;;; Divide monomial M1 by monomial M2. ;;; ;;; MONOM* (m1 m2) [FUNCTION] ;;; Multiply monomial M1 by monomial M2. ;;; ;;; NMONOM* (m1 m2) [FUNCTION] ;;; Multiply monomials M1 and M2 - destructive version. ;;; M1 is destructively modified, M2 is not modified. ;;; ;;; MONOM-DIVIDES-P (m1 m2) [FUNCTION] ;;; Returns T if monomial M1 divides monomial M2, NIL otherwise. ;;; ;;; MONOM-DIVISIBLE-BY-P (m1 m2) [FUNCTION] ;;; Returns T if monomial M1 is divisible by monomial M2, NIL otherwise. ;;; ;;; MONOM-REL-PRIME (m1 m2) [FUNCTION] ;;; Returns T if two monomials M1 and M2 are relatively prime (disjoint). ;;; ;;; MONOM-EQUAL (m1 m2) [FUNCTION] ;;; Returns T if two monomials M1 and M2 are equal. ;;; ;;; MONOM-LCM (m1 m2) [FUNCTION] ;;; Returns least common multiple of monomials M1 and M2. ;;; ;;; MONOM-GCD (m1 m2) [FUNCTION] ;;; Returns greatest common divisor of monomials M1 and M2. ;;;