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