[3400] | 1 | ;;----------------------------------------------------------------
|
---|
[1201] | 2 | ;;; -*- Mode: Lisp -*-
|
---|
[77] | 3 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 4 | ;;;
|
---|
| 5 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
| 6 | ;;;
|
---|
| 7 | ;;; This program is free software; you can redistribute it and/or modify
|
---|
| 8 | ;;; it under the terms of the GNU General Public License as published by
|
---|
| 9 | ;;; the Free Software Foundation; either version 2 of the License, or
|
---|
| 10 | ;;; (at your option) any later version.
|
---|
| 11 | ;;;
|
---|
| 12 | ;;; This program is distributed in the hope that it will be useful,
|
---|
| 13 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | ;;; GNU General Public License for more details.
|
---|
| 16 | ;;;
|
---|
| 17 | ;;; You should have received a copy of the GNU General Public License
|
---|
| 18 | ;;; along with this program; if not, write to the Free Software
|
---|
| 19 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
| 20 | ;;;
|
---|
| 21 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 22 |
|
---|
[431] | 23 | (defpackage "POLYNOMIAL"
|
---|
[4325] | 24 | (:use :cl :utils :monom :copy :ring)
|
---|
[2596] | 25 | (:export "POLY"
|
---|
[3270] | 26 | "POLY-DIMENSION"
|
---|
[2596] | 27 | "POLY-TERMLIST"
|
---|
[3016] | 28 | "POLY-TERM-ORDER"
|
---|
[3509] | 29 | "POLY-INSERT-TERM"
|
---|
[3690] | 30 | "SCALAR-MULTIPLY-BY"
|
---|
| 31 | "SCALAR-DIVIDE-BY"
|
---|
[3642] | 32 | "LEADING-TERM"
|
---|
[3657] | 33 | "LEADING-MONOMIAL"
|
---|
[3642] | 34 | "LEADING-COEFFICIENT"
|
---|
[3657] | 35 | "SECOND-LEADING-TERM"
|
---|
| 36 | "SECOND-LEADING-MONOMIAL"
|
---|
| 37 | "SECOND-LEADING-COEFFICIENT"
|
---|
[3642] | 38 | "ADD-TO"
|
---|
[3646] | 39 | "ADD"
|
---|
[3642] | 40 | "SUBTRACT-FROM"
|
---|
[3646] | 41 | "SUBTRACT"
|
---|
[3071] | 42 | "CHANGE-TERM-ORDER"
|
---|
[3099] | 43 | "STANDARD-EXTENSION"
|
---|
[3101] | 44 | "STANDARD-EXTENSION-1"
|
---|
[3109] | 45 | "STANDARD-SUM"
|
---|
[3094] | 46 | "SATURATION-EXTENSION"
|
---|
[3655] | 47 | "ALIST->POLY"
|
---|
[3852] | 48 | "->INFIX"
|
---|
[3655] | 49 | "UNIVERSAL-EZGCD"
|
---|
[3678] | 50 | "S-POLYNOMIAL"
|
---|
[3686] | 51 | "POLY-CONTENT"
|
---|
[3692] | 52 | "POLY-PRIMITIVE-PART"
|
---|
[3714] | 53 | "SATURATION-EXTENSION-1"
|
---|
[3737] | 54 | "MAKE-POLY-VARIABLE"
|
---|
[3821] | 55 | "MAKE-POLY-CONSTANT"
|
---|
[4053] | 56 | "MAKE-ZERO-FOR"
|
---|
| 57 | "MAKE-UNIT-FOR"
|
---|
[3778] | 58 | "UNIVERSAL-EXPT"
|
---|
[3969] | 59 | "UNIVERSAL-EQUALP"
|
---|
[4191] | 60 | "UNIVERSAL-ZEROP"
|
---|
[3969] | 61 | "POLY-LENGTH"
|
---|
[4062] | 62 | "POLY-REVERSE"
|
---|
[3900] | 63 | "POLY-P"
|
---|
[3901] | 64 | "+LIST-MARKER+"
|
---|
[3900] | 65 | "POLY-EVAL")
|
---|
[3489] | 66 | (:documentation "Implements polynomials. A polynomial is essentially
|
---|
| 67 | a mapping of monomials of the same degree to coefficients. The
|
---|
| 68 | momomials are ordered according to a monomial order."))
|
---|
[143] | 69 |
|
---|
[431] | 70 | (in-package :polynomial)
|
---|
| 71 |
|
---|
[1927] | 72 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[52] | 73 |
|
---|
[4347] | 74 | (defclass poly (ring)
|
---|
[3253] | 75 | ((dimension :initform nil
|
---|
[3250] | 76 | :initarg :dimension
|
---|
| 77 | :accessor poly-dimension
|
---|
[3242] | 78 | :documentation "Shared dimension of all terms, the number of variables")
|
---|
[3250] | 79 | (termlist :initform nil :initarg :termlist :accessor poly-termlist
|
---|
[3619] | 80 | :documentation "List of terms.")
|
---|
[3250] | 81 | (order :initform #'lex> :initarg :order :accessor poly-term-order
|
---|
[2697] | 82 | :documentation "Monomial/term order."))
|
---|
[3262] | 83 | (:default-initargs :dimension nil :termlist nil :order #'lex>)
|
---|
[2695] | 84 | (:documentation "A polynomial with a list of terms TERMLIST, ordered
|
---|
[2696] | 85 | according to term order ORDER, which defaults to LEX>."))
|
---|
[2442] | 86 |
|
---|
[2471] | 87 | (defmethod print-object ((self poly) stream)
|
---|
[3241] | 88 | (print-unreadable-object (self stream :type t :identity t)
|
---|
[3243] | 89 | (with-accessors ((dimension poly-dimension)
|
---|
| 90 | (termlist poly-termlist)
|
---|
| 91 | (order poly-term-order))
|
---|
[3237] | 92 | self
|
---|
[3244] | 93 | (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A"
|
---|
| 94 | dimension termlist order))))
|
---|
[2469] | 95 |
|
---|
[4114] | 96 | (defmethod copy-instance :around ((object poly) &rest initargs &key &allow-other-keys)
|
---|
[4115] | 97 | "Returns a deep copy of the polynomial POLY, by copying the TERMLIST and its terms."
|
---|
[4114] | 98 | (declare (ignore object initargs))
|
---|
| 99 | (let ((copy (call-next-method)))
|
---|
| 100 | (with-slots (termlist)
|
---|
| 101 | copy
|
---|
| 102 | (setf termlist (mapcar #'copy-instance termlist)))
|
---|
| 103 | copy))
|
---|
| 104 |
|
---|
| 105 |
|
---|
[3015] | 106 | (defgeneric change-term-order (self other)
|
---|
[3012] | 107 | (:documentation "Change term order of SELF to the term order of OTHER.")
|
---|
[3010] | 108 | (:method ((self poly) (other poly))
|
---|
| 109 | (unless (eq (poly-term-order self) (poly-term-order other))
|
---|
[3620] | 110 | (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
|
---|
[3010] | 111 | (poly-term-order self) (poly-term-order other)))
|
---|
[3012] | 112 | self))
|
---|
[3010] | 113 |
|
---|
[3621] | 114 | (defgeneric poly-insert-term (self term)
|
---|
[3622] | 115 | (:documentation "Insert a term TERM into SELF before all other
|
---|
[4329] | 116 | terms. Order is not enforced.")
|
---|
[3621] | 117 | (:method ((self poly) (term term))
|
---|
[3510] | 118 | (cond ((null (poly-dimension self))
|
---|
[3621] | 119 | (setf (poly-dimension self) (monom-dimension term)))
|
---|
| 120 | (t (assert (= (poly-dimension self) (monom-dimension term)))))
|
---|
| 121 | (push term (poly-termlist self))
|
---|
[3510] | 122 | self))
|
---|
| 123 |
|
---|
[3622] | 124 | (defgeneric poly-append-term (self term)
|
---|
| 125 | (:documentation "Append a term TERM to SELF after all other terms. Order is not enforced.")
|
---|
| 126 | (:method ((self poly) (term term))
|
---|
[3510] | 127 | (cond ((null (poly-dimension self))
|
---|
[3622] | 128 | (setf (poly-dimension self) (monom-dimension term)))
|
---|
| 129 | (t (assert (= (poly-dimension self) (monom-dimension term)))))
|
---|
| 130 | (setf (cdr (last (poly-termlist self))) (list term))
|
---|
[3510] | 131 | self))
|
---|
| 132 |
|
---|
[3095] | 133 | (defun alist->poly (alist &aux (poly (make-instance 'poly)))
|
---|
[3126] | 134 | "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...).
|
---|
| 135 | It can be used to enter simple polynomials by hand, e.g the polynomial
|
---|
| 136 | in two variables, X and Y, given in standard notation as:
|
---|
| 137 |
|
---|
| 138 | 3*X^2*Y^3+2*Y+7
|
---|
| 139 |
|
---|
| 140 | can be entered as
|
---|
| 141 | (ALIST->POLY '(((2 3) . 3) ((0 1) . 2) ((0 0) . 7))).
|
---|
| 142 |
|
---|
| 143 | NOTE: The primary use is for low-level debugging of the package."
|
---|
[3099] | 144 | (dolist (x alist poly)
|
---|
[3705] | 145 | (poly-insert-term poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
|
---|
[3092] | 146 |
|
---|
[3877] | 147 | (defmethod update-instance-for-different-class :after ((old term) (new poly) &key)
|
---|
[3786] | 148 | "Converts OLD of class TERM to a NEW of class POLY, by making it into a 1-element TERMLIST."
|
---|
[3401] | 149 | (reinitialize-instance new
|
---|
| 150 | :dimension (monom-dimension old)
|
---|
[3786] | 151 | :termlist (list old)))
|
---|
[3796] | 152 |
|
---|
[3877] | 153 | (defmethod update-instance-for-different-class :after ((old monom) (new poly) &key)
|
---|
[3796] | 154 | "Converts OLD of class MONOM to a NEW of class POLY, by making it into a 1-element TERMLIST."
|
---|
| 155 | (reinitialize-instance new
|
---|
| 156 | :dimension (monom-dimension old)
|
---|
[3797] | 157 | :termlist (list (change-class old 'term))))
|
---|
[3403] | 158 |
|
---|
[3624] | 159 | (defmethod universal-equalp ((self poly) (other poly))
|
---|
| 160 | "Implements equality of polynomials."
|
---|
| 161 | (and (eql (poly-dimension self) (poly-dimension other))
|
---|
| 162 | (every #'universal-equalp (poly-termlist self) (poly-termlist other))
|
---|
| 163 | (eq (poly-term-order self) (poly-term-order other))))
|
---|
[2650] | 164 |
|
---|
[3624] | 165 | (defgeneric leading-term (object)
|
---|
[2442] | 166 | (:method ((self poly))
|
---|
[2525] | 167 | (car (poly-termlist self)))
|
---|
| 168 | (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
|
---|
[52] | 169 |
|
---|
[3625] | 170 | (defgeneric second-leading-term (object)
|
---|
[2442] | 171 | (:method ((self poly))
|
---|
[2525] | 172 | (cadar (poly-termlist self)))
|
---|
| 173 | (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
|
---|
[52] | 174 |
|
---|
[3656] | 175 | (defgeneric leading-monomial (object)
|
---|
| 176 | (:method ((self poly))
|
---|
| 177 | (change-class (copy-instance (leading-term self)) 'monom))
|
---|
| 178 | (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
|
---|
| 179 |
|
---|
| 180 | (defgeneric second-leading-monomial (object)
|
---|
| 181 | (:method ((self poly))
|
---|
| 182 | (change-class (copy-instance (second-leading-term self)) 'monom))
|
---|
| 183 | (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
|
---|
| 184 |
|
---|
[3625] | 185 | (defgeneric leading-coefficient (object)
|
---|
[2442] | 186 | (:method ((self poly))
|
---|
[3642] | 187 | (term-coeff (leading-term self)))
|
---|
[2545] | 188 | (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
|
---|
[52] | 189 |
|
---|
[2442] | 190 | (defgeneric second-leading-coefficient (object)
|
---|
| 191 | (:method ((self poly))
|
---|
[3645] | 192 | (term-coeff (second-leading-term self)))
|
---|
[2906] | 193 | (:documentation "The second leading coefficient of a polynomial. It
|
---|
| 194 | signals error for a polynomial with at most one term."))
|
---|
[52] | 195 |
|
---|
[3629] | 196 | (defmethod universal-zerop ((self poly))
|
---|
| 197 | "Return T iff SELF is a zero polynomial."
|
---|
[3639] | 198 | (null (poly-termlist self)))
|
---|
[52] | 199 |
|
---|
[3518] | 200 | (defgeneric poly-length (self)
|
---|
[3630] | 201 | (:documentation "Return the number of terms.")
|
---|
[3518] | 202 | (:method ((self poly))
|
---|
| 203 | (length (poly-termlist self))))
|
---|
[52] | 204 |
|
---|
[3689] | 205 | (defgeneric scalar-multiply-by (self other)
|
---|
| 206 | (:documentation "Multiply vector SELF by a scalar OTHER.")
|
---|
| 207 | (:method ((self poly) other)
|
---|
[4333] | 208 | (mapc #'(lambda (term) (setf (term-coeff term) (multiply-by (term-coeff term) other)))
|
---|
[3689] | 209 | (poly-termlist self))
|
---|
| 210 | self))
|
---|
| 211 |
|
---|
| 212 | (defgeneric scalar-divide-by (self other)
|
---|
| 213 | (:documentation "Divide vector SELF by a scalar OTHER.")
|
---|
| 214 | (:method ((self poly) other)
|
---|
[4333] | 215 | (mapc #'(lambda (term) (setf (term-coeff term) (divide-by (term-coeff term) other)))
|
---|
[3689] | 216 | (poly-termlist self))
|
---|
| 217 | self))
|
---|
| 218 |
|
---|
[4034] | 219 | (defmethod unary-inverse :before ((self poly))
|
---|
[4035] | 220 | "Checks invertibility of a polynomial SELF. To be invertable, the
|
---|
| 221 | polynomial must be an invertible, constant polynomial."
|
---|
[4034] | 222 | (with-slots (termlist)
|
---|
[4035] | 223 | self
|
---|
| 224 | (assert (and (= (length termlist) 1) (zerop (total-degree (car termlist))))
|
---|
| 225 | nil
|
---|
| 226 | "To be invertible, the polynomial must have 1 term of total degree 0.")))
|
---|
[4034] | 227 |
|
---|
| 228 | (defmethod unary-inverse ((self poly))
|
---|
[4035] | 229 | "Returns the unary inverse of a polynomial SELF."
|
---|
[4034] | 230 | (with-slots (termlist)
|
---|
| 231 | self
|
---|
[4035] | 232 | (setf (car termlist) (unary-inverse (car termlist)))
|
---|
| 233 | self))
|
---|
[4034] | 234 |
|
---|
[3663] | 235 | (defmethod multiply-by ((self poly) (other monom))
|
---|
[3630] | 236 | "Multiply a polynomial SELF by OTHER."
|
---|
| 237 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
| 238 | (poly-termlist self))
|
---|
| 239 | self)
|
---|
[2469] | 240 |
|
---|
[3672] | 241 | (defmethod multiply-by ((self poly) (other term))
|
---|
| 242 | "Multiply a polynomial SELF by OTHER."
|
---|
| 243 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
| 244 | (poly-termlist self))
|
---|
| 245 | self)
|
---|
| 246 |
|
---|
[4332] | 247 | #|
|
---|
[4071] | 248 | (defmethod multiply-by ((self monom) (other poly))
|
---|
| 249 | "Multiply a monomial SELF by polynomial OTHER."
|
---|
| 250 | (multiply-by other self))
|
---|
[4332] | 251 | |#
|
---|
[4071] | 252 |
|
---|
[4331] | 253 | #|
|
---|
[4071] | 254 | (defmethod multiply-by ((self term) (other poly))
|
---|
| 255 | "Multiply a term SELF by polynomial OTHER."
|
---|
| 256 | (multiply-by other self))
|
---|
[4331] | 257 | |#
|
---|
[4071] | 258 |
|
---|
[2761] | 259 | (defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
|
---|
[2755] | 260 | "Return an expression which will efficiently adds/subtracts two
|
---|
| 261 | polynomials, P and Q. The addition/subtraction of coefficients is
|
---|
[3878] | 262 | performed by calling ADD/SUBTRACT-FN. If UMINUS-FN is supplied, it is
|
---|
| 263 | used to negate the coefficients of Q which do not have a corresponding
|
---|
| 264 | coefficient in P. The code implements an efficient algorithm to add
|
---|
| 265 | two polynomials represented as sorted lists of terms. The code
|
---|
| 266 | destroys both arguments, reusing the terms to build the result."
|
---|
[3631] | 267 | `(macrolet ((lc (x) `(term-coeff (car ,x))))
|
---|
[2742] | 268 | (do ((p ,p)
|
---|
| 269 | (q ,q)
|
---|
| 270 | r)
|
---|
| 271 | ((or (endp p) (endp q))
|
---|
| 272 | ;; NOTE: R contains the result in reverse order. Can it
|
---|
| 273 | ;; be more efficient to produce the terms in correct order?
|
---|
[2774] | 274 | (unless (endp q)
|
---|
[2776] | 275 | ;; Upon subtraction, we must change the sign of
|
---|
| 276 | ;; all coefficients in q
|
---|
[2774] | 277 | ,@(when uminus-fn
|
---|
[2775] | 278 | `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
|
---|
[2774] | 279 | (setf r (nreconc r q)))
|
---|
[3887] | 280 | (unless (endp p)
|
---|
| 281 | (setf r (nreconc r p)))
|
---|
| 282 | r)
|
---|
[2742] | 283 | (multiple-value-bind
|
---|
| 284 | (greater-p equal-p)
|
---|
[3632] | 285 | (funcall ,order-fn (car p) (car q))
|
---|
[2742] | 286 | (cond
|
---|
| 287 | (greater-p
|
---|
| 288 | (rotatef (cdr p) r p)
|
---|
| 289 | )
|
---|
| 290 | (equal-p
|
---|
[2766] | 291 | (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
|
---|
[2742] | 292 | (cond
|
---|
[3640] | 293 | ((universal-zerop s)
|
---|
[2742] | 294 | (setf p (cdr p))
|
---|
| 295 | )
|
---|
| 296 | (t
|
---|
| 297 | (setf (lc p) s)
|
---|
| 298 | (rotatef (cdr p) r p))))
|
---|
| 299 | (setf q (cdr q))
|
---|
| 300 | )
|
---|
| 301 | (t
|
---|
[2743] | 302 | ;;Negate the term of Q if UMINUS provided, signallig
|
---|
| 303 | ;;that we are doing subtraction
|
---|
[2908] | 304 | ,(when uminus-fn
|
---|
| 305 | `(setf (lc q) (funcall ,uminus-fn (lc q))))
|
---|
[3887] | 306 | (rotatef (cdr q) r q))))
|
---|
| 307 | ;;(format t "P:~A~%" p)
|
---|
| 308 | ;;(format t "Q:~A~%" q)
|
---|
| 309 | ;;(format t "R:~A~%" r)
|
---|
| 310 | )))
|
---|
[3647] | 311 |
|
---|
[3884] | 312 | #|
|
---|
[3750] | 313 | (defmacro def-add/subtract-method (add/subtract-method-name
|
---|
[3749] | 314 | uminus-method-name
|
---|
| 315 | &optional
|
---|
| 316 | (doc-string nil doc-string-supplied-p))
|
---|
[3647] | 317 | "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
|
---|
[2749] | 318 | `(defmethod ,add/subtract-method-name ((self poly) (other poly))
|
---|
[2615] | 319 | ,@(when doc-string-supplied-p `(,doc-string))
|
---|
[2769] | 320 | ;; Ensure orders are compatible
|
---|
[3015] | 321 | (change-term-order other self)
|
---|
[2772] | 322 | (setf (poly-termlist self) (fast-add/subtract
|
---|
| 323 | (poly-termlist self) (poly-termlist other)
|
---|
| 324 | (poly-term-order self)
|
---|
| 325 | #',add/subtract-method-name
|
---|
| 326 | ,(when uminus-method-name `(function ,uminus-method-name))))
|
---|
[3748] | 327 | self))
|
---|
[3908] | 328 |
|
---|
| 329 | (eval-when (:load-toplevel :execute)
|
---|
| 330 |
|
---|
| 331 | (def-add/subtract-method add-to nil
|
---|
| 332 | "Adds to polynomial SELF another polynomial OTHER.
|
---|
| 333 | This operation destructively modifies both polynomials.
|
---|
| 334 | The result is stored in SELF. This implementation does
|
---|
| 335 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
| 336 |
|
---|
| 337 | (def-add/subtract-method subtract-from unary-minus
|
---|
| 338 | "Subtracts from polynomial SELF another polynomial OTHER.
|
---|
| 339 | This operation destructively modifies both polynomials.
|
---|
| 340 | The result is stored in SELF. This implementation does
|
---|
| 341 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
| 342 | )
|
---|
| 343 |
|
---|
[3884] | 344 | |#
|
---|
[2487] | 345 |
|
---|
[3880] | 346 | (defmethod unary-minus ((self poly))
|
---|
| 347 | "Destructively modifies the coefficients of the polynomial SELF,
|
---|
| 348 | by changing their sign."
|
---|
| 349 | (mapc #'unary-minus (poly-termlist self))
|
---|
| 350 | self)
|
---|
| 351 |
|
---|
| 352 | (defun add-termlists (p q order-fn)
|
---|
| 353 | "Destructively adds two termlists P and Q ordered according to ORDER-FN."
|
---|
| 354 | (fast-add/subtract p q order-fn #'add-to nil))
|
---|
| 355 |
|
---|
[3881] | 356 | (defun subtract-termlists (p q order-fn)
|
---|
[3885] | 357 | "Destructively subtracts two termlists P and Q ordered according to ORDER-FN."
|
---|
[3882] | 358 | (fast-add/subtract p q order-fn #'subtract-from #'unary-minus))
|
---|
[3881] | 359 |
|
---|
[4215] | 360 | (defmethod add-to ((self poly) (other poly) &aux (other-copy (copy-instance other)))
|
---|
[3879] | 361 | "Adds to polynomial SELF another polynomial OTHER.
|
---|
[2610] | 362 | This operation destructively modifies both polynomials.
|
---|
| 363 | The result is stored in SELF. This implementation does
|
---|
[3879] | 364 | no consing, entirely reusing the sells of SELF and OTHER."
|
---|
[4215] | 365 | (change-term-order other-copy self)
|
---|
[3879] | 366 | (setf (poly-termlist self) (add-termlists
|
---|
[4215] | 367 | (poly-termlist self) (poly-termlist other-copy)
|
---|
[3883] | 368 | (poly-term-order self)))
|
---|
| 369 | self)
|
---|
[3879] | 370 |
|
---|
[2609] | 371 |
|
---|
[4215] | 372 | (defmethod subtract-from ((self poly) (other poly) &aux (other-copy (copy-instance other)))
|
---|
| 373 | "Subtracts from polynomial SELF another polynomial OTHER.
|
---|
[2610] | 374 | This operation destructively modifies both polynomials.
|
---|
| 375 | The result is stored in SELF. This implementation does
|
---|
[3879] | 376 | no consing, entirely reusing the sells of SELF and OTHER."
|
---|
[4215] | 377 | (change-term-order other-copy self)
|
---|
[3879] | 378 | (setf (poly-termlist self) (subtract-termlists
|
---|
[4215] | 379 | (poly-termlist self) (poly-termlist other-copy)
|
---|
[3883] | 380 | (poly-term-order self)))
|
---|
| 381 | self)
|
---|
[2777] | 382 |
|
---|
[4103] | 383 |
|
---|
[4215] | 384 | (defmethod add-to ((self poly) (other term) &aux (other-copy (copy-instance other)))
|
---|
[4105] | 385 | "Adds to a polynomial SELF a term OTHER. The term OTHER is not
|
---|
| 386 | modified."
|
---|
[4215] | 387 | (add-to self (change-class other-copy 'poly)))
|
---|
[4103] | 388 |
|
---|
[4216] | 389 | (defmethod subtract-from ((self poly) (other term) &aux (other-copy (copy-instance other)))
|
---|
[4105] | 390 | "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not
|
---|
| 391 | modified."
|
---|
[4216] | 392 | (subtract-from self (change-class other-copy 'poly)))
|
---|
[4103] | 393 |
|
---|
| 394 |
|
---|
[2800] | 395 | (defmacro multiply-term-by-termlist-dropping-zeros (term termlist
|
---|
[2927] | 396 | &optional (reverse-arg-order-P nil))
|
---|
[2799] | 397 | "Multiplies term TERM by a list of term, TERMLIST.
|
---|
[2792] | 398 | Takes into accound divisors of zero in the ring, by
|
---|
[2927] | 399 | deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
|
---|
[2928] | 400 | is T, change the order of arguments; this may be important
|
---|
[2927] | 401 | if we extend the package to non-commutative rings."
|
---|
[2800] | 402 | `(mapcan #'(lambda (other-term)
|
---|
[3633] | 403 | (let ((prod (multiply
|
---|
[2923] | 404 | ,@(cond
|
---|
[2930] | 405 | (reverse-arg-order-p
|
---|
[2925] | 406 | `(other-term ,term))
|
---|
| 407 | (t
|
---|
| 408 | `(,term other-term))))))
|
---|
[2800] | 409 | (cond
|
---|
[3633] | 410 | ((universal-zerop prod) nil)
|
---|
[2800] | 411 | (t (list prod)))))
|
---|
| 412 | ,termlist))
|
---|
[2790] | 413 |
|
---|
[2796] | 414 | (defun multiply-termlists (p q order-fn)
|
---|
[3127] | 415 | "A version of polynomial multiplication, operating
|
---|
| 416 | directly on termlists."
|
---|
[2787] | 417 | (cond
|
---|
[2917] | 418 | ((or (endp p) (endp q))
|
---|
| 419 | ;;p or q is 0 (represented by NIL)
|
---|
| 420 | nil)
|
---|
[2789] | 421 | ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
|
---|
[2787] | 422 | ((endp (cdr p))
|
---|
[2918] | 423 | (multiply-term-by-termlist-dropping-zeros (car p) q))
|
---|
| 424 | ((endp (cdr q))
|
---|
[2919] | 425 | (multiply-term-by-termlist-dropping-zeros (car q) p t))
|
---|
| 426 | (t
|
---|
[4101] | 427 | (cons (multiply (car p) (car q))
|
---|
[2949] | 428 | (add-termlists
|
---|
| 429 | (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
|
---|
| 430 | (multiply-termlists (cdr p) q order-fn)
|
---|
| 431 | order-fn)))))
|
---|
[2793] | 432 |
|
---|
[4331] | 433 | (defmethod multiply-by ((self poly) (other poly) &aux (other-copy (copy-instance other)))
|
---|
| 434 | (change-term-order other-copy self)
|
---|
[2803] | 435 | (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
|
---|
[4331] | 436 | (poly-termlist other-copy)
|
---|
[2803] | 437 | (poly-term-order self)))
|
---|
| 438 | self)
|
---|
| 439 |
|
---|
[4117] | 440 | (defun add (summand &rest more-summands)
|
---|
| 441 | "Successively Adds to SUMMAND the elements of MORE-SUMMANDS."
|
---|
[4119] | 442 | (reduce #'add-to more-summands :initial-value summand))
|
---|
[3803] | 443 |
|
---|
[3634] | 444 | (defun subtract (minuend &rest subtrahends)
|
---|
[3427] | 445 | "Non-destructively subtract MINUEND and SUBTRAHENDS."
|
---|
[3851] | 446 | (cond ((endp subtrahends) (unary-minus minuend))
|
---|
| 447 | (t (subtract-from (copy-instance minuend) (reduce #'add subtrahends)))))
|
---|
[3374] | 448 |
|
---|
[3062] | 449 | (defmethod left-tensor-product-by ((self poly) (other monom))
|
---|
| 450 | (setf (poly-termlist self)
|
---|
| 451 | (mapcan #'(lambda (term)
|
---|
| 452 | (let ((prod (left-tensor-product-by term other)))
|
---|
| 453 | (cond
|
---|
[3640] | 454 | ((universal-zerop prod) nil)
|
---|
[3062] | 455 | (t (list prod)))))
|
---|
| 456 | (poly-termlist self)))
|
---|
[3249] | 457 | (incf (poly-dimension self) (monom-dimension other))
|
---|
[3062] | 458 | self)
|
---|
[3044] | 459 |
|
---|
[3062] | 460 | (defmethod right-tensor-product-by ((self poly) (other monom))
|
---|
| 461 | (setf (poly-termlist self)
|
---|
| 462 | (mapcan #'(lambda (term)
|
---|
| 463 | (let ((prod (right-tensor-product-by term other)))
|
---|
| 464 | (cond
|
---|
[3640] | 465 | ((universal-zerop prod) nil)
|
---|
[3062] | 466 | (t (list prod)))))
|
---|
| 467 | (poly-termlist self)))
|
---|
[3249] | 468 | (incf (poly-dimension self) (monom-dimension other))
|
---|
[3062] | 469 | self)
|
---|
| 470 |
|
---|
| 471 |
|
---|
[3084] | 472 | (defun standard-extension (plist &aux (k (length plist)) (i 0))
|
---|
[2716] | 473 | "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
|
---|
[3060] | 474 | is a list of polynomials. Destructively modifies PLIST elements."
|
---|
[3061] | 475 | (mapc #'(lambda (poly)
|
---|
[3085] | 476 | (left-tensor-product-by
|
---|
| 477 | poly
|
---|
| 478 | (prog1
|
---|
| 479 | (make-monom-variable k i)
|
---|
| 480 | (incf i))))
|
---|
[3061] | 481 | plist))
|
---|
[52] | 482 |
|
---|
[3087] | 483 | (defun standard-extension-1 (plist
|
---|
| 484 | &aux
|
---|
[3096] | 485 | (plist (standard-extension plist))
|
---|
[3087] | 486 | (nvars (poly-dimension (car plist))))
|
---|
[3081] | 487 | "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
|
---|
[3087] | 488 | Firstly, new K variables U1, U2, ..., UK, are inserted into each
|
---|
| 489 | polynomial. Subsequently, P1, P2, ..., PK are destructively modified
|
---|
[3105] | 490 | tantamount to replacing PI with UI*PI-1. It assumes that all
|
---|
[3106] | 491 | polynomials have the same dimension, and only the first polynomial
|
---|
| 492 | is examined to determine this dimension."
|
---|
[3089] | 493 | ;; Implementation note: we use STANDARD-EXTENSION and then subtract
|
---|
| 494 | ;; 1 from each polynomial; since UI*PI has no constant term,
|
---|
| 495 | ;; we just need to append the constant term at the end
|
---|
| 496 | ;; of each termlist.
|
---|
[3064] | 497 | (flet ((subtract-1 (p)
|
---|
[3641] | 498 | (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
|
---|
[3083] | 499 | (setf plist (mapc #'subtract-1 plist)))
|
---|
[3077] | 500 | plist)
|
---|
[52] | 501 |
|
---|
| 502 |
|
---|
[3107] | 503 | (defun standard-sum (plist
|
---|
| 504 | &aux
|
---|
| 505 | (plist (standard-extension plist))
|
---|
| 506 | (nvars (poly-dimension (car plist))))
|
---|
[3087] | 507 | "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
|
---|
| 508 | Firstly, new K variables, U1, U2, ..., UK, are inserted into each
|
---|
| 509 | polynomial. Subsequently, P1, P2, ..., PK are destructively modified
|
---|
| 510 | tantamount to replacing PI with UI*PI, and the resulting polynomials
|
---|
[3117] | 511 | are added. Finally, 1 is subtracted. It should be noted that the term
|
---|
| 512 | order is not modified, which is equivalent to using a lexicographic
|
---|
| 513 | order on the first K variables."
|
---|
[3107] | 514 | (flet ((subtract-1 (p)
|
---|
[3641] | 515 | (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
|
---|
[3108] | 516 | (subtract-1
|
---|
| 517 | (make-instance
|
---|
| 518 | 'poly
|
---|
[3115] | 519 | :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
|
---|
[52] | 520 |
|
---|
[3655] | 521 | (defgeneric s-polynomial (object1 object2)
|
---|
[3651] | 522 | (:documentation "Yields the S-polynomial of OBJECT1 and OBJECT2.")
|
---|
| 523 | (:method ((f poly) (g poly))
|
---|
| 524 | (let* ((lcm (universal-lcm (leading-monomial f) (leading-monomial g)))
|
---|
| 525 | (mf (divide lcm (leading-monomial f)))
|
---|
| 526 | (mg (divide lcm (leading-monomial g))))
|
---|
| 527 | (multiple-value-bind (c cf cg)
|
---|
[3652] | 528 | (universal-ezgcd (leading-coefficient f) (leading-coefficient g))
|
---|
[3651] | 529 | (declare (ignore c))
|
---|
| 530 | (subtract
|
---|
[4111] | 531 | (multiply f (change-class mf 'term :coeff cg))
|
---|
| 532 | (multiply g (change-class mg 'term :coeff cf)))))))
|
---|
[3651] | 533 |
|
---|
[3676] | 534 | (defgeneric poly-content (object)
|
---|
| 535 | (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.")
|
---|
[3677] | 536 | (:method ((self poly))
|
---|
| 537 | (reduce #'universal-gcd
|
---|
[3679] | 538 | (mapcar #'term-coeff (rest (poly-termlist self)))
|
---|
| 539 | :initial-value (leading-coefficient self))))
|
---|
[3676] | 540 |
|
---|
[4334] | 541 | (defun poly-primitive-part (self)
|
---|
| 542 | "Divide polynomial SELF by gcd of its
|
---|
[3684] | 543 | coefficients. Return the resulting polynomial."
|
---|
[4334] | 544 | (scalar-divide-by self (poly-content self)))
|
---|
[3682] | 545 |
|
---|
[3700] | 546 | (defun poly-insert-variables (self k)
|
---|
[3697] | 547 | (left-tensor-product-by self (make-instance 'monom :dimension k)))
|
---|
| 548 |
|
---|
[3698] | 549 | (defun saturation-extension (f plist &aux (k (length plist)))
|
---|
[3708] | 550 | "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where
|
---|
| 551 | PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted
|
---|
[3711] | 552 | as first K variables. It destructively modifies F and PLIST."
|
---|
[3700] | 553 | (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
|
---|
[3699] | 554 | (standard-extension-1 plist)))
|
---|
[3694] | 555 |
|
---|
[3699] | 556 | (defun polysaturation-extension (f plist &aux (k (length plist)))
|
---|
[3708] | 557 | "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]
|
---|
| 558 | and F' is F with variables U1,U2,...,UK inserted as first K
|
---|
[3711] | 559 | variables. It destructively modifies F and PLIST."
|
---|
[3700] | 560 | (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
|
---|
[3703] | 561 | (list (standard-sum plist))))
|
---|
[3694] | 562 |
|
---|
[3691] | 563 | (defun saturation-extension-1 (f p)
|
---|
[3712] | 564 | "Given family of polynomials F and a polynomial P, calculate [F',
|
---|
| 565 | U*P-1], where F' is F with variable inserted as the first variable. It
|
---|
| 566 | destructively modifies F and P."
|
---|
[3693] | 567 | (polysaturation-extension f (list p)))
|
---|
[3713] | 568 |
|
---|
[4305] | 569 | (defmethod multiply-by ((self poly) (other ring))
|
---|
[4306] | 570 | (scalar-multiply-by self other))
|
---|
[4068] | 571 |
|
---|
[3781] | 572 | (defun make-poly-variable (nvars pos &optional (power 1))
|
---|
| 573 | (change-class (make-monom-variable nvars pos power) 'poly))
|
---|
[3736] | 574 |
|
---|
[3821] | 575 | (defun make-poly-constant (nvars coeff)
|
---|
| 576 | (change-class (make-term-constant nvars coeff) 'poly))
|
---|
| 577 |
|
---|
[3713] | 578 | (defgeneric universal-expt (x y)
|
---|
[3721] | 579 | (:documentation "Raises X to power Y.")
|
---|
[3713] | 580 | (:method ((x number) (y integer)) (expt x y))
|
---|
| 581 | (:method ((x t) (y integer))
|
---|
| 582 | (declare (type fixnum y))
|
---|
| 583 | (cond
|
---|
| 584 | ((minusp y) (error "universal-expt: Negative exponent."))
|
---|
| 585 | ((universal-zerop x) (if (zerop y) 1))
|
---|
| 586 | (t
|
---|
| 587 | (do ((k 1 (ash k 1))
|
---|
| 588 | (q x (multiply q q)) ;keep squaring
|
---|
[4119] | 589 | (p (make-unit-for x) (if (not (zerop (logand k y))) (multiply p q) p)))
|
---|
[3713] | 590 | ((> k y) p)
|
---|
[3778] | 591 | (declare (fixnum k)))))))
|
---|
| 592 |
|
---|
| 593 | (defgeneric poly-p (object)
|
---|
| 594 | (:documentation "Checks if an object is a polynomial.")
|
---|
[3779] | 595 | (:method ((self poly)) t)
|
---|
[3778] | 596 | (:method ((self t)) nil))
|
---|
[3830] | 597 |
|
---|
[4021] | 598 | (defmethod ->sexp :before ((self poly) &optional vars)
|
---|
[3905] | 599 | "Ensures that the number of variables in VARS maches the polynomial dimension of the
|
---|
| 600 | polynomial SELF."
|
---|
[4027] | 601 | (with-slots (dimension)
|
---|
| 602 | self
|
---|
| 603 | (assert (= (length vars) dimension)
|
---|
[4028] | 604 | nil
|
---|
[4027] | 605 | "Number of variables ~S does not match the dimension ~S"
|
---|
| 606 | vars dimension)))
|
---|
[3904] | 607 |
|
---|
[4021] | 608 | (defmethod ->sexp ((self poly) &optional vars)
|
---|
[3905] | 609 | "Converts a polynomial SELF to a sexp."
|
---|
[4036] | 610 | (let ((m (mapcar #'(lambda (x) (->sexp x vars))
|
---|
[3830] | 611 | (poly-termlist self))))
|
---|
[4053] | 612 | (cond ((endp m) 0)
|
---|
[4036] | 613 | ((endp (cdr m)) (car m))
|
---|
| 614 | (t (cons '+ m)))))
|
---|
[3899] | 615 |
|
---|
[3903] | 616 | (defparameter +list-marker+ :[
|
---|
| 617 | "A sexp with this head is considered a list of polynomials.")
|
---|
| 618 |
|
---|
[4021] | 619 | (defmethod ->sexp ((self cons) &optional vars)
|
---|
[3906] | 620 | (assert (eql (car self) +list-marker+))
|
---|
[4021] | 621 | (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self))))
|
---|
[3906] | 622 |
|
---|
| 623 |
|
---|
[4343] | 624 | (defun poly-eval (expr vars order &optional (coefficient-class 'rational-field))
|
---|
[3899] | 625 | "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in
|
---|
| 626 | variables VARS. Return the resulting polynomial or list of
|
---|
| 627 | polynomials. Standard arithmetical operators in form EXPR are
|
---|
| 628 | replaced with their analogues in the ring of polynomials, and the
|
---|
| 629 | resulting expression is evaluated, resulting in a polynomial or a list
|
---|
| 630 | of polynomials in internal form. A similar operation in another computer
|
---|
| 631 | algebra system could be called 'expand' or so."
|
---|
| 632 | (labels ((p-eval (p) (poly-eval p vars order))
|
---|
| 633 | (p-eval-list (plist) (mapcar #'p-eval plist)))
|
---|
| 634 | (cond
|
---|
| 635 | ((eq expr 0)
|
---|
| 636 | (make-instance 'poly :dimension (length vars)))
|
---|
| 637 | ((member expr vars :test #'equalp)
|
---|
| 638 | (let ((pos (position expr vars :test #'equalp)))
|
---|
| 639 | (make-poly-variable (length vars) pos)))
|
---|
[4338] | 640 | ((numberp expr)
|
---|
[4343] | 641 | (make-poly-constant (length vars) (make-instance coefficient-class :value expr)))
|
---|
[3899] | 642 | ((eq (car expr) +list-marker+)
|
---|
| 643 | (cons +list-marker+ (p-eval-list (cdr expr))))
|
---|
| 644 | (t
|
---|
| 645 | (case (car expr)
|
---|
| 646 | (+ (reduce #'add (p-eval-list (cdr expr))))
|
---|
| 647 | (- (apply #'subtract (p-eval-list (cdr expr))))
|
---|
| 648 | (*
|
---|
| 649 | (if (endp (cddr expr)) ;unary
|
---|
| 650 | (p-eval (cadr expr))
|
---|
[4101] | 651 | (apply #'multiply (p-eval-list (cdr expr)))))
|
---|
[3899] | 652 | (/
|
---|
| 653 | ;; A polynomial can be divided by a scalar
|
---|
| 654 | (cond
|
---|
| 655 | ((endp (cddr expr))
|
---|
| 656 | ;; A special case (/ ?), the inverse
|
---|
| 657 | (divide (cadr expr)))
|
---|
| 658 | (t
|
---|
| 659 | (let ((num (p-eval (cadr expr)))
|
---|
[4016] | 660 | (denom-inverse (apply #'divide (mapcar #'p-eval (cddr expr)))))
|
---|
[3899] | 661 | (multiply denom-inverse num)))))
|
---|
| 662 | (expt
|
---|
| 663 | (cond
|
---|
| 664 | ((member (cadr expr) vars :test #'equalp)
|
---|
| 665 | ;;Special handling of (expt var pow)
|
---|
| 666 | (let ((pos (position (cadr expr) vars :test #'equalp)))
|
---|
| 667 | (make-poly-variable (length vars) pos (caddr expr))))
|
---|
| 668 | ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
|
---|
| 669 | ;; Negative power means division in coefficient ring
|
---|
| 670 | ;; Non-integer power means non-polynomial coefficient
|
---|
| 671 | expr)
|
---|
| 672 | (t (universal-expt (p-eval (cadr expr)) (caddr expr)))))
|
---|
| 673 | (otherwise
|
---|
[4017] | 674 | (error "Cannot evaluate as polynomial: ~A" expr)))))))
|
---|
[4053] | 675 |
|
---|
[4277] | 676 | (defmethod make-zero-for ((self poly))
|
---|
| 677 | (make-instance 'poly :dimension (poly-dimension self)))
|
---|
[4053] | 678 |
|
---|
[4277] | 679 | (defmethod make-unit-for ((self poly))
|
---|
| 680 | (make-poly-constant (poly-dimension self) 1))
|
---|
[4057] | 681 |
|
---|
[4068] | 682 | (defgeneric poly-reverse (self)
|
---|
[4061] | 683 | (:documentation "Reverse the order of terms in a polynomial SELF.")
|
---|
[4057] | 684 | (:method ((self poly))
|
---|
| 685 | (with-slots (termlist)
|
---|
| 686 | self
|
---|
[4060] | 687 | (setf termlist (nreverse termlist)))
|
---|
[4057] | 688 | self))
|
---|
| 689 |
|
---|
| 690 |
|
---|
[4053] | 691 |
|
---|