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