[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))
|
---|
[2223] | 61 | (:default-initargs :dimension 0 :exponents nil))
|
---|
[880] | 62 |
|
---|
[2245] | 63 | (defmethod print-object ((self monom) stream)
|
---|
| 64 | (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
|
---|
| 65 | (slot-value self 'dimension)
|
---|
| 66 | (slot-value self 'exponents)))
|
---|
[2027] | 67 |
|
---|
[2249] | 68 | (defmethod initialize-instance :after ((self monom)
|
---|
[2242] | 69 | &rest args
|
---|
| 70 | &key
|
---|
| 71 | (dimension nil dimension-suppied-p)
|
---|
| 72 | (exponents nil exponents-supplied-p)
|
---|
| 73 | (exponent nil exponent-supplied-p)
|
---|
| 74 | &allow-other-keys
|
---|
| 75 | )
|
---|
[2246] | 76 | (format t "INITIALIZE-INSTANCE called with:~&~TSELF:~W ~&~TARGS: ~W.~%" self args)
|
---|
[2213] | 77 | (let ((new-dimension (cond (dimension-suppied-p dimension)
|
---|
| 78 | (exponents-supplied-p
|
---|
| 79 | (length exponents))
|
---|
| 80 | (t
|
---|
| 81 | (error "You must provide DIMENSION or EXPONENTS"))))
|
---|
| 82 | (new-exponents (cond
|
---|
| 83 | ;; when exponents are supplied
|
---|
| 84 | (exponents-supplied-p
|
---|
| 85 | (make-array (list dimension) :initial-contents exponents
|
---|
| 86 | :element-type 'exponent))
|
---|
| 87 | ;; when all exponents are to be identical
|
---|
| 88 | (exponent-supplied-p
|
---|
| 89 | (make-array (list dimension) :initial-element exponent
|
---|
| 90 | :element-type 'exponent))
|
---|
| 91 | ;; otherwise, all exponents are zero
|
---|
| 92 | (t
|
---|
[2248] | 93 | (make-array (list dimension) :element-type 'exponent :initial-element 0)))))
|
---|
| 94 | (call-next-method :dimension new-dimension :exponents new-exponents)))
|
---|
[717] | 95 |
|
---|
[2221] | 96 |
|
---|
[2225] | 97 |
|
---|
[48] | 98 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 99 | ;;
|
---|
| 100 | ;; Operations on monomials
|
---|
| 101 | ;;
|
---|
| 102 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 103 |
|
---|
[2143] | 104 | (defmethod r-dimension ((m monom))
|
---|
[2126] | 105 | (monom-dimension m))
|
---|
[745] | 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."
|
---|
[2037] | 148 | (with-slots ((exponents1 exponents))
|
---|
[2034] | 149 | m1
|
---|
[2037] | 150 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 151 | m2
|
---|
| 152 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 153 | (dimension (reduce #'+ exponents)))
|
---|
[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."
|
---|
[2171] | 219 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 220 | m1
|
---|
[2171] | 221 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 222 | m2
|
---|
| 223 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 224 | (dimension (reduce #'+ exponents)))
|
---|
[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."
|
---|
[2171] | 231 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 232 | m1
|
---|
[2171] | 233 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 234 | m2
|
---|
| 235 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 236 | (dimension (reduce #'+ exponents)))
|
---|
[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 |
|
---|
[2146] | 247 | (defmethod r-tensor-product ((m1 monom) (m2 monom)
|
---|
[2195] | 248 | &aux (dimension (+ (r-dimension m1) (r-dimension m2))))
|
---|
| 249 | (declare (fixnum dimension))
|
---|
[2171] | 250 | (with-slots ((exponents1 exponents))
|
---|
[2087] | 251 | m1
|
---|
[2171] | 252 | (with-slots ((exponents2 exponents))
|
---|
[2087] | 253 | m2
|
---|
[2147] | 254 | (make-instance 'monom
|
---|
[2195] | 255 | :dimension dimension
|
---|
[2147] | 256 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 257 |
|
---|
[2148] | 258 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 259 | "Drop the first K variables in monomial M."
|
---|
[2085] | 260 | (declare (fixnum k))
|
---|
[2196] | 261 | (with-slots (dimension exponents)
|
---|
[2085] | 262 | m
|
---|
[2197] | 263 | (setf dimension (- dimension k)
|
---|
[2085] | 264 | exponents (subseq exponents k))))
|
---|
[886] | 265 |
|
---|
| 266 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 267 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 268 | "Construct a monomial in the polynomial ring
|
---|
| 269 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 270 | which represents a single variable. It assumes number of variables
|
---|
| 271 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 272 | may appear raised to power POWER. "
|
---|
[1924] | 273 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 274 | (with-slots (exponents)
|
---|
| 275 | m
|
---|
[2154] | 276 | (setf (elt exponents pos) power)
|
---|
[2089] | 277 | m))
|
---|
[1151] | 278 |
|
---|
[2150] | 279 | (defmethod r->list ((m monom))
|
---|
[1152] | 280 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2148] | 281 | (coerce (monom-exponents m) 'list))
|
---|