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