[1201] | 1 | ;;; -*- Mode: Lisp -*-
|
---|
[81] | 2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 3 | ;;;
|
---|
| 4 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
| 5 | ;;;
|
---|
| 6 | ;;; This program is free software; you can redistribute it and/or modify
|
---|
| 7 | ;;; it under the terms of the GNU General Public License as published by
|
---|
| 8 | ;;; the Free Software Foundation; either version 2 of the License, or
|
---|
| 9 | ;;; (at your option) any later version.
|
---|
| 10 | ;;;
|
---|
| 11 | ;;; This program is distributed in the hope that it will be useful,
|
---|
| 12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | ;;; GNU General Public License for more details.
|
---|
| 15 | ;;;
|
---|
| 16 | ;;; You should have received a copy of the GNU General Public License
|
---|
| 17 | ;;; along with this program; if not, write to the Free Software
|
---|
| 18 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
| 19 | ;;;
|
---|
| 20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 21 |
|
---|
[418] | 22 | ;;----------------------------------------------------------------
|
---|
| 23 | ;; This package implements BASIC OPERATIONS ON MONOMIALS
|
---|
| 24 | ;;----------------------------------------------------------------
|
---|
| 25 | ;; DATA STRUCTURES: Conceptually, monomials can be represented as lists:
|
---|
| 26 | ;;
|
---|
| 27 | ;; monom: (n1 n2 ... nk) where ni are non-negative integers
|
---|
| 28 | ;;
|
---|
| 29 | ;; However, lists may be implemented as other sequence types,
|
---|
| 30 | ;; so the flexibility to change the representation should be
|
---|
| 31 | ;; maintained in the code to use general operations on sequences
|
---|
| 32 | ;; whenever possible. The optimization for the actual representation
|
---|
| 33 | ;; should be left to declarations and the compiler.
|
---|
| 34 | ;;----------------------------------------------------------------
|
---|
| 35 | ;; EXAMPLES: Suppose that variables are x and y. Then
|
---|
| 36 | ;;
|
---|
[714] | 37 | ;; Monom x*y^2 ---> (1 2)
|
---|
[418] | 38 | ;;
|
---|
| 39 | ;;----------------------------------------------------------------
|
---|
| 40 |
|
---|
[1610] | 41 | (defpackage "MONOM"
|
---|
[2025] | 42 | (:use :cl :ring)
|
---|
[422] | 43 | (:export "MONOM"
|
---|
[423] | 44 | "EXPONENT"
|
---|
[2124] | 45 | "MAKE-MONOM-VARIABLE"))
|
---|
[81] | 46 |
|
---|
[1610] | 47 | (in-package :monom)
|
---|
[48] | 48 |
|
---|
[1925] | 49 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 50 |
|
---|
[48] | 51 | (deftype exponent ()
|
---|
| 52 | "Type of exponent in a monomial."
|
---|
| 53 | 'fixnum)
|
---|
| 54 |
|
---|
[2022] | 55 | (defclass monom ()
|
---|
[2361] | 56 | ((dimension :initarg :dimension :accessor r-dimension)
|
---|
| 57 | (exponents :initarg :exponents :accessor r-exponents))
|
---|
[2268] | 58 | (:default-initargs :dimension nil :exponents nil :exponent nil))
|
---|
[880] | 59 |
|
---|
[2245] | 60 | (defmethod print-object ((self monom) stream)
|
---|
| 61 | (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
|
---|
[2362] | 62 | (r-dimension self)
|
---|
[2366] | 63 | (r-exponents self)))
|
---|
[2027] | 64 |
|
---|
[2390] | 65 | (defmethod shared-initialize :after ((self monom) slot-names
|
---|
| 66 | &key
|
---|
| 67 | dimension
|
---|
| 68 | exponents
|
---|
| 69 | exponent
|
---|
| 70 | &allow-other-keys
|
---|
| 71 | )
|
---|
[2354] | 72 | (if (eq slot-names t) (setf slot-names '(dimension exponents)))
|
---|
| 73 | (dolist (slot-name slot-names)
|
---|
[2357] | 74 | (case slot-name
|
---|
[2354] | 75 | (dimension
|
---|
[2355] | 76 | (cond (dimension
|
---|
| 77 | (setf (slot-value self 'dimension) dimension))
|
---|
[2354] | 78 | (exponents
|
---|
| 79 | (setf (slot-value self 'dimension) (length exponents)))
|
---|
| 80 | (t
|
---|
| 81 | (error "DIMENSION or EXPONENTS must not be NIL"))))
|
---|
| 82 | (exponents
|
---|
| 83 | (cond
|
---|
| 84 | ;; when exponents are supplied
|
---|
| 85 | (exponents
|
---|
[2356] | 86 | (let ((dim (length exponents)))
|
---|
| 87 | (setf (slot-value self 'dimension) dim
|
---|
| 88 | (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[2354] | 89 | ;; when all exponents are to be identical
|
---|
[2356] | 90 | (t
|
---|
| 91 | (let ((dim (slot-value self 'dimension)))
|
---|
| 92 | (setf (slot-value self 'exponents)
|
---|
| 93 | (make-array (list dim) :initial-element (or exponent 0)
|
---|
| 94 | :element-type 'exponent)))))))))
|
---|
[717] | 95 |
|
---|
[48] | 96 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 97 | ;;
|
---|
| 98 | ;; Operations on monomials
|
---|
| 99 | ;;
|
---|
| 100 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 101 |
|
---|
[2398] | 102 | (defmethod r-coeff ((m monom))
|
---|
| 103 | "A MONOM can be treated as a special case of TERM,
|
---|
| 104 | where the coefficient is 1."
|
---|
| 105 | 1)
|
---|
[2397] | 106 |
|
---|
[2143] | 107 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 108 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 109 | (with-slots (exponents)
|
---|
| 110 | m
|
---|
[2154] | 111 | (elt exponents index)))
|
---|
[48] | 112 |
|
---|
[2160] | 113 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 114 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 115 | (with-slots (exponents)
|
---|
| 116 | m
|
---|
[2154] | 117 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 118 |
|
---|
[2149] | 119 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (r-dimension m)))
|
---|
[48] | 120 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 121 | of variables may be specified with arguments START and END."
|
---|
[2023] | 122 | (declare (type fixnum start end))
|
---|
| 123 | (with-slots (exponents)
|
---|
| 124 | m
|
---|
[2154] | 125 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 126 |
|
---|
[2064] | 127 |
|
---|
[2149] | 128 | (defmethod r-sugar ((m monom) &aux (start 0) (end (r-dimension m)))
|
---|
[48] | 129 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 130 | of variables may be specified with arguments START and END."
|
---|
[2032] | 131 | (declare (type fixnum start end))
|
---|
[2155] | 132 | (r-total-degree m start end))
|
---|
[48] | 133 |
|
---|
[2144] | 134 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
[2072] | 135 | "Multiply monomial M1 by monomial M2."
|
---|
[2195] | 136 | (with-slots ((exponents1 exponents) dimension)
|
---|
[2038] | 137 | m1
|
---|
[2170] | 138 | (with-slots ((exponents2 exponents))
|
---|
[2038] | 139 | m2
|
---|
[2167] | 140 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2154] | 141 | (map-into exponents #'+ exponents1 exponents2)
|
---|
[2195] | 142 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[2038] | 143 |
|
---|
[2069] | 144 |
|
---|
| 145 |
|
---|
[2144] | 146 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[1896] | 147 | "Divide monomial M1 by monomial M2."
|
---|
[2313] | 148 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2034] | 149 | m1
|
---|
[2037] | 150 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 151 | m2
|
---|
| 152 | (let* ((exponents (copy-seq exponents1))
|
---|
[2314] | 153 | (dimension dimension1))
|
---|
[2154] | 154 | (map-into exponents #'- exponents1 exponents2)
|
---|
[2195] | 155 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 156 |
|
---|
[2144] | 157 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 158 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 159 | (with-slots ((exponents1 exponents))
|
---|
| 160 | m1
|
---|
| 161 | (with-slots ((exponents2 exponents))
|
---|
| 162 | m2
|
---|
| 163 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 164 |
|
---|
[2075] | 165 |
|
---|
[2144] | 166 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 167 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 168 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 169 | m1 m2 m3))
|
---|
[48] | 170 |
|
---|
[2049] | 171 |
|
---|
[2144] | 172 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 173 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 174 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 175 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 176 | m1 m2 m3 m4))
|
---|
| 177 |
|
---|
[2144] | 178 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 179 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 180 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 181 | m1
|
---|
[2171] | 182 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 183 | m2
|
---|
[2171] | 184 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 185 | m3
|
---|
[2171] | 186 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 187 | m4
|
---|
[2077] | 188 | (every
|
---|
| 189 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 190 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 191 |
|
---|
[2144] | 192 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 193 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 194 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 195 | m1
|
---|
[2171] | 196 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 197 | m2
|
---|
| 198 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 199 |
|
---|
[2146] | 200 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 201 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 202 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 203 | m1
|
---|
[2171] | 204 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 205 | m2
|
---|
[2154] | 206 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 207 |
|
---|
[2076] | 208 |
|
---|
[2163] | 209 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[48] | 210 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2171] | 211 | (with-slots ((exponents1 exponents))
|
---|
[2079] | 212 | m1
|
---|
[2171] | 213 | (with-slots ((exponents2 exponents))
|
---|
[2079] | 214 | m2
|
---|
| 215 | (every #'= exponents1 exponents2))))
|
---|
[48] | 216 |
|
---|
[2146] | 217 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 218 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2319] | 219 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 220 | m1
|
---|
[2171] | 221 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 222 | m2
|
---|
| 223 | (let* ((exponents (copy-seq exponents1))
|
---|
[2319] | 224 | (dimension dimension1))
|
---|
[2082] | 225 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 226 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 227 |
|
---|
[2080] | 228 |
|
---|
[2146] | 229 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 230 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2320] | 231 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 232 | m1
|
---|
[2171] | 233 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 234 | m2
|
---|
| 235 | (let* ((exponents (copy-seq exponents1))
|
---|
[2320] | 236 | (dimension dimension1))
|
---|
[2082] | 237 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 238 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 239 |
|
---|
[2146] | 240 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 241 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 242 | (declare (type fixnum k))
|
---|
| 243 | (with-slots (exponents)
|
---|
| 244 | m
|
---|
[2154] | 245 | (plusp (elt exponents k))))
|
---|
[48] | 246 |
|
---|
[2321] | 247 | (defmethod r-tensor-product ((m1 monom) (m2 monom))
|
---|
| 248 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2087] | 249 | m1
|
---|
[2321] | 250 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
[2087] | 251 | m2
|
---|
[2147] | 252 | (make-instance 'monom
|
---|
[2321] | 253 | :dimension (+ dimension1 dimension2)
|
---|
[2147] | 254 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 255 |
|
---|
[2148] | 256 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 257 | "Drop the first K variables in monomial M."
|
---|
[2085] | 258 | (declare (fixnum k))
|
---|
[2196] | 259 | (with-slots (dimension exponents)
|
---|
[2085] | 260 | m
|
---|
[2197] | 261 | (setf dimension (- dimension k)
|
---|
[2085] | 262 | exponents (subseq exponents k))))
|
---|
[886] | 263 |
|
---|
| 264 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 265 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 266 | "Construct a monomial in the polynomial ring
|
---|
| 267 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 268 | which represents a single variable. It assumes number of variables
|
---|
| 269 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 270 | may appear raised to power POWER. "
|
---|
[1924] | 271 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 272 | (with-slots (exponents)
|
---|
| 273 | m
|
---|
[2154] | 274 | (setf (elt exponents pos) power)
|
---|
[2089] | 275 | m))
|
---|
[1151] | 276 |
|
---|
[2150] | 277 | (defmethod r->list ((m monom))
|
---|
[1152] | 278 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2364] | 279 | (coerce (r-exponents m) 'list))
|
---|