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@ 2729

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

* empty log message *

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