[1201] | 1 | ;;; -*- Mode: Lisp -*-
|
---|
[77] | 2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 3 | ;;;
|
---|
| 4 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
| 5 | ;;;
|
---|
| 6 | ;;; This program is free software; you can redistribute it and/or modify
|
---|
| 7 | ;;; it under the terms of the GNU General Public License as published by
|
---|
| 8 | ;;; the Free Software Foundation; either version 2 of the License, or
|
---|
| 9 | ;;; (at your option) any later version.
|
---|
| 10 | ;;;
|
---|
| 11 | ;;; This program is distributed in the hope that it will be useful,
|
---|
| 12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | ;;; GNU General Public License for more details.
|
---|
| 15 | ;;;
|
---|
| 16 | ;;; You should have received a copy of the GNU General Public License
|
---|
| 17 | ;;; along with this program; if not, write to the Free Software
|
---|
| 18 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
| 19 | ;;;
|
---|
| 20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 21 |
|
---|
[431] | 22 | (defpackage "POLYNOMIAL"
|
---|
[3129] | 23 | (:use :cl :utils :ring :monom :order :term)
|
---|
[2596] | 24 | (:export "POLY"
|
---|
| 25 | "POLY-TERMLIST"
|
---|
[3016] | 26 | "POLY-TERM-ORDER"
|
---|
[3071] | 27 | "CHANGE-TERM-ORDER"
|
---|
[3099] | 28 | "STANDARD-EXTENSION"
|
---|
[3101] | 29 | "STANDARD-EXTENSION-1"
|
---|
[3109] | 30 | "STANDARD-SUM"
|
---|
[3094] | 31 | "SATURATION-EXTENSION"
|
---|
| 32 | "ALIST->POLY")
|
---|
[3129] | 33 | (:documentation "Implements polynomials."))
|
---|
[143] | 34 |
|
---|
[431] | 35 | (in-package :polynomial)
|
---|
| 36 |
|
---|
[1927] | 37 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[52] | 38 |
|
---|
[2442] | 39 | (defclass poly ()
|
---|
[3242] | 40 | ((dimension :initarg :dimension :accessor poly-dimension
|
---|
| 41 | :documentation "Shared dimension of all terms, the number of variables")
|
---|
| 42 | (termlist :initarg :termlist :accessor poly-termlist
|
---|
[2697] | 43 | :documentation "List of terms.")
|
---|
| 44 | (order :initarg :order :accessor poly-term-order
|
---|
| 45 | :documentation "Monomial/term order."))
|
---|
[3244] | 46 | (:default-initargs :dimension nil :termlist nil :order #'lex>)
|
---|
[2695] | 47 | (:documentation "A polynomial with a list of terms TERMLIST, ordered
|
---|
[2696] | 48 | according to term order ORDER, which defaults to LEX>."))
|
---|
[2442] | 49 |
|
---|
[2471] | 50 | (defmethod print-object ((self poly) stream)
|
---|
[3241] | 51 | (print-unreadable-object (self stream :type t :identity t)
|
---|
[3243] | 52 | (with-accessors ((dimension poly-dimension)
|
---|
| 53 | (termlist poly-termlist)
|
---|
| 54 | (order poly-term-order))
|
---|
[3237] | 55 | self
|
---|
[3244] | 56 | (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A"
|
---|
| 57 | dimension termlist order))))
|
---|
[2469] | 58 |
|
---|
[3015] | 59 | (defgeneric change-term-order (self other)
|
---|
[3012] | 60 | (:documentation "Change term order of SELF to the term order of OTHER.")
|
---|
[3010] | 61 | (:method ((self poly) (other poly))
|
---|
| 62 | (unless (eq (poly-term-order self) (poly-term-order other))
|
---|
| 63 | (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
|
---|
| 64 | (poly-term-order self) (poly-term-order other)))
|
---|
[3012] | 65 | self))
|
---|
[3010] | 66 |
|
---|
[3095] | 67 | (defun alist->poly (alist &aux (poly (make-instance 'poly)))
|
---|
[3126] | 68 | "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...).
|
---|
| 69 | It can be used to enter simple polynomials by hand, e.g the polynomial
|
---|
| 70 | in two variables, X and Y, given in standard notation as:
|
---|
| 71 |
|
---|
| 72 | 3*X^2*Y^3+2*Y+7
|
---|
| 73 |
|
---|
| 74 | can be entered as
|
---|
| 75 | (ALIST->POLY '(((2 3) . 3) ((0 1) . 2) ((0 0) . 7))).
|
---|
| 76 |
|
---|
| 77 | NOTE: The primary use is for low-level debugging of the package."
|
---|
[3099] | 78 | (dolist (x alist poly)
|
---|
[3095] | 79 | (insert-item poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
|
---|
[3092] | 80 |
|
---|
| 81 |
|
---|
[2650] | 82 | (defmethod r-equalp ((self poly) (other poly))
|
---|
[2680] | 83 | "POLY instances are R-EQUALP if they have the same
|
---|
| 84 | order and if all terms are R-EQUALP."
|
---|
[2651] | 85 | (and (every #'r-equalp (poly-termlist self) (poly-termlist other))
|
---|
| 86 | (eq (poly-term-order self) (poly-term-order other))))
|
---|
[2650] | 87 |
|
---|
[2513] | 88 | (defmethod insert-item ((self poly) (item term))
|
---|
[3245] | 89 | (assert (= (monom-dimension item) (poly-dimension self)))
|
---|
[2513] | 90 | (push item (poly-termlist self))
|
---|
[2514] | 91 | self)
|
---|
[2464] | 92 |
|
---|
[2513] | 93 | (defmethod append-item ((self poly) (item term))
|
---|
[3245] | 94 | (assert (= (monom-dimension item) (poly-dimension self)))
|
---|
[2513] | 95 | (setf (cdr (last (poly-termlist self))) (list item))
|
---|
| 96 | self)
|
---|
[2466] | 97 |
|
---|
[52] | 98 | ;; Leading term
|
---|
[2442] | 99 | (defgeneric leading-term (object)
|
---|
| 100 | (:method ((self poly))
|
---|
[2525] | 101 | (car (poly-termlist self)))
|
---|
| 102 | (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
|
---|
[52] | 103 |
|
---|
| 104 | ;; Second term
|
---|
[2442] | 105 | (defgeneric second-leading-term (object)
|
---|
| 106 | (:method ((self poly))
|
---|
[2525] | 107 | (cadar (poly-termlist self)))
|
---|
| 108 | (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
|
---|
[52] | 109 |
|
---|
| 110 | ;; Leading coefficient
|
---|
[2442] | 111 | (defgeneric leading-coefficient (object)
|
---|
| 112 | (:method ((self poly))
|
---|
[3221] | 113 | (scalar-coeff (leading-term self)))
|
---|
[2545] | 114 | (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
|
---|
[52] | 115 |
|
---|
| 116 | ;; Second coefficient
|
---|
[2442] | 117 | (defgeneric second-leading-coefficient (object)
|
---|
| 118 | (:method ((self poly))
|
---|
[3221] | 119 | (scalar-coeff (second-leading-term self)))
|
---|
[2906] | 120 | (:documentation "The second leading coefficient of a polynomial. It
|
---|
| 121 | signals error for a polynomial with at most one term."))
|
---|
[52] | 122 |
|
---|
| 123 | ;; Testing for a zero polynomial
|
---|
[2445] | 124 | (defmethod r-zerop ((self poly))
|
---|
| 125 | (null (poly-termlist self)))
|
---|
[52] | 126 |
|
---|
| 127 | ;; The number of terms
|
---|
[2445] | 128 | (defmethod r-length ((self poly))
|
---|
| 129 | (length (poly-termlist self)))
|
---|
[52] | 130 |
|
---|
[2483] | 131 | (defmethod multiply-by ((self poly) (other monom))
|
---|
[3246] | 132 | (assert (= (monom-dimension self) (poly-dimension other)))
|
---|
[2501] | 133 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
| 134 | (poly-termlist self))
|
---|
[2483] | 135 | self)
|
---|
[2469] | 136 |
|
---|
[3120] | 137 | (defmethod multiply-by ((self poly) (other term))
|
---|
[3246] | 138 | (assert (= (monom-dimension self) (monom-dimension other)))
|
---|
[3120] | 139 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
| 140 | (poly-termlist self))
|
---|
| 141 | self)
|
---|
| 142 |
|
---|
[2501] | 143 | (defmethod multiply-by ((self poly) (other scalar))
|
---|
[3246] | 144 | (assert (= (monom-dimension self) (monom-dimension other)))
|
---|
[2502] | 145 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
[2501] | 146 | (poly-termlist self))
|
---|
[2487] | 147 | self)
|
---|
| 148 |
|
---|
[2607] | 149 |
|
---|
[2761] | 150 | (defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
|
---|
[2755] | 151 | "Return an expression which will efficiently adds/subtracts two
|
---|
| 152 | polynomials, P and Q. The addition/subtraction of coefficients is
|
---|
| 153 | performed by calling ADD/SUBTRACT-METHOD-NAME. If UMINUS-METHOD-NAME
|
---|
| 154 | is supplied, it is used to negate the coefficients of Q which do not
|
---|
[2756] | 155 | have a corresponding coefficient in P. The code implements an
|
---|
| 156 | efficient algorithm to add two polynomials represented as sorted lists
|
---|
| 157 | of terms. The code destroys both arguments, reusing the terms to build
|
---|
| 158 | the result."
|
---|
[3221] | 159 | `(macrolet ((lc (x) `(scalar-coeff (car ,x))))
|
---|
[2742] | 160 | (do ((p ,p)
|
---|
| 161 | (q ,q)
|
---|
| 162 | r)
|
---|
| 163 | ((or (endp p) (endp q))
|
---|
| 164 | ;; NOTE: R contains the result in reverse order. Can it
|
---|
| 165 | ;; be more efficient to produce the terms in correct order?
|
---|
[2774] | 166 | (unless (endp q)
|
---|
[2776] | 167 | ;; Upon subtraction, we must change the sign of
|
---|
| 168 | ;; all coefficients in q
|
---|
[2774] | 169 | ,@(when uminus-fn
|
---|
[2775] | 170 | `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
|
---|
[2774] | 171 | (setf r (nreconc r q)))
|
---|
[2742] | 172 | r)
|
---|
| 173 | (multiple-value-bind
|
---|
| 174 | (greater-p equal-p)
|
---|
[2766] | 175 | (funcall ,order-fn (car p) (car q))
|
---|
[2742] | 176 | (cond
|
---|
| 177 | (greater-p
|
---|
| 178 | (rotatef (cdr p) r p)
|
---|
| 179 | )
|
---|
| 180 | (equal-p
|
---|
[2766] | 181 | (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
|
---|
[2742] | 182 | (cond
|
---|
| 183 | ((r-zerop s)
|
---|
| 184 | (setf p (cdr p))
|
---|
| 185 | )
|
---|
| 186 | (t
|
---|
| 187 | (setf (lc p) s)
|
---|
| 188 | (rotatef (cdr p) r p))))
|
---|
| 189 | (setf q (cdr q))
|
---|
| 190 | )
|
---|
| 191 | (t
|
---|
[2743] | 192 | ;;Negate the term of Q if UMINUS provided, signallig
|
---|
| 193 | ;;that we are doing subtraction
|
---|
[2908] | 194 | ,(when uminus-fn
|
---|
| 195 | `(setf (lc q) (funcall ,uminus-fn (lc q))))
|
---|
[2743] | 196 | (rotatef (cdr q) r q)))))))
|
---|
[2585] | 197 |
|
---|
[2655] | 198 |
|
---|
[2763] | 199 | (defmacro def-add/subtract-method (add/subtract-method-name
|
---|
[2752] | 200 | uminus-method-name
|
---|
| 201 | &optional
|
---|
[2913] | 202 | (doc-string nil doc-string-supplied-p))
|
---|
[2615] | 203 | "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
|
---|
[2749] | 204 | `(defmethod ,add/subtract-method-name ((self poly) (other poly))
|
---|
[2615] | 205 | ,@(when doc-string-supplied-p `(,doc-string))
|
---|
[2769] | 206 | ;; Ensure orders are compatible
|
---|
[3015] | 207 | (change-term-order other self)
|
---|
[2772] | 208 | (setf (poly-termlist self) (fast-add/subtract
|
---|
| 209 | (poly-termlist self) (poly-termlist other)
|
---|
| 210 | (poly-term-order self)
|
---|
| 211 | #',add/subtract-method-name
|
---|
| 212 | ,(when uminus-method-name `(function ,uminus-method-name))))
|
---|
[2609] | 213 | self))
|
---|
[2487] | 214 |
|
---|
[2916] | 215 | (eval-when (:compile-toplevel :load-toplevel :execute)
|
---|
[2777] | 216 |
|
---|
| 217 | (def-add/subtract-method add-to nil
|
---|
| 218 | "Adds to polynomial SELF another polynomial OTHER.
|
---|
[2610] | 219 | This operation destructively modifies both polynomials.
|
---|
| 220 | The result is stored in SELF. This implementation does
|
---|
[2752] | 221 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
[2609] | 222 |
|
---|
[2777] | 223 | (def-add/subtract-method subtract-from unary-minus
|
---|
[2753] | 224 | "Subtracts from polynomial SELF another polynomial OTHER.
|
---|
[2610] | 225 | This operation destructively modifies both polynomials.
|
---|
| 226 | The result is stored in SELF. This implementation does
|
---|
[2752] | 227 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
[2916] | 228 | )
|
---|
[2777] | 229 |
|
---|
[2691] | 230 | (defmethod unary-minus ((self poly))
|
---|
[2694] | 231 | "Destructively modifies the coefficients of the polynomial SELF,
|
---|
| 232 | by changing their sign."
|
---|
[2692] | 233 | (mapc #'unary-minus (poly-termlist self))
|
---|
[2683] | 234 | self)
|
---|
[52] | 235 |
|
---|
[2795] | 236 | (defun add-termlists (p q order-fn)
|
---|
[2794] | 237 | "Destructively adds two termlists P and Q ordered according to ORDER-FN."
|
---|
[2917] | 238 | (fast-add/subtract p q order-fn #'add-to nil))
|
---|
[2794] | 239 |
|
---|
[2800] | 240 | (defmacro multiply-term-by-termlist-dropping-zeros (term termlist
|
---|
[2927] | 241 | &optional (reverse-arg-order-P nil))
|
---|
[2799] | 242 | "Multiplies term TERM by a list of term, TERMLIST.
|
---|
[2792] | 243 | Takes into accound divisors of zero in the ring, by
|
---|
[2927] | 244 | deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
|
---|
[2928] | 245 | is T, change the order of arguments; this may be important
|
---|
[2927] | 246 | if we extend the package to non-commutative rings."
|
---|
[2800] | 247 | `(mapcan #'(lambda (other-term)
|
---|
[2907] | 248 | (let ((prod (r*
|
---|
[2923] | 249 | ,@(cond
|
---|
[2930] | 250 | (reverse-arg-order-p
|
---|
[2925] | 251 | `(other-term ,term))
|
---|
| 252 | (t
|
---|
| 253 | `(,term other-term))))))
|
---|
[2800] | 254 | (cond
|
---|
| 255 | ((r-zerop prod) nil)
|
---|
| 256 | (t (list prod)))))
|
---|
| 257 | ,termlist))
|
---|
[2790] | 258 |
|
---|
[2796] | 259 | (defun multiply-termlists (p q order-fn)
|
---|
[3127] | 260 | "A version of polynomial multiplication, operating
|
---|
| 261 | directly on termlists."
|
---|
[2787] | 262 | (cond
|
---|
[2917] | 263 | ((or (endp p) (endp q))
|
---|
| 264 | ;;p or q is 0 (represented by NIL)
|
---|
| 265 | nil)
|
---|
[2789] | 266 | ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
|
---|
[2787] | 267 | ((endp (cdr p))
|
---|
[2918] | 268 | (multiply-term-by-termlist-dropping-zeros (car p) q))
|
---|
| 269 | ((endp (cdr q))
|
---|
[2919] | 270 | (multiply-term-by-termlist-dropping-zeros (car q) p t))
|
---|
| 271 | (t
|
---|
[2948] | 272 | (cons (r* (car p) (car q))
|
---|
[2949] | 273 | (add-termlists
|
---|
| 274 | (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
|
---|
| 275 | (multiply-termlists (cdr p) q order-fn)
|
---|
| 276 | order-fn)))))
|
---|
[2793] | 277 |
|
---|
[2803] | 278 | (defmethod multiply-by ((self poly) (other poly))
|
---|
[3247] | 279 | (assert (= (monom-dimension self) (monom-dimension other)))
|
---|
[3014] | 280 | (change-term-order other self)
|
---|
[2803] | 281 | (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
|
---|
| 282 | (poly-termlist other)
|
---|
| 283 | (poly-term-order self)))
|
---|
| 284 | self)
|
---|
| 285 |
|
---|
[2939] | 286 | (defmethod r* ((poly1 poly) (poly2 poly))
|
---|
| 287 | "Non-destructively multiply POLY1 by POLY2."
|
---|
| 288 | (multiply-by (copy-instance POLY1) (copy-instance POLY2)))
|
---|
[2916] | 289 |
|
---|
[3044] | 290 | (defmethod left-tensor-product-by ((self poly) (other term))
|
---|
| 291 | (setf (poly-termlist self)
|
---|
| 292 | (mapcan #'(lambda (term)
|
---|
[3047] | 293 | (let ((prod (left-tensor-product-by term other)))
|
---|
[3044] | 294 | (cond
|
---|
| 295 | ((r-zerop prod) nil)
|
---|
| 296 | (t (list prod)))))
|
---|
[3048] | 297 | (poly-termlist self)))
|
---|
[3044] | 298 | self)
|
---|
| 299 |
|
---|
| 300 | (defmethod right-tensor-product-by ((self poly) (other term))
|
---|
[3045] | 301 | (setf (poly-termlist self)
|
---|
| 302 | (mapcan #'(lambda (term)
|
---|
[3046] | 303 | (let ((prod (right-tensor-product-by term other)))
|
---|
[3045] | 304 | (cond
|
---|
| 305 | ((r-zerop prod) nil)
|
---|
| 306 | (t (list prod)))))
|
---|
[3048] | 307 | (poly-termlist self)))
|
---|
[3045] | 308 | self)
|
---|
[3044] | 309 |
|
---|
[3062] | 310 | (defmethod left-tensor-product-by ((self poly) (other monom))
|
---|
| 311 | (setf (poly-termlist self)
|
---|
| 312 | (mapcan #'(lambda (term)
|
---|
| 313 | (let ((prod (left-tensor-product-by term other)))
|
---|
| 314 | (cond
|
---|
| 315 | ((r-zerop prod) nil)
|
---|
| 316 | (t (list prod)))))
|
---|
| 317 | (poly-termlist self)))
|
---|
| 318 | self)
|
---|
[3044] | 319 |
|
---|
[3062] | 320 | (defmethod right-tensor-product-by ((self poly) (other monom))
|
---|
| 321 | (setf (poly-termlist self)
|
---|
| 322 | (mapcan #'(lambda (term)
|
---|
| 323 | (let ((prod (right-tensor-product-by term other)))
|
---|
| 324 | (cond
|
---|
| 325 | ((r-zerop prod) nil)
|
---|
| 326 | (t (list prod)))))
|
---|
| 327 | (poly-termlist self)))
|
---|
| 328 | self)
|
---|
| 329 |
|
---|
| 330 |
|
---|
[3084] | 331 | (defun standard-extension (plist &aux (k (length plist)) (i 0))
|
---|
[2716] | 332 | "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
|
---|
[3060] | 333 | is a list of polynomials. Destructively modifies PLIST elements."
|
---|
[3061] | 334 | (mapc #'(lambda (poly)
|
---|
[3085] | 335 | (left-tensor-product-by
|
---|
| 336 | poly
|
---|
| 337 | (prog1
|
---|
| 338 | (make-monom-variable k i)
|
---|
| 339 | (incf i))))
|
---|
[3061] | 340 | plist))
|
---|
[52] | 341 |
|
---|
[3091] | 342 | (defmethod poly-dimension ((poly poly))
|
---|
| 343 | (cond ((r-zerop poly) -1)
|
---|
| 344 | (t (monom-dimension (leading-term poly)))))
|
---|
| 345 |
|
---|
[3087] | 346 | (defun standard-extension-1 (plist
|
---|
| 347 | &aux
|
---|
[3096] | 348 | (plist (standard-extension plist))
|
---|
[3087] | 349 | (nvars (poly-dimension (car plist))))
|
---|
[3081] | 350 | "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
|
---|
[3087] | 351 | Firstly, new K variables U1, U2, ..., UK, are inserted into each
|
---|
| 352 | polynomial. Subsequently, P1, P2, ..., PK are destructively modified
|
---|
[3105] | 353 | tantamount to replacing PI with UI*PI-1. It assumes that all
|
---|
[3106] | 354 | polynomials have the same dimension, and only the first polynomial
|
---|
| 355 | is examined to determine this dimension."
|
---|
[3089] | 356 | ;; Implementation note: we use STANDARD-EXTENSION and then subtract
|
---|
| 357 | ;; 1 from each polynomial; since UI*PI has no constant term,
|
---|
| 358 | ;; we just need to append the constant term at the end
|
---|
| 359 | ;; of each termlist.
|
---|
[3064] | 360 | (flet ((subtract-1 (p)
|
---|
[3104] | 361 | (append-item p (make-instance 'term :coeff -1 :dimension nvars))))
|
---|
[3083] | 362 | (setf plist (mapc #'subtract-1 plist)))
|
---|
[3077] | 363 | plist)
|
---|
[52] | 364 |
|
---|
| 365 |
|
---|
[3107] | 366 | (defun standard-sum (plist
|
---|
| 367 | &aux
|
---|
| 368 | (plist (standard-extension plist))
|
---|
| 369 | (nvars (poly-dimension (car plist))))
|
---|
[3087] | 370 | "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
|
---|
| 371 | Firstly, new K variables, U1, U2, ..., UK, are inserted into each
|
---|
| 372 | polynomial. Subsequently, P1, P2, ..., PK are destructively modified
|
---|
| 373 | tantamount to replacing PI with UI*PI, and the resulting polynomials
|
---|
[3117] | 374 | are added. Finally, 1 is subtracted. It should be noted that the term
|
---|
| 375 | order is not modified, which is equivalent to using a lexicographic
|
---|
| 376 | order on the first K variables."
|
---|
[3107] | 377 | (flet ((subtract-1 (p)
|
---|
| 378 | (append-item p (make-instance 'term :coeff -1 :dimension nvars))))
|
---|
[3108] | 379 | (subtract-1
|
---|
| 380 | (make-instance
|
---|
| 381 | 'poly
|
---|
[3115] | 382 | :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
|
---|
[52] | 383 |
|
---|
[3122] | 384 | #|
|
---|
| 385 |
|
---|
[1477] | 386 | (defun saturation-extension-1 (ring f p)
|
---|
[1497] | 387 | "Calculate [F, U*P-1]. It destructively modifies F."
|
---|
[1908] | 388 | (declare (type ring ring))
|
---|
[1477] | 389 | (polysaturation-extension ring f (list p)))
|
---|
[53] | 390 |
|
---|
[3122] | 391 |
|
---|
[53] | 392 |
|
---|
| 393 |
|
---|
[1189] | 394 | (defun spoly (ring-and-order f g
|
---|
| 395 | &aux
|
---|
| 396 | (ring (ro-ring ring-and-order)))
|
---|
[55] | 397 | "It yields the S-polynomial of polynomials F and G."
|
---|
[1911] | 398 | (declare (type ring-and-order ring-and-order) (type poly f g))
|
---|
[55] | 399 | (let* ((lcm (monom-lcm (poly-lm f) (poly-lm g)))
|
---|
[2913] | 400 | (mf (monom-div lcm (poly-lm f)))
|
---|
| 401 | (mg (monom-div lcm (poly-lm g))))
|
---|
[55] | 402 | (declare (type monom mf mg))
|
---|
| 403 | (multiple-value-bind (c cf cg)
|
---|
| 404 | (funcall (ring-ezgcd ring) (poly-lc f) (poly-lc g))
|
---|
| 405 | (declare (ignore c))
|
---|
| 406 | (poly-sub
|
---|
[1189] | 407 | ring-and-order
|
---|
[55] | 408 | (scalar-times-poly ring cg (monom-times-poly mf f))
|
---|
| 409 | (scalar-times-poly ring cf (monom-times-poly mg g))))))
|
---|
[53] | 410 |
|
---|
| 411 |
|
---|
[55] | 412 | (defun poly-primitive-part (ring p)
|
---|
| 413 | "Divide polynomial P with integer coefficients by gcd of its
|
---|
| 414 | coefficients and return the result."
|
---|
[1912] | 415 | (declare (type ring ring) (type poly p))
|
---|
[55] | 416 | (if (poly-zerop p)
|
---|
| 417 | (values p 1)
|
---|
[2913] | 418 | (let ((c (poly-content ring p)))
|
---|
| 419 | (values (make-poly-from-termlist
|
---|
| 420 | (mapcar
|
---|
| 421 | #'(lambda (x)
|
---|
| 422 | (make-term :monom (term-monom x)
|
---|
| 423 | :coeff (funcall (ring-div ring) (term-coeff x) c)))
|
---|
| 424 | (poly-termlist p))
|
---|
| 425 | (poly-sugar p))
|
---|
| 426 | c))))
|
---|
[55] | 427 |
|
---|
| 428 | (defun poly-content (ring p)
|
---|
| 429 | "Greatest common divisor of the coefficients of the polynomial P. Use the RING structure
|
---|
| 430 | to compute the greatest common divisor."
|
---|
[1913] | 431 | (declare (type ring ring) (type poly p))
|
---|
[55] | 432 | (reduce (ring-gcd ring) (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (poly-lc p)))
|
---|
[1066] | 433 |
|
---|
[2456] | 434 | |#
|
---|