[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"
|
---|
[2125] | 46 | "MONOM-DIMENSION"
|
---|
[2124] | 47 | "MONOM-EXPONENTS"
|
---|
| 48 | "MAKE-MONOM-VARIABLE"))
|
---|
[81] | 49 |
|
---|
[1610] | 50 | (in-package :monom)
|
---|
[48] | 51 |
|
---|
[1925] | 52 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 53 |
|
---|
[48] | 54 | (deftype exponent ()
|
---|
| 55 | "Type of exponent in a monomial."
|
---|
| 56 | 'fixnum)
|
---|
| 57 |
|
---|
[2022] | 58 | (defclass monom ()
|
---|
[2193] | 59 | ((dimension :initarg :dimension :accessor monom-dimension)
|
---|
[2125] | 60 | (exponents :initarg :exponents :accessor monom-exponents))
|
---|
[2197] | 61 | (:default-initargs :dimension 0 :exponents nil))
|
---|
[880] | 62 |
|
---|
[2028] | 63 | (defmethod print-object ((m monom) stream)
|
---|
[2036] | 64 | (princ (slot-value m 'exponents) stream))
|
---|
[2027] | 65 |
|
---|
[2216] | 66 | (defmethod make-instance :before ((self monom)
|
---|
| 67 | &key
|
---|
| 68 | (dimension nil dimension-suppied-p)
|
---|
| 69 | (exponents nil exponents-supplied-p)
|
---|
| 70 | (exponent nil exponent-supplied-p))
|
---|
[2199] | 71 | "A constructor (factory) of monomials. If DIMENSION is given, a
|
---|
| 72 | sequence of DIMENSION elements of type EXPONENT is constructed, where
|
---|
[2204] | 73 | individual elements are the value of EXPONENT, which defaults
|
---|
[2199] | 74 | to 0. Alternatively, all elements may be specified as a list
|
---|
[2204] | 75 | EXPONENTS."
|
---|
[2216] | 76 | (format t "MAKE-INSTANCE called with DIMENSION ~A(~A), EXPONENTS ~A(~A), EXPONENT ~A(~A).~%"
|
---|
[2215] | 77 | dimension dimension-suppied-p
|
---|
[2214] | 78 | exponents exponents-supplied-p
|
---|
| 79 | exponent exponent-supplied-p)
|
---|
[2215] | 80 | #|
|
---|
[2213] | 81 | (let ((new-dimension (cond (dimension-suppied-p dimension)
|
---|
| 82 | (exponents-supplied-p
|
---|
| 83 | (length exponents))
|
---|
| 84 | (t
|
---|
| 85 | (error "You must provide DIMENSION or EXPONENTS"))))
|
---|
| 86 | (new-exponents (cond
|
---|
| 87 | ;; when exponents are supplied
|
---|
| 88 | (exponents-supplied-p
|
---|
| 89 | (make-array (list dimension) :initial-contents exponents
|
---|
| 90 | :element-type 'exponent))
|
---|
| 91 | ;; when all exponents are to be identical
|
---|
| 92 | (exponent-supplied-p
|
---|
| 93 | (make-array (list dimension) :initial-element exponent
|
---|
| 94 | :element-type 'exponent))
|
---|
| 95 | ;; otherwise, all exponents are zero
|
---|
| 96 | (t
|
---|
| 97 | (make-array (list dimension) :element-type 'exponent :initial-element 0)))))
|
---|
[2215] | 98 | |#
|
---|
[2218] | 99 | (call-next-method :dimension dimension :exponents exponents))
|
---|
[717] | 100 |
|
---|
[48] | 101 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 102 | ;;
|
---|
| 103 | ;; Operations on monomials
|
---|
| 104 | ;;
|
---|
| 105 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 106 |
|
---|
[2143] | 107 | (defmethod r-dimension ((m monom))
|
---|
[2126] | 108 | (monom-dimension m))
|
---|
[745] | 109 |
|
---|
[2143] | 110 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 111 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 112 | (with-slots (exponents)
|
---|
| 113 | m
|
---|
[2154] | 114 | (elt exponents index)))
|
---|
[48] | 115 |
|
---|
[2160] | 116 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 117 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 118 | (with-slots (exponents)
|
---|
| 119 | m
|
---|
[2154] | 120 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 121 |
|
---|
[2149] | 122 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (r-dimension m)))
|
---|
[48] | 123 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 124 | of variables may be specified with arguments START and END."
|
---|
[2023] | 125 | (declare (type fixnum start end))
|
---|
| 126 | (with-slots (exponents)
|
---|
| 127 | m
|
---|
[2154] | 128 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 129 |
|
---|
[2064] | 130 |
|
---|
[2149] | 131 | (defmethod r-sugar ((m monom) &aux (start 0) (end (r-dimension m)))
|
---|
[48] | 132 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 133 | of variables may be specified with arguments START and END."
|
---|
[2032] | 134 | (declare (type fixnum start end))
|
---|
[2155] | 135 | (r-total-degree m start end))
|
---|
[48] | 136 |
|
---|
[2144] | 137 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
[2072] | 138 | "Multiply monomial M1 by monomial M2."
|
---|
[2195] | 139 | (with-slots ((exponents1 exponents) dimension)
|
---|
[2038] | 140 | m1
|
---|
[2170] | 141 | (with-slots ((exponents2 exponents))
|
---|
[2038] | 142 | m2
|
---|
[2167] | 143 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2154] | 144 | (map-into exponents #'+ exponents1 exponents2)
|
---|
[2195] | 145 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[2038] | 146 |
|
---|
[2069] | 147 |
|
---|
| 148 |
|
---|
[2144] | 149 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[1896] | 150 | "Divide monomial M1 by monomial M2."
|
---|
[2037] | 151 | (with-slots ((exponents1 exponents))
|
---|
[2034] | 152 | m1
|
---|
[2037] | 153 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 154 | m2
|
---|
| 155 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 156 | (dimension (reduce #'+ exponents)))
|
---|
[2154] | 157 | (map-into exponents #'- exponents1 exponents2)
|
---|
[2195] | 158 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 159 |
|
---|
[2144] | 160 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 161 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 162 | (with-slots ((exponents1 exponents))
|
---|
| 163 | m1
|
---|
| 164 | (with-slots ((exponents2 exponents))
|
---|
| 165 | m2
|
---|
| 166 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 167 |
|
---|
[2075] | 168 |
|
---|
[2144] | 169 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 170 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 171 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 172 | m1 m2 m3))
|
---|
[48] | 173 |
|
---|
[2049] | 174 |
|
---|
[2144] | 175 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 176 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 177 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 178 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 179 | m1 m2 m3 m4))
|
---|
| 180 |
|
---|
[2144] | 181 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 182 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 183 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 184 | m1
|
---|
[2171] | 185 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 186 | m2
|
---|
[2171] | 187 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 188 | m3
|
---|
[2171] | 189 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 190 | m4
|
---|
[2077] | 191 | (every
|
---|
| 192 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 193 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 194 |
|
---|
[2144] | 195 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 196 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 197 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 198 | m1
|
---|
[2171] | 199 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 200 | m2
|
---|
| 201 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 202 |
|
---|
[2146] | 203 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 204 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 205 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 206 | m1
|
---|
[2171] | 207 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 208 | m2
|
---|
[2154] | 209 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 210 |
|
---|
[2076] | 211 |
|
---|
[2163] | 212 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[48] | 213 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2171] | 214 | (with-slots ((exponents1 exponents))
|
---|
[2079] | 215 | m1
|
---|
[2171] | 216 | (with-slots ((exponents2 exponents))
|
---|
[2079] | 217 | m2
|
---|
| 218 | (every #'= exponents1 exponents2))))
|
---|
[48] | 219 |
|
---|
[2146] | 220 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 221 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2171] | 222 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 223 | m1
|
---|
[2171] | 224 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 225 | m2
|
---|
| 226 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 227 | (dimension (reduce #'+ exponents)))
|
---|
[2082] | 228 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 229 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 230 |
|
---|
[2080] | 231 |
|
---|
[2146] | 232 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 233 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2171] | 234 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 235 | m1
|
---|
[2171] | 236 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 237 | m2
|
---|
| 238 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 239 | (dimension (reduce #'+ exponents)))
|
---|
[2082] | 240 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 241 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 242 |
|
---|
[2146] | 243 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 244 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 245 | (declare (type fixnum k))
|
---|
| 246 | (with-slots (exponents)
|
---|
| 247 | m
|
---|
[2154] | 248 | (plusp (elt exponents k))))
|
---|
[48] | 249 |
|
---|
[2146] | 250 | (defmethod r-tensor-product ((m1 monom) (m2 monom)
|
---|
[2195] | 251 | &aux (dimension (+ (r-dimension m1) (r-dimension m2))))
|
---|
| 252 | (declare (fixnum dimension))
|
---|
[2171] | 253 | (with-slots ((exponents1 exponents))
|
---|
[2087] | 254 | m1
|
---|
[2171] | 255 | (with-slots ((exponents2 exponents))
|
---|
[2087] | 256 | m2
|
---|
[2147] | 257 | (make-instance 'monom
|
---|
[2195] | 258 | :dimension dimension
|
---|
[2147] | 259 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 260 |
|
---|
[2148] | 261 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 262 | "Drop the first K variables in monomial M."
|
---|
[2085] | 263 | (declare (fixnum k))
|
---|
[2196] | 264 | (with-slots (dimension exponents)
|
---|
[2085] | 265 | m
|
---|
[2197] | 266 | (setf dimension (- dimension k)
|
---|
[2085] | 267 | exponents (subseq exponents k))))
|
---|
[886] | 268 |
|
---|
| 269 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 270 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 271 | "Construct a monomial in the polynomial ring
|
---|
| 272 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 273 | which represents a single variable. It assumes number of variables
|
---|
| 274 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 275 | may appear raised to power POWER. "
|
---|
[1924] | 276 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 277 | (with-slots (exponents)
|
---|
| 278 | m
|
---|
[2154] | 279 | (setf (elt exponents pos) power)
|
---|
[2089] | 280 | m))
|
---|
[1151] | 281 |
|
---|
[2150] | 282 | (defmethod r->list ((m monom))
|
---|
[1152] | 283 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2148] | 284 | (coerce (monom-exponents m) 'list))
|
---|