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