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

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

* empty log message *

File size: 15.0 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"
[3129]23 (:use :cl :utils :ring :monom :order :term)
[2596]24 (:export "POLY"
25 "POLY-TERMLIST"
[3016]26 "POLY-TERM-ORDER"
[3071]27 "CHANGE-TERM-ORDER"
[3099]28 "STANDARD-EXTENSION"
[3101]29 "STANDARD-EXTENSION-1"
[3109]30 "STANDARD-SUM"
[3094]31 "SATURATION-EXTENSION"
32 "ALIST->POLY")
[3129]33 (:documentation "Implements polynomials."))
[143]34
[431]35(in-package :polynomial)
36
[1927]37(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
[52]38
[2442]39(defclass poly ()
[3242]40 ((dimension :initarg :dimension :accessor poly-dimension
41 :documentation "Shared dimension of all terms, the number of variables")
42 (termlist :initarg :termlist :accessor poly-termlist
[2697]43 :documentation "List of terms.")
44 (order :initarg :order :accessor poly-term-order
45 :documentation "Monomial/term order."))
[3244]46 (:default-initargs :dimension nil :termlist nil :order #'lex>)
[2695]47 (:documentation "A polynomial with a list of terms TERMLIST, ordered
[2696]48according to term order ORDER, which defaults to LEX>."))
[2442]49
[2471]50(defmethod print-object ((self poly) stream)
[3241]51 (print-unreadable-object (self stream :type t :identity t)
[3243]52 (with-accessors ((dimension poly-dimension)
53 (termlist poly-termlist)
54 (order poly-term-order))
[3237]55 self
[3244]56 (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A"
57 dimension termlist order))))
[2469]58
[3015]59(defgeneric change-term-order (self other)
[3012]60 (:documentation "Change term order of SELF to the term order of OTHER.")
[3010]61 (:method ((self poly) (other poly))
62 (unless (eq (poly-term-order self) (poly-term-order other))
63 (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
64 (poly-term-order self) (poly-term-order other)))
[3012]65 self))
[3010]66
[3095]67(defun alist->poly (alist &aux (poly (make-instance 'poly)))
[3126]68 "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...).
69It can be used to enter simple polynomials by hand, e.g the polynomial
70in two variables, X and Y, given in standard notation as:
71
72 3*X^2*Y^3+2*Y+7
73
74can be entered as
75(ALIST->POLY '(((2 3) . 3) ((0 1) . 2) ((0 0) . 7))).
76
77NOTE: The primary use is for low-level debugging of the package."
[3099]78 (dolist (x alist poly)
[3095]79 (insert-item poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
[3092]80
81
[2650]82(defmethod r-equalp ((self poly) (other poly))
[2680]83 "POLY instances are R-EQUALP if they have the same
84order and if all terms are R-EQUALP."
[2651]85 (and (every #'r-equalp (poly-termlist self) (poly-termlist other))
86 (eq (poly-term-order self) (poly-term-order other))))
[2650]87
[2513]88(defmethod insert-item ((self poly) (item term))
[3245]89 (assert (= (monom-dimension item) (poly-dimension self)))
[2513]90 (push item (poly-termlist self))
[2514]91 self)
[2464]92
[2513]93(defmethod append-item ((self poly) (item term))
[3245]94 (assert (= (monom-dimension item) (poly-dimension self)))
[2513]95 (setf (cdr (last (poly-termlist self))) (list item))
96 self)
[2466]97
[52]98;; Leading term
[2442]99(defgeneric leading-term (object)
100 (:method ((self poly))
[2525]101 (car (poly-termlist self)))
102 (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
[52]103
104;; Second term
[2442]105(defgeneric second-leading-term (object)
106 (:method ((self poly))
[2525]107 (cadar (poly-termlist self)))
108 (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
[52]109
110;; Leading coefficient
[2442]111(defgeneric leading-coefficient (object)
112 (:method ((self poly))
[3221]113 (scalar-coeff (leading-term self)))
[2545]114 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
[52]115
116;; Second coefficient
[2442]117(defgeneric second-leading-coefficient (object)
118 (:method ((self poly))
[3221]119 (scalar-coeff (second-leading-term self)))
[2906]120 (:documentation "The second leading coefficient of a polynomial. It
121 signals error for a polynomial with at most one term."))
[52]122
123;; Testing for a zero polynomial
[2445]124(defmethod r-zerop ((self poly))
125 (null (poly-termlist self)))
[52]126
127;; The number of terms
[2445]128(defmethod r-length ((self poly))
129 (length (poly-termlist self)))
[52]130
[2483]131(defmethod multiply-by ((self poly) (other monom))
[3246]132 (assert (= (monom-dimension self) (poly-dimension other)))
[2501]133 (mapc #'(lambda (term) (multiply-by term other))
134 (poly-termlist self))
[2483]135 self)
[2469]136
[3120]137(defmethod multiply-by ((self poly) (other term))
[3246]138 (assert (= (monom-dimension self) (monom-dimension other)))
[3120]139 (mapc #'(lambda (term) (multiply-by term other))
140 (poly-termlist self))
141 self)
142
[2501]143(defmethod multiply-by ((self poly) (other scalar))
[3246]144 (assert (= (monom-dimension self) (monom-dimension other)))
[2502]145 (mapc #'(lambda (term) (multiply-by term other))
[2501]146 (poly-termlist self))
[2487]147 self)
148
[2607]149
[2761]150(defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
[2755]151 "Return an expression which will efficiently adds/subtracts two
152polynomials, P and Q. The addition/subtraction of coefficients is
153performed by calling ADD/SUBTRACT-METHOD-NAME. If UMINUS-METHOD-NAME
154is supplied, it is used to negate the coefficients of Q which do not
[2756]155have a corresponding coefficient in P. The code implements an
156efficient algorithm to add two polynomials represented as sorted lists
157of terms. The code destroys both arguments, reusing the terms to build
158the result."
[3221]159 `(macrolet ((lc (x) `(scalar-coeff (car ,x))))
[2742]160 (do ((p ,p)
161 (q ,q)
162 r)
163 ((or (endp p) (endp q))
164 ;; NOTE: R contains the result in reverse order. Can it
165 ;; be more efficient to produce the terms in correct order?
[2774]166 (unless (endp q)
[2776]167 ;; Upon subtraction, we must change the sign of
168 ;; all coefficients in q
[2774]169 ,@(when uminus-fn
[2775]170 `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
[2774]171 (setf r (nreconc r q)))
[2742]172 r)
173 (multiple-value-bind
174 (greater-p equal-p)
[2766]175 (funcall ,order-fn (car p) (car q))
[2742]176 (cond
177 (greater-p
178 (rotatef (cdr p) r p)
179 )
180 (equal-p
[2766]181 (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
[2742]182 (cond
183 ((r-zerop s)
184 (setf p (cdr p))
185 )
186 (t
187 (setf (lc p) s)
188 (rotatef (cdr p) r p))))
189 (setf q (cdr q))
190 )
191 (t
[2743]192 ;;Negate the term of Q if UMINUS provided, signallig
193 ;;that we are doing subtraction
[2908]194 ,(when uminus-fn
195 `(setf (lc q) (funcall ,uminus-fn (lc q))))
[2743]196 (rotatef (cdr q) r q)))))))
[2585]197
[2655]198
[2763]199(defmacro def-add/subtract-method (add/subtract-method-name
[2752]200 uminus-method-name
201 &optional
[2913]202 (doc-string nil doc-string-supplied-p))
[2615]203 "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
[2749]204 `(defmethod ,add/subtract-method-name ((self poly) (other poly))
[2615]205 ,@(when doc-string-supplied-p `(,doc-string))
[2769]206 ;; Ensure orders are compatible
[3015]207 (change-term-order other self)
[2772]208 (setf (poly-termlist self) (fast-add/subtract
209 (poly-termlist self) (poly-termlist other)
210 (poly-term-order self)
211 #',add/subtract-method-name
212 ,(when uminus-method-name `(function ,uminus-method-name))))
[2609]213 self))
[2487]214
[2916]215(eval-when (:compile-toplevel :load-toplevel :execute)
[2777]216
217 (def-add/subtract-method add-to nil
218 "Adds to polynomial SELF another polynomial OTHER.
[2610]219This operation destructively modifies both polynomials.
220The result is stored in SELF. This implementation does
[2752]221no consing, entirely reusing the sells of SELF and OTHER.")
[2609]222
[2777]223 (def-add/subtract-method subtract-from unary-minus
[2753]224 "Subtracts from polynomial SELF another polynomial OTHER.
[2610]225This operation destructively modifies both polynomials.
226The result is stored in SELF. This implementation does
[2752]227no consing, entirely reusing the sells of SELF and OTHER.")
[2916]228 )
[2777]229
[2691]230(defmethod unary-minus ((self poly))
[2694]231 "Destructively modifies the coefficients of the polynomial SELF,
232by changing their sign."
[2692]233 (mapc #'unary-minus (poly-termlist self))
[2683]234 self)
[52]235
[2795]236(defun add-termlists (p q order-fn)
[2794]237 "Destructively adds two termlists P and Q ordered according to ORDER-FN."
[2917]238 (fast-add/subtract p q order-fn #'add-to nil))
[2794]239
[2800]240(defmacro multiply-term-by-termlist-dropping-zeros (term termlist
[2927]241 &optional (reverse-arg-order-P nil))
[2799]242 "Multiplies term TERM by a list of term, TERMLIST.
[2792]243Takes into accound divisors of zero in the ring, by
[2927]244deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
[2928]245is T, change the order of arguments; this may be important
[2927]246if we extend the package to non-commutative rings."
[2800]247 `(mapcan #'(lambda (other-term)
[2907]248 (let ((prod (r*
[2923]249 ,@(cond
[2930]250 (reverse-arg-order-p
[2925]251 `(other-term ,term))
252 (t
253 `(,term other-term))))))
[2800]254 (cond
255 ((r-zerop prod) nil)
256 (t (list prod)))))
257 ,termlist))
[2790]258
[2796]259(defun multiply-termlists (p q order-fn)
[3127]260 "A version of polynomial multiplication, operating
261directly on termlists."
[2787]262 (cond
[2917]263 ((or (endp p) (endp q))
264 ;;p or q is 0 (represented by NIL)
265 nil)
[2789]266 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
[2787]267 ((endp (cdr p))
[2918]268 (multiply-term-by-termlist-dropping-zeros (car p) q))
269 ((endp (cdr q))
[2919]270 (multiply-term-by-termlist-dropping-zeros (car q) p t))
271 (t
[2948]272 (cons (r* (car p) (car q))
[2949]273 (add-termlists
274 (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
275 (multiply-termlists (cdr p) q order-fn)
276 order-fn)))))
[2793]277
[2803]278(defmethod multiply-by ((self poly) (other poly))
[3014]279 (change-term-order other self)
[2803]280 (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
281 (poly-termlist other)
282 (poly-term-order self)))
283 self)
284
[2939]285(defmethod r* ((poly1 poly) (poly2 poly))
286 "Non-destructively multiply POLY1 by POLY2."
287 (multiply-by (copy-instance POLY1) (copy-instance POLY2)))
[2916]288
[3044]289(defmethod left-tensor-product-by ((self poly) (other term))
290 (setf (poly-termlist self)
291 (mapcan #'(lambda (term)
[3047]292 (let ((prod (left-tensor-product-by term other)))
[3044]293 (cond
294 ((r-zerop prod) nil)
295 (t (list prod)))))
[3048]296 (poly-termlist self)))
[3044]297 self)
298
299(defmethod right-tensor-product-by ((self poly) (other term))
[3045]300 (setf (poly-termlist self)
301 (mapcan #'(lambda (term)
[3046]302 (let ((prod (right-tensor-product-by term other)))
[3045]303 (cond
304 ((r-zerop prod) nil)
305 (t (list prod)))))
[3048]306 (poly-termlist self)))
[3045]307 self)
[3044]308
[3062]309(defmethod left-tensor-product-by ((self poly) (other monom))
310 (setf (poly-termlist self)
311 (mapcan #'(lambda (term)
312 (let ((prod (left-tensor-product-by term other)))
313 (cond
314 ((r-zerop prod) nil)
315 (t (list prod)))))
316 (poly-termlist self)))
317 self)
[3044]318
[3062]319(defmethod right-tensor-product-by ((self poly) (other monom))
320 (setf (poly-termlist self)
321 (mapcan #'(lambda (term)
322 (let ((prod (right-tensor-product-by term other)))
323 (cond
324 ((r-zerop prod) nil)
325 (t (list prod)))))
326 (poly-termlist self)))
327 self)
328
329
[3084]330(defun standard-extension (plist &aux (k (length plist)) (i 0))
[2716]331 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
[3060]332is a list of polynomials. Destructively modifies PLIST elements."
[3061]333 (mapc #'(lambda (poly)
[3085]334 (left-tensor-product-by
335 poly
336 (prog1
337 (make-monom-variable k i)
338 (incf i))))
[3061]339 plist))
[52]340
[3091]341(defmethod poly-dimension ((poly poly))
342 (cond ((r-zerop poly) -1)
343 (t (monom-dimension (leading-term poly)))))
344
[3087]345(defun standard-extension-1 (plist
346 &aux
[3096]347 (plist (standard-extension plist))
[3087]348 (nvars (poly-dimension (car plist))))
[3081]349 "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
[3087]350Firstly, new K variables U1, U2, ..., UK, are inserted into each
351polynomial. Subsequently, P1, P2, ..., PK are destructively modified
[3105]352tantamount to replacing PI with UI*PI-1. It assumes that all
[3106]353polynomials have the same dimension, and only the first polynomial
354is examined to determine this dimension."
[3089]355 ;; Implementation note: we use STANDARD-EXTENSION and then subtract
356 ;; 1 from each polynomial; since UI*PI has no constant term,
357 ;; we just need to append the constant term at the end
358 ;; of each termlist.
[3064]359 (flet ((subtract-1 (p)
[3104]360 (append-item p (make-instance 'term :coeff -1 :dimension nvars))))
[3083]361 (setf plist (mapc #'subtract-1 plist)))
[3077]362 plist)
[52]363
364
[3107]365(defun standard-sum (plist
366 &aux
367 (plist (standard-extension plist))
368 (nvars (poly-dimension (car plist))))
[3087]369 "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
370Firstly, new K variables, U1, U2, ..., UK, are inserted into each
371polynomial. Subsequently, P1, P2, ..., PK are destructively modified
372tantamount to replacing PI with UI*PI, and the resulting polynomials
[3117]373are added. Finally, 1 is subtracted. It should be noted that the term
374order is not modified, which is equivalent to using a lexicographic
375order on the first K variables."
[3107]376 (flet ((subtract-1 (p)
377 (append-item p (make-instance 'term :coeff -1 :dimension nvars))))
[3108]378 (subtract-1
379 (make-instance
380 'poly
[3115]381 :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
[52]382
[3122]383#|
384
[1477]385(defun saturation-extension-1 (ring f p)
[1497]386 "Calculate [F, U*P-1]. It destructively modifies F."
[1908]387 (declare (type ring ring))
[1477]388 (polysaturation-extension ring f (list p)))
[53]389
[3122]390
[53]391
392
[1189]393(defun spoly (ring-and-order f g
394 &aux
395 (ring (ro-ring ring-and-order)))
[55]396 "It yields the S-polynomial of polynomials F and G."
[1911]397 (declare (type ring-and-order ring-and-order) (type poly f g))
[55]398 (let* ((lcm (monom-lcm (poly-lm f) (poly-lm g)))
[2913]399 (mf (monom-div lcm (poly-lm f)))
400 (mg (monom-div lcm (poly-lm g))))
[55]401 (declare (type monom mf mg))
402 (multiple-value-bind (c cf cg)
403 (funcall (ring-ezgcd ring) (poly-lc f) (poly-lc g))
404 (declare (ignore c))
405 (poly-sub
[1189]406 ring-and-order
[55]407 (scalar-times-poly ring cg (monom-times-poly mf f))
408 (scalar-times-poly ring cf (monom-times-poly mg g))))))
[53]409
410
[55]411(defun poly-primitive-part (ring p)
412 "Divide polynomial P with integer coefficients by gcd of its
413coefficients and return the result."
[1912]414 (declare (type ring ring) (type poly p))
[55]415 (if (poly-zerop p)
416 (values p 1)
[2913]417 (let ((c (poly-content ring p)))
418 (values (make-poly-from-termlist
419 (mapcar
420 #'(lambda (x)
421 (make-term :monom (term-monom x)
422 :coeff (funcall (ring-div ring) (term-coeff x) c)))
423 (poly-termlist p))
424 (poly-sugar p))
425 c))))
[55]426
427(defun poly-content (ring p)
428 "Greatest common divisor of the coefficients of the polynomial P. Use the RING structure
429to compute the greatest common divisor."
[1913]430 (declare (type ring ring) (type poly p))
[55]431 (reduce (ring-gcd ring) (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (poly-lc p)))
[1066]432
[2456]433|#
Note: See TracBrowser for help on using the repository browser.