[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"
|
---|
[2462] | 23 | (:use :cl :ring :monom :order :term #| :infix |# )
|
---|
[2596] | 24 | (:export "POLY"
|
---|
| 25 | "POLY-TERMLIST"
|
---|
[3016] | 26 | "POLY-TERM-ORDER"
|
---|
| 27 | "CHANGE-TERM-ORDER")
|
---|
[2522] | 28 | (:documentation "Implements polynomials"))
|
---|
[143] | 29 |
|
---|
[431] | 30 | (in-package :polynomial)
|
---|
| 31 |
|
---|
[1927] | 32 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[52] | 33 |
|
---|
[2442] | 34 | (defclass poly ()
|
---|
[2697] | 35 | ((termlist :initarg :termlist :accessor poly-termlist
|
---|
| 36 | :documentation "List of terms.")
|
---|
| 37 | (order :initarg :order :accessor poly-term-order
|
---|
| 38 | :documentation "Monomial/term order."))
|
---|
[2695] | 39 | (:default-initargs :termlist nil :order #'lex>)
|
---|
| 40 | (:documentation "A polynomial with a list of terms TERMLIST, ordered
|
---|
[2696] | 41 | according to term order ORDER, which defaults to LEX>."))
|
---|
[2442] | 42 |
|
---|
[2471] | 43 | (defmethod print-object ((self poly) stream)
|
---|
[2600] | 44 | (format stream "#<POLY TERMLIST=~A ORDER=~A>"
|
---|
[2595] | 45 | (poly-termlist self)
|
---|
| 46 | (poly-term-order self)))
|
---|
[2469] | 47 |
|
---|
[3015] | 48 | (defgeneric change-term-order (self other)
|
---|
[3012] | 49 | (:documentation "Change term order of SELF to the term order of OTHER.")
|
---|
[3010] | 50 | (:method ((self poly) (other poly))
|
---|
| 51 | (unless (eq (poly-term-order self) (poly-term-order other))
|
---|
| 52 | (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
|
---|
| 53 | (poly-term-order self) (poly-term-order other)))
|
---|
[3012] | 54 | self))
|
---|
[3010] | 55 |
|
---|
[2650] | 56 | (defmethod r-equalp ((self poly) (other poly))
|
---|
[2680] | 57 | "POLY instances are R-EQUALP if they have the same
|
---|
| 58 | order and if all terms are R-EQUALP."
|
---|
[2651] | 59 | (and (every #'r-equalp (poly-termlist self) (poly-termlist other))
|
---|
| 60 | (eq (poly-term-order self) (poly-term-order other))))
|
---|
[2650] | 61 |
|
---|
[2513] | 62 | (defmethod insert-item ((self poly) (item term))
|
---|
| 63 | (push item (poly-termlist self))
|
---|
[2514] | 64 | self)
|
---|
[2464] | 65 |
|
---|
[2513] | 66 | (defmethod append-item ((self poly) (item term))
|
---|
| 67 | (setf (cdr (last (poly-termlist self))) (list item))
|
---|
| 68 | self)
|
---|
[2466] | 69 |
|
---|
[52] | 70 | ;; Leading term
|
---|
[2442] | 71 | (defgeneric leading-term (object)
|
---|
| 72 | (:method ((self poly))
|
---|
[2525] | 73 | (car (poly-termlist self)))
|
---|
| 74 | (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
|
---|
[52] | 75 |
|
---|
| 76 | ;; Second term
|
---|
[2442] | 77 | (defgeneric second-leading-term (object)
|
---|
| 78 | (:method ((self poly))
|
---|
[2525] | 79 | (cadar (poly-termlist self)))
|
---|
| 80 | (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
|
---|
[52] | 81 |
|
---|
| 82 | ;; Leading coefficient
|
---|
[2442] | 83 | (defgeneric leading-coefficient (object)
|
---|
| 84 | (:method ((self poly))
|
---|
[2526] | 85 | (r-coeff (leading-term self)))
|
---|
[2545] | 86 | (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
|
---|
[52] | 87 |
|
---|
| 88 | ;; Second coefficient
|
---|
[2442] | 89 | (defgeneric second-leading-coefficient (object)
|
---|
| 90 | (:method ((self poly))
|
---|
[2526] | 91 | (r-coeff (second-leading-term self)))
|
---|
[2906] | 92 | (:documentation "The second leading coefficient of a polynomial. It
|
---|
| 93 | signals error for a polynomial with at most one term."))
|
---|
[52] | 94 |
|
---|
| 95 | ;; Testing for a zero polynomial
|
---|
[2445] | 96 | (defmethod r-zerop ((self poly))
|
---|
| 97 | (null (poly-termlist self)))
|
---|
[52] | 98 |
|
---|
| 99 | ;; The number of terms
|
---|
[2445] | 100 | (defmethod r-length ((self poly))
|
---|
| 101 | (length (poly-termlist self)))
|
---|
[52] | 102 |
|
---|
[2483] | 103 | (defmethod multiply-by ((self poly) (other monom))
|
---|
[2501] | 104 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
| 105 | (poly-termlist self))
|
---|
[2483] | 106 | self)
|
---|
[2469] | 107 |
|
---|
[2501] | 108 | (defmethod multiply-by ((self poly) (other scalar))
|
---|
[2502] | 109 | (mapc #'(lambda (term) (multiply-by term other))
|
---|
[2501] | 110 | (poly-termlist self))
|
---|
[2487] | 111 | self)
|
---|
| 112 |
|
---|
[2607] | 113 |
|
---|
[2761] | 114 | (defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
|
---|
[2755] | 115 | "Return an expression which will efficiently adds/subtracts two
|
---|
| 116 | polynomials, P and Q. The addition/subtraction of coefficients is
|
---|
| 117 | performed by calling ADD/SUBTRACT-METHOD-NAME. If UMINUS-METHOD-NAME
|
---|
| 118 | is supplied, it is used to negate the coefficients of Q which do not
|
---|
[2756] | 119 | have a corresponding coefficient in P. The code implements an
|
---|
| 120 | efficient algorithm to add two polynomials represented as sorted lists
|
---|
| 121 | of terms. The code destroys both arguments, reusing the terms to build
|
---|
| 122 | the result."
|
---|
[2742] | 123 | `(macrolet ((lc (x) `(r-coeff (car ,x))))
|
---|
| 124 | (do ((p ,p)
|
---|
| 125 | (q ,q)
|
---|
| 126 | r)
|
---|
| 127 | ((or (endp p) (endp q))
|
---|
| 128 | ;; NOTE: R contains the result in reverse order. Can it
|
---|
| 129 | ;; be more efficient to produce the terms in correct order?
|
---|
[2774] | 130 | (unless (endp q)
|
---|
[2776] | 131 | ;; Upon subtraction, we must change the sign of
|
---|
| 132 | ;; all coefficients in q
|
---|
[2774] | 133 | ,@(when uminus-fn
|
---|
[2775] | 134 | `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
|
---|
[2774] | 135 | (setf r (nreconc r q)))
|
---|
[2742] | 136 | r)
|
---|
| 137 | (multiple-value-bind
|
---|
| 138 | (greater-p equal-p)
|
---|
[2766] | 139 | (funcall ,order-fn (car p) (car q))
|
---|
[2742] | 140 | (cond
|
---|
| 141 | (greater-p
|
---|
| 142 | (rotatef (cdr p) r p)
|
---|
| 143 | )
|
---|
| 144 | (equal-p
|
---|
[2766] | 145 | (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
|
---|
[2742] | 146 | (cond
|
---|
| 147 | ((r-zerop s)
|
---|
| 148 | (setf p (cdr p))
|
---|
| 149 | )
|
---|
| 150 | (t
|
---|
| 151 | (setf (lc p) s)
|
---|
| 152 | (rotatef (cdr p) r p))))
|
---|
| 153 | (setf q (cdr q))
|
---|
| 154 | )
|
---|
| 155 | (t
|
---|
[2743] | 156 | ;;Negate the term of Q if UMINUS provided, signallig
|
---|
| 157 | ;;that we are doing subtraction
|
---|
[2908] | 158 | ,(when uminus-fn
|
---|
| 159 | `(setf (lc q) (funcall ,uminus-fn (lc q))))
|
---|
[2743] | 160 | (rotatef (cdr q) r q)))))))
|
---|
[2585] | 161 |
|
---|
[2655] | 162 |
|
---|
[2763] | 163 | (defmacro def-add/subtract-method (add/subtract-method-name
|
---|
[2752] | 164 | uminus-method-name
|
---|
| 165 | &optional
|
---|
[2913] | 166 | (doc-string nil doc-string-supplied-p))
|
---|
[2615] | 167 | "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
|
---|
[2749] | 168 | `(defmethod ,add/subtract-method-name ((self poly) (other poly))
|
---|
[2615] | 169 | ,@(when doc-string-supplied-p `(,doc-string))
|
---|
[2769] | 170 | ;; Ensure orders are compatible
|
---|
[3015] | 171 | (change-term-order other self)
|
---|
[2772] | 172 | (setf (poly-termlist self) (fast-add/subtract
|
---|
| 173 | (poly-termlist self) (poly-termlist other)
|
---|
| 174 | (poly-term-order self)
|
---|
| 175 | #',add/subtract-method-name
|
---|
| 176 | ,(when uminus-method-name `(function ,uminus-method-name))))
|
---|
[2609] | 177 | self))
|
---|
[2487] | 178 |
|
---|
[2916] | 179 | (eval-when (:compile-toplevel :load-toplevel :execute)
|
---|
[2777] | 180 |
|
---|
| 181 | (def-add/subtract-method add-to nil
|
---|
| 182 | "Adds to polynomial SELF another polynomial OTHER.
|
---|
[2610] | 183 | This operation destructively modifies both polynomials.
|
---|
| 184 | The result is stored in SELF. This implementation does
|
---|
[2752] | 185 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
[2609] | 186 |
|
---|
[2777] | 187 | (def-add/subtract-method subtract-from unary-minus
|
---|
[2753] | 188 | "Subtracts from polynomial SELF another polynomial OTHER.
|
---|
[2610] | 189 | This operation destructively modifies both polynomials.
|
---|
| 190 | The result is stored in SELF. This implementation does
|
---|
[2752] | 191 | no consing, entirely reusing the sells of SELF and OTHER.")
|
---|
[2610] | 192 |
|
---|
[2916] | 193 | )
|
---|
[2777] | 194 |
|
---|
[2916] | 195 |
|
---|
| 196 |
|
---|
[2691] | 197 | (defmethod unary-minus ((self poly))
|
---|
[2694] | 198 | "Destructively modifies the coefficients of the polynomial SELF,
|
---|
| 199 | by changing their sign."
|
---|
[2692] | 200 | (mapc #'unary-minus (poly-termlist self))
|
---|
[2683] | 201 | self)
|
---|
[52] | 202 |
|
---|
[2795] | 203 | (defun add-termlists (p q order-fn)
|
---|
[2794] | 204 | "Destructively adds two termlists P and Q ordered according to ORDER-FN."
|
---|
[2917] | 205 | (fast-add/subtract p q order-fn #'add-to nil))
|
---|
[2794] | 206 |
|
---|
[2800] | 207 | (defmacro multiply-term-by-termlist-dropping-zeros (term termlist
|
---|
[2927] | 208 | &optional (reverse-arg-order-P nil))
|
---|
[2799] | 209 | "Multiplies term TERM by a list of term, TERMLIST.
|
---|
[2792] | 210 | Takes into accound divisors of zero in the ring, by
|
---|
[2927] | 211 | deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
|
---|
[2928] | 212 | is T, change the order of arguments; this may be important
|
---|
[2927] | 213 | if we extend the package to non-commutative rings."
|
---|
[2800] | 214 | `(mapcan #'(lambda (other-term)
|
---|
[2907] | 215 | (let ((prod (r*
|
---|
[2923] | 216 | ,@(cond
|
---|
[2930] | 217 | (reverse-arg-order-p
|
---|
[2925] | 218 | `(other-term ,term))
|
---|
| 219 | (t
|
---|
| 220 | `(,term other-term))))))
|
---|
[2800] | 221 | (cond
|
---|
| 222 | ((r-zerop prod) nil)
|
---|
| 223 | (t (list prod)))))
|
---|
| 224 | ,termlist))
|
---|
[2790] | 225 |
|
---|
[2796] | 226 | (defun multiply-termlists (p q order-fn)
|
---|
[2787] | 227 | (cond
|
---|
[2917] | 228 | ((or (endp p) (endp q))
|
---|
| 229 | ;;p or q is 0 (represented by NIL)
|
---|
| 230 | nil)
|
---|
[2789] | 231 | ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
|
---|
[2787] | 232 | ((endp (cdr p))
|
---|
[2918] | 233 | (multiply-term-by-termlist-dropping-zeros (car p) q))
|
---|
| 234 | ((endp (cdr q))
|
---|
[2919] | 235 | (multiply-term-by-termlist-dropping-zeros (car q) p t))
|
---|
| 236 | (t
|
---|
[2948] | 237 | (cons (r* (car p) (car q))
|
---|
[2949] | 238 | (add-termlists
|
---|
| 239 | (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
|
---|
| 240 | (multiply-termlists (cdr p) q order-fn)
|
---|
| 241 | order-fn)))))
|
---|
[2793] | 242 |
|
---|
[2803] | 243 | (defmethod multiply-by ((self poly) (other poly))
|
---|
[3014] | 244 | (change-term-order other self)
|
---|
[2803] | 245 | (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
|
---|
| 246 | (poly-termlist other)
|
---|
| 247 | (poly-term-order self)))
|
---|
| 248 | self)
|
---|
| 249 |
|
---|
[2939] | 250 | (defmethod r* ((poly1 poly) (poly2 poly))
|
---|
| 251 | "Non-destructively multiply POLY1 by POLY2."
|
---|
| 252 | (multiply-by (copy-instance POLY1) (copy-instance POLY2)))
|
---|
[2916] | 253 |
|
---|
[3044] | 254 | (defmethod left-tensor-product-by ((self poly) (other term))
|
---|
| 255 | (setf (poly-termlist self)
|
---|
| 256 | (mapcan #'(lambda (term)
|
---|
| 257 | (let ((prod (left-tensor-product-by other) term))
|
---|
| 258 | (cond
|
---|
| 259 | ((r-zerop prod) nil)
|
---|
| 260 | (t (list prod)))))
|
---|
| 261 | (poly-termlist)))
|
---|
| 262 | self)
|
---|
| 263 |
|
---|
| 264 | (defmethod right-tensor-product-by ((self poly) (other term))
|
---|
| 265 | (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other)))
|
---|
| 266 | (call-next-method))
|
---|
| 267 |
|
---|
| 268 |
|
---|
[2785] | 269 | #|
|
---|
| 270 |
|
---|
[2916] | 271 |
|
---|
[52] | 272 | (defun poly-standard-extension (plist &aux (k (length plist)))
|
---|
[2716] | 273 | "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
|
---|
| 274 | is a list of polynomials."
|
---|
[52] | 275 | (declare (list plist) (fixnum k))
|
---|
| 276 | (labels ((incf-power (g i)
|
---|
| 277 | (dolist (x (poly-termlist g))
|
---|
| 278 | (incf (monom-elt (term-monom x) i)))
|
---|
| 279 | (incf (poly-sugar g))))
|
---|
| 280 | (setf plist (poly-list-add-variables plist k))
|
---|
| 281 | (dotimes (i k plist)
|
---|
| 282 | (incf-power (nth i plist) i))))
|
---|
| 283 |
|
---|
[2716] | 284 |
|
---|
[2785] | 285 |
|
---|
[1473] | 286 | (defun saturation-extension (ring f plist
|
---|
| 287 | &aux
|
---|
| 288 | (k (length plist))
|
---|
[1474] | 289 | (d (monom-dimension (poly-lm (car plist))))
|
---|
| 290 | f-x plist-x)
|
---|
[52] | 291 | "Calculate [F, U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK]."
|
---|
[1907] | 292 | (declare (type ring ring))
|
---|
[1474] | 293 | (setf f-x (poly-list-add-variables f k)
|
---|
| 294 | plist-x (mapcar #'(lambda (x)
|
---|
[1843] | 295 | (setf (poly-termlist x)
|
---|
| 296 | (nconc (poly-termlist x)
|
---|
| 297 | (list (make-term :monom (make-monom :dimension d)
|
---|
[1844] | 298 | :coeff (funcall (ring-uminus ring)
|
---|
| 299 | (funcall (ring-unit ring)))))))
|
---|
[1474] | 300 | x)
|
---|
| 301 | (poly-standard-extension plist)))
|
---|
| 302 | (append f-x plist-x))
|
---|
[52] | 303 |
|
---|
| 304 |
|
---|
[1475] | 305 | (defun polysaturation-extension (ring f plist
|
---|
| 306 | &aux
|
---|
| 307 | (k (length plist))
|
---|
[1476] | 308 | (d (+ k (monom-dimension (poly-lm (car plist)))))
|
---|
[1494] | 309 | ;; Add k variables to f
|
---|
[1493] | 310 | (f (poly-list-add-variables f k))
|
---|
[1495] | 311 | ;; Set PLIST to [U1*P1,U2*P2,...,UK*PK]
|
---|
[1493] | 312 | (plist (apply #'poly-append (poly-standard-extension plist))))
|
---|
[1497] | 313 | "Calculate [F, U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]. It destructively modifies F."
|
---|
[1493] | 314 | ;; Add -1 as the last term
|
---|
[1908] | 315 | (declare (type ring ring))
|
---|
[1493] | 316 | (setf (cdr (last (poly-termlist plist)))
|
---|
[1845] | 317 | (list (make-term :monom (make-monom :dimension d)
|
---|
| 318 | :coeff (funcall (ring-uminus ring) (funcall (ring-unit ring))))))
|
---|
[1493] | 319 | (append f (list plist)))
|
---|
[52] | 320 |
|
---|
[1477] | 321 | (defun saturation-extension-1 (ring f p)
|
---|
[1497] | 322 | "Calculate [F, U*P-1]. It destructively modifies F."
|
---|
[1908] | 323 | (declare (type ring ring))
|
---|
[1477] | 324 | (polysaturation-extension ring f (list p)))
|
---|
[53] | 325 |
|
---|
| 326 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 327 | ;;
|
---|
| 328 | ;; Evaluation of polynomial (prefix) expressions
|
---|
| 329 | ;;
|
---|
| 330 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 331 |
|
---|
| 332 | (defun coerce-coeff (ring expr vars)
|
---|
| 333 | "Coerce an element of the coefficient ring to a constant polynomial."
|
---|
| 334 | ;; Modular arithmetic handler by rat
|
---|
[1908] | 335 | (declare (type ring ring))
|
---|
[1846] | 336 | (make-poly-from-termlist (list (make-term :monom (make-monom :dimension (length vars))
|
---|
| 337 | :coeff (funcall (ring-parse ring) expr)))
|
---|
[53] | 338 | 0))
|
---|
| 339 |
|
---|
[1046] | 340 | (defun poly-eval (expr vars
|
---|
| 341 | &optional
|
---|
[1668] | 342 | (ring +ring-of-integers+)
|
---|
[1048] | 343 | (order #'lex>)
|
---|
[1170] | 344 | (list-marker :[)
|
---|
[1047] | 345 | &aux
|
---|
| 346 | (ring-and-order (make-ring-and-order :ring ring :order order)))
|
---|
[1168] | 347 | "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in
|
---|
[1208] | 348 | variables VARS. Return the resulting polynomial or list of
|
---|
| 349 | polynomials. Standard arithmetical operators in form EXPR are
|
---|
| 350 | replaced with their analogues in the ring of polynomials, and the
|
---|
| 351 | resulting expression is evaluated, resulting in a polynomial or a list
|
---|
[1209] | 352 | of polynomials in internal form. A similar operation in another computer
|
---|
| 353 | algebra system could be called 'expand' or so."
|
---|
[1909] | 354 | (declare (type ring ring))
|
---|
[1050] | 355 | (labels ((p-eval (arg) (poly-eval arg vars ring order))
|
---|
[1140] | 356 | (p-eval-scalar (arg) (poly-eval-scalar arg))
|
---|
[53] | 357 | (p-eval-list (args) (mapcar #'p-eval args))
|
---|
[989] | 358 | (p-add (x y) (poly-add ring-and-order x y)))
|
---|
[53] | 359 | (cond
|
---|
[1128] | 360 | ((null expr) (error "Empty expression"))
|
---|
[53] | 361 | ((eql expr 0) (make-poly-zero))
|
---|
| 362 | ((member expr vars :test #'equalp)
|
---|
| 363 | (let ((pos (position expr vars :test #'equalp)))
|
---|
[1657] | 364 | (make-poly-variable ring (length vars) pos)))
|
---|
[53] | 365 | ((atom expr)
|
---|
| 366 | (coerce-coeff ring expr vars))
|
---|
| 367 | ((eq (car expr) list-marker)
|
---|
| 368 | (cons list-marker (p-eval-list (cdr expr))))
|
---|
| 369 | (t
|
---|
| 370 | (case (car expr)
|
---|
| 371 | (+ (reduce #'p-add (p-eval-list (cdr expr))))
|
---|
| 372 | (- (case (length expr)
|
---|
| 373 | (1 (make-poly-zero))
|
---|
| 374 | (2 (poly-uminus ring (p-eval (cadr expr))))
|
---|
[989] | 375 | (3 (poly-sub ring-and-order (p-eval (cadr expr)) (p-eval (caddr expr))))
|
---|
| 376 | (otherwise (poly-sub ring-and-order (p-eval (cadr expr))
|
---|
[53] | 377 | (reduce #'p-add (p-eval-list (cddr expr)))))))
|
---|
| 378 | (*
|
---|
| 379 | (if (endp (cddr expr)) ;unary
|
---|
| 380 | (p-eval (cdr expr))
|
---|
[989] | 381 | (reduce #'(lambda (p q) (poly-mul ring-and-order p q)) (p-eval-list (cdr expr)))))
|
---|
[1106] | 382 | (/
|
---|
| 383 | ;; A polynomial can be divided by a scalar
|
---|
[1115] | 384 | (cond
|
---|
| 385 | ((endp (cddr expr))
|
---|
[1117] | 386 | ;; A special case (/ ?), the inverse
|
---|
[1119] | 387 | (coerce-coeff ring (apply (ring-div ring) (cdr expr)) vars))
|
---|
[1128] | 388 | (t
|
---|
[1115] | 389 | (let ((num (p-eval (cadr expr)))
|
---|
[1142] | 390 | (denom-inverse (apply (ring-div ring)
|
---|
| 391 | (cons (funcall (ring-unit ring))
|
---|
| 392 | (mapcar #'p-eval-scalar (cddr expr))))))
|
---|
[1118] | 393 | (scalar-times-poly ring denom-inverse num)))))
|
---|
[53] | 394 | (expt
|
---|
| 395 | (cond
|
---|
| 396 | ((member (cadr expr) vars :test #'equalp)
|
---|
| 397 | ;;Special handling of (expt var pow)
|
---|
| 398 | (let ((pos (position (cadr expr) vars :test #'equalp)))
|
---|
[1657] | 399 | (make-poly-variable ring (length vars) pos (caddr expr))))
|
---|
[53] | 400 | ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
|
---|
| 401 | ;; Negative power means division in coefficient ring
|
---|
| 402 | ;; Non-integer power means non-polynomial coefficient
|
---|
| 403 | (coerce-coeff ring expr vars))
|
---|
[989] | 404 | (t (poly-expt ring-and-order (p-eval (cadr expr)) (caddr expr)))))
|
---|
[53] | 405 | (otherwise
|
---|
| 406 | (coerce-coeff ring expr vars)))))))
|
---|
| 407 |
|
---|
[1133] | 408 | (defun poly-eval-scalar (expr
|
---|
| 409 | &optional
|
---|
[1668] | 410 | (ring +ring-of-integers+)
|
---|
[1133] | 411 | &aux
|
---|
| 412 | (order #'lex>))
|
---|
| 413 | "Evaluate a scalar expression EXPR in ring RING."
|
---|
[1910] | 414 | (declare (type ring ring))
|
---|
[1133] | 415 | (poly-lc (poly-eval expr nil ring order)))
|
---|
| 416 |
|
---|
[1189] | 417 | (defun spoly (ring-and-order f g
|
---|
| 418 | &aux
|
---|
| 419 | (ring (ro-ring ring-and-order)))
|
---|
[55] | 420 | "It yields the S-polynomial of polynomials F and G."
|
---|
[1911] | 421 | (declare (type ring-and-order ring-and-order) (type poly f g))
|
---|
[55] | 422 | (let* ((lcm (monom-lcm (poly-lm f) (poly-lm g)))
|
---|
[2913] | 423 | (mf (monom-div lcm (poly-lm f)))
|
---|
| 424 | (mg (monom-div lcm (poly-lm g))))
|
---|
[55] | 425 | (declare (type monom mf mg))
|
---|
| 426 | (multiple-value-bind (c cf cg)
|
---|
| 427 | (funcall (ring-ezgcd ring) (poly-lc f) (poly-lc g))
|
---|
| 428 | (declare (ignore c))
|
---|
| 429 | (poly-sub
|
---|
[1189] | 430 | ring-and-order
|
---|
[55] | 431 | (scalar-times-poly ring cg (monom-times-poly mf f))
|
---|
| 432 | (scalar-times-poly ring cf (monom-times-poly mg g))))))
|
---|
[53] | 433 |
|
---|
| 434 |
|
---|
[55] | 435 | (defun poly-primitive-part (ring p)
|
---|
| 436 | "Divide polynomial P with integer coefficients by gcd of its
|
---|
| 437 | coefficients and return the result."
|
---|
[1912] | 438 | (declare (type ring ring) (type poly p))
|
---|
[55] | 439 | (if (poly-zerop p)
|
---|
| 440 | (values p 1)
|
---|
[2913] | 441 | (let ((c (poly-content ring p)))
|
---|
| 442 | (values (make-poly-from-termlist
|
---|
| 443 | (mapcar
|
---|
| 444 | #'(lambda (x)
|
---|
| 445 | (make-term :monom (term-monom x)
|
---|
| 446 | :coeff (funcall (ring-div ring) (term-coeff x) c)))
|
---|
| 447 | (poly-termlist p))
|
---|
| 448 | (poly-sugar p))
|
---|
| 449 | c))))
|
---|
[55] | 450 |
|
---|
| 451 | (defun poly-content (ring p)
|
---|
| 452 | "Greatest common divisor of the coefficients of the polynomial P. Use the RING structure
|
---|
| 453 | to compute the greatest common divisor."
|
---|
[1913] | 454 | (declare (type ring ring) (type poly p))
|
---|
[55] | 455 | (reduce (ring-gcd ring) (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (poly-lc p)))
|
---|
[1066] | 456 |
|
---|
[1091] | 457 | (defun read-infix-form (&key (stream t))
|
---|
[1066] | 458 | "Parser of infix expressions with integer/rational coefficients
|
---|
| 459 | The parser will recognize two kinds of polynomial expressions:
|
---|
| 460 |
|
---|
| 461 | - polynomials in fully expanded forms with coefficients
|
---|
| 462 | written in front of symbolic expressions; constants can be optionally
|
---|
| 463 | enclosed in (); for example, the infix form
|
---|
| 464 | X^2-Y^2+(-4/3)*U^2*W^3-5
|
---|
| 465 | parses to
|
---|
| 466 | (+ (- (EXPT X 2) (EXPT Y 2)) (* (- (/ 4 3)) (EXPT U 2) (EXPT W 3)) (- 5))
|
---|
| 467 |
|
---|
| 468 | - lists of polynomials; for example
|
---|
| 469 | [X-Y, X^2+3*Z]
|
---|
| 470 | parses to
|
---|
| 471 | (:[ (- X Y) (+ (EXPT X 2) (* 3 Z)))
|
---|
| 472 | where the first symbol [ marks a list of polynomials.
|
---|
| 473 |
|
---|
| 474 | -other infix expressions, for example
|
---|
| 475 | [(X-Y)*(X+Y)/Z,(X+1)^2]
|
---|
| 476 | parses to:
|
---|
| 477 | (:[ (/ (* (- X Y) (+ X Y)) Z) (EXPT (+ X 1) 2))
|
---|
| 478 | Currently this function is implemented using M. Kantrowitz's INFIX package."
|
---|
| 479 | (read-from-string
|
---|
| 480 | (concatenate 'string
|
---|
[2913] | 481 | "#I("
|
---|
| 482 | (with-output-to-string (s)
|
---|
| 483 | (loop
|
---|
| 484 | (multiple-value-bind (line eof)
|
---|
| 485 | (read-line stream t)
|
---|
| 486 | (format s "~A" line)
|
---|
| 487 | (when eof (return)))))
|
---|
| 488 | ")")))
|
---|
| 489 |
|
---|
[1145] | 490 | (defun read-poly (vars &key
|
---|
| 491 | (stream t)
|
---|
[1668] | 492 | (ring +ring-of-integers+)
|
---|
[1145] | 493 | (order #'lex>))
|
---|
[1067] | 494 | "Reads an expression in prefix form from a stream STREAM.
|
---|
[1144] | 495 | The expression read from the strem should represent a polynomial or a
|
---|
| 496 | list of polynomials in variables VARS, over the ring RING. The
|
---|
| 497 | polynomial or list of polynomials is returned, with terms in each
|
---|
| 498 | polynomial ordered according to monomial order ORDER."
|
---|
[1146] | 499 | (poly-eval (read-infix-form :stream stream) vars ring order))
|
---|
[1092] | 500 |
|
---|
[1146] | 501 | (defun string->poly (str vars
|
---|
[1164] | 502 | &optional
|
---|
[1668] | 503 | (ring +ring-of-integers+)
|
---|
[1146] | 504 | (order #'lex>))
|
---|
| 505 | "Converts a string STR to a polynomial in variables VARS."
|
---|
[1097] | 506 | (with-input-from-string (s str)
|
---|
[1165] | 507 | (read-poly vars :stream s :ring ring :order order)))
|
---|
[1095] | 508 |
|
---|
[1143] | 509 | (defun poly->alist (p)
|
---|
| 510 | "Convert a polynomial P to an association list. Thus, the format of the
|
---|
| 511 | returned value is ((MONOM[0] . COEFF[0]) (MONOM[1] . COEFF[1]) ...), where
|
---|
| 512 | MONOM[I] is a list of exponents in the monomial and COEFF[I] is the
|
---|
| 513 | corresponding coefficient in the ring."
|
---|
[1171] | 514 | (cond
|
---|
| 515 | ((poly-p p)
|
---|
| 516 | (mapcar #'term->cons (poly-termlist p)))
|
---|
| 517 | ((and (consp p) (eq (car p) :[))
|
---|
[1172] | 518 | (cons :[ (mapcar #'poly->alist (cdr p))))))
|
---|
[1143] | 519 |
|
---|
[1164] | 520 | (defun string->alist (str vars
|
---|
[2913] | 521 | &optional
|
---|
| 522 | (ring +ring-of-integers+)
|
---|
| 523 | (order #'lex>))
|
---|
[1143] | 524 | "Convert a string STR representing a polynomial or polynomial list to
|
---|
[1158] | 525 | an association list (... (MONOM . COEFF) ...)."
|
---|
[1166] | 526 | (poly->alist (string->poly str vars ring order)))
|
---|
[1440] | 527 |
|
---|
| 528 | (defun poly-equal-no-sugar-p (p q)
|
---|
| 529 | "Compare polynomials for equality, ignoring sugar."
|
---|
[1914] | 530 | (declare (type poly p q))
|
---|
[1440] | 531 | (equalp (poly-termlist p) (poly-termlist q)))
|
---|
[1559] | 532 |
|
---|
| 533 | (defun poly-set-equal-no-sugar-p (p q)
|
---|
| 534 | "Compare polynomial sets P and Q for equality, ignoring sugar."
|
---|
| 535 | (null (set-exclusive-or p q :test #'poly-equal-no-sugar-p )))
|
---|
[1560] | 536 |
|
---|
| 537 | (defun poly-list-equal-no-sugar-p (p q)
|
---|
| 538 | "Compare polynomial lists P and Q for equality, ignoring sugar."
|
---|
| 539 | (every #'poly-equal-no-sugar-p p q))
|
---|
[2456] | 540 | |#
|
---|