close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/polynomial.lisp@ 2755

Last change on this file since 2755 was 2755, checked in by Marek Rychlik, 9 years ago

* empty log message *

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