Last change
on this file since 1 was 1, checked in by Marek Rychlik, 17 years ago |
First import of a version circa 1997.
|
File size:
1.3 KB
|
Rev | Line | |
---|
[1] | 1 |
|
---|
| 2 | ;;; MONOM/ (m1 m2) [FUNCTION]
|
---|
| 3 | ;;; Divide monomial M1 by monomial M2.
|
---|
| 4 | ;;;
|
---|
| 5 | ;;; MONOM* (m1 m2) [FUNCTION]
|
---|
| 6 | ;;; Multiply monomial M1 by monomial M2.
|
---|
| 7 | ;;;
|
---|
| 8 | ;;; NMONOM* (m1 m2) [FUNCTION]
|
---|
| 9 | ;;; Multiply monomials M1 and M2 - destructive version.
|
---|
| 10 | ;;; M1 is destructively modified, M2 is not modified.
|
---|
| 11 | ;;;
|
---|
| 12 | ;;; MONOM-DIVIDES-P (m1 m2) [FUNCTION]
|
---|
| 13 | ;;; Returns T if monomial M1 divides monomial M2, NIL otherwise.
|
---|
| 14 | ;;;
|
---|
| 15 | ;;; MONOM-DIVISIBLE-BY-P (m1 m2) [FUNCTION]
|
---|
| 16 | ;;; Returns T if monomial M1 is divisible by monomial M2, NIL otherwise.
|
---|
| 17 | ;;;
|
---|
| 18 | ;;; MONOM-REL-PRIME (m1 m2) [FUNCTION]
|
---|
| 19 | ;;; Returns T if two monomials M1 and M2 are relatively prime (disjoint).
|
---|
| 20 | ;;;
|
---|
| 21 | ;;; MONOM-EQUAL (m1 m2) [FUNCTION]
|
---|
| 22 | ;;; Returns T if two monomials M1 and M2 are equal.
|
---|
| 23 | ;;;
|
---|
| 24 | ;;; MONOM-LCM (m1 m2) [FUNCTION]
|
---|
| 25 | ;;; Returns least common multiple of monomials M1 and M2.
|
---|
| 26 | ;;;
|
---|
| 27 | ;;; MONOM-GCD (m1 m2) [FUNCTION]
|
---|
| 28 | ;;; Returns greatest common divisor of monomials M1 and M2.
|
---|
| 29 | ;;;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.