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