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