[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)))
|
---|
[2405] | 87 | (when (and dimension (/= dimension dim))
|
---|
| 88 | (error "EXPONENTS must have length DIMENSION"))
|
---|
[2356] | 89 | (setf (slot-value self 'dimension) dim
|
---|
| 90 | (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[2354] | 91 | ;; when all exponents are to be identical
|
---|
[2356] | 92 | (t
|
---|
| 93 | (let ((dim (slot-value self 'dimension)))
|
---|
| 94 | (setf (slot-value self 'exponents)
|
---|
| 95 | (make-array (list dim) :initial-element (or exponent 0)
|
---|
| 96 | :element-type 'exponent)))))))))
|
---|
[717] | 97 |
|
---|
[48] | 98 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 99 | ;;
|
---|
| 100 | ;; Operations on monomials
|
---|
| 101 | ;;
|
---|
| 102 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 103 |
|
---|
[2398] | 104 | (defmethod r-coeff ((m monom))
|
---|
| 105 | "A MONOM can be treated as a special case of TERM,
|
---|
| 106 | where the coefficient is 1."
|
---|
| 107 | 1)
|
---|
[2397] | 108 |
|
---|
[2143] | 109 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 110 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 111 | (with-slots (exponents)
|
---|
| 112 | m
|
---|
[2154] | 113 | (elt exponents index)))
|
---|
[48] | 114 |
|
---|
[2160] | 115 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 116 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 117 | (with-slots (exponents)
|
---|
| 118 | m
|
---|
[2154] | 119 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 120 |
|
---|
[2149] | 121 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (r-dimension m)))
|
---|
[48] | 122 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 123 | of variables may be specified with arguments START and END."
|
---|
[2023] | 124 | (declare (type fixnum start end))
|
---|
| 125 | (with-slots (exponents)
|
---|
| 126 | m
|
---|
[2154] | 127 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 128 |
|
---|
[2064] | 129 |
|
---|
[2149] | 130 | (defmethod r-sugar ((m monom) &aux (start 0) (end (r-dimension m)))
|
---|
[48] | 131 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 132 | of variables may be specified with arguments START and END."
|
---|
[2032] | 133 | (declare (type fixnum start end))
|
---|
[2155] | 134 | (r-total-degree m start end))
|
---|
[48] | 135 |
|
---|
[2414] | 136 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
[2072] | 137 | "Multiply monomial M1 by monomial M2."
|
---|
[2195] | 138 | (with-slots ((exponents1 exponents) dimension)
|
---|
[2038] | 139 | m1
|
---|
[2170] | 140 | (with-slots ((exponents2 exponents))
|
---|
[2038] | 141 | m2
|
---|
[2167] | 142 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2154] | 143 | (map-into exponents #'+ exponents1 exponents2)
|
---|
[2414] | 144 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[2038] | 145 |
|
---|
[2069] | 146 |
|
---|
[2144] | 147 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[1896] | 148 | "Divide monomial M1 by monomial M2."
|
---|
[2313] | 149 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2034] | 150 | m1
|
---|
[2037] | 151 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 152 | m2
|
---|
| 153 | (let* ((exponents (copy-seq exponents1))
|
---|
[2314] | 154 | (dimension dimension1))
|
---|
[2154] | 155 | (map-into exponents #'- exponents1 exponents2)
|
---|
[2195] | 156 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 157 |
|
---|
[2144] | 158 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 159 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 160 | (with-slots ((exponents1 exponents))
|
---|
| 161 | m1
|
---|
| 162 | (with-slots ((exponents2 exponents))
|
---|
| 163 | m2
|
---|
| 164 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 165 |
|
---|
[2075] | 166 |
|
---|
[2144] | 167 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 168 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 169 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 170 | m1 m2 m3))
|
---|
[48] | 171 |
|
---|
[2049] | 172 |
|
---|
[2144] | 173 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 174 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 175 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 176 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 177 | m1 m2 m3 m4))
|
---|
| 178 |
|
---|
[2144] | 179 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 180 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 181 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 182 | m1
|
---|
[2171] | 183 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 184 | m2
|
---|
[2171] | 185 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 186 | m3
|
---|
[2171] | 187 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 188 | m4
|
---|
[2077] | 189 | (every
|
---|
| 190 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 191 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 192 |
|
---|
[2144] | 193 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 194 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 195 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 196 | m1
|
---|
[2171] | 197 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 198 | m2
|
---|
| 199 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 200 |
|
---|
[2146] | 201 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 202 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 203 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 204 | m1
|
---|
[2171] | 205 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 206 | m2
|
---|
[2154] | 207 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 208 |
|
---|
[2076] | 209 |
|
---|
[2163] | 210 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[48] | 211 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2171] | 212 | (with-slots ((exponents1 exponents))
|
---|
[2079] | 213 | m1
|
---|
[2171] | 214 | (with-slots ((exponents2 exponents))
|
---|
[2079] | 215 | m2
|
---|
| 216 | (every #'= exponents1 exponents2))))
|
---|
[48] | 217 |
|
---|
[2146] | 218 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 219 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2319] | 220 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 221 | m1
|
---|
[2171] | 222 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 223 | m2
|
---|
| 224 | (let* ((exponents (copy-seq exponents1))
|
---|
[2319] | 225 | (dimension dimension1))
|
---|
[2082] | 226 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 227 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 228 |
|
---|
[2080] | 229 |
|
---|
[2146] | 230 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 231 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2320] | 232 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 233 | m1
|
---|
[2171] | 234 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 235 | m2
|
---|
| 236 | (let* ((exponents (copy-seq exponents1))
|
---|
[2320] | 237 | (dimension dimension1))
|
---|
[2082] | 238 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 239 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 240 |
|
---|
[2146] | 241 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 242 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 243 | (declare (type fixnum k))
|
---|
| 244 | (with-slots (exponents)
|
---|
| 245 | m
|
---|
[2154] | 246 | (plusp (elt exponents k))))
|
---|
[48] | 247 |
|
---|
[2321] | 248 | (defmethod r-tensor-product ((m1 monom) (m2 monom))
|
---|
| 249 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2087] | 250 | m1
|
---|
[2321] | 251 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
[2087] | 252 | m2
|
---|
[2147] | 253 | (make-instance 'monom
|
---|
[2321] | 254 | :dimension (+ dimension1 dimension2)
|
---|
[2147] | 255 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 256 |
|
---|
[2148] | 257 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 258 | "Drop the first K variables in monomial M."
|
---|
[2085] | 259 | (declare (fixnum k))
|
---|
[2196] | 260 | (with-slots (dimension exponents)
|
---|
[2085] | 261 | m
|
---|
[2197] | 262 | (setf dimension (- dimension k)
|
---|
[2085] | 263 | exponents (subseq exponents k))))
|
---|
[886] | 264 |
|
---|
| 265 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 266 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 267 | "Construct a monomial in the polynomial ring
|
---|
| 268 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 269 | which represents a single variable. It assumes number of variables
|
---|
| 270 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 271 | may appear raised to power POWER. "
|
---|
[1924] | 272 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 273 | (with-slots (exponents)
|
---|
| 274 | m
|
---|
[2154] | 275 | (setf (elt exponents pos) power)
|
---|
[2089] | 276 | m))
|
---|
[1151] | 277 |
|
---|
[2150] | 278 | (defmethod r->list ((m monom))
|
---|
[1152] | 279 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2364] | 280 | (coerce (r-exponents m) 'list))
|
---|