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

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

* empty log message *

File size: 16.5 KB
Line 
1;;; -*- Mode: Lisp -*-
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
22(defpackage "POLYNOMIAL"
23 (:use :cl :ring :monom :order :term #| :infix |# )
24 (:export "POLY"
25 "POLY-TERMLIST"
26 "POLY-TERM-ORDER")
27 (:documentation "Implements polynomials"))
28
29(in-package :polynomial)
30
31(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
32
33(defclass poly ()
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."))
38 (:default-initargs :termlist nil :order #'lex>)
39 (:documentation "A polynomial with a list of terms TERMLIST, ordered
40according to term order ORDER, which defaults to LEX>."))
41
42(defmethod print-object ((self poly) stream)
43 (format stream "#<POLY TERMLIST=~A ORDER=~A>"
44 (poly-termlist self)
45 (poly-term-order self)))
46
47(defmethod r-equalp ((self poly) (other poly))
48 "POLY instances are R-EQUALP if they have the same
49order and if all terms are R-EQUALP."
50 (and (every #'r-equalp (poly-termlist self) (poly-termlist other))
51 (eq (poly-term-order self) (poly-term-order other))))
52
53(defmethod insert-item ((self poly) (item term))
54 (push item (poly-termlist self))
55 self)
56
57(defmethod append-item ((self poly) (item term))
58 (setf (cdr (last (poly-termlist self))) (list item))
59 self)
60
61;; Leading term
62(defgeneric leading-term (object)
63 (:method ((self poly))
64 (car (poly-termlist self)))
65 (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
66
67;; Second term
68(defgeneric second-leading-term (object)
69 (:method ((self poly))
70 (cadar (poly-termlist self)))
71 (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
72
73;; Leading coefficient
74(defgeneric leading-coefficient (object)
75 (:method ((self poly))
76 (r-coeff (leading-term self)))
77 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
78
79;; Second coefficient
80(defgeneric second-leading-coefficient (object)
81 (:method ((self poly))
82 (r-coeff (second-leading-term self)))
83 (:documentation "The second leading coefficient of a polynomial. It signals error for a polynomial with at most one term."))
84
85;; Testing for a zero polynomial
86(defmethod r-zerop ((self poly))
87 (null (poly-termlist self)))
88
89;; The number of terms
90(defmethod r-length ((self poly))
91 (length (poly-termlist self)))
92
93(defmethod multiply-by ((self poly) (other monom))
94 (mapc #'(lambda (term) (multiply-by term other))
95 (poly-termlist self))
96 self)
97
98(defmethod multiply-by ((self poly) (other scalar))
99 (mapc #'(lambda (term) (multiply-by term other))
100 (poly-termlist self))
101 self)
102
103
104(defmacro fast-add/subtract (p q order-fn
105 add/subtract-method-name
106 &optional
107 (uminus-method-name nil uminus-method-name-supplied-p))
108 "Return an expression which will efficiently adds/subtracts two
109polynomials, P and Q. The addition/subtraction of coefficients is
110performed by calling ADD/SUBTRACT-METHOD-NAME. If UMINUS-METHOD-NAME
111is supplied, it is used to negate the coefficients of Q which do not
112have a corresponding coefficient in P. The code implements an
113efficient algorithm to add two polynomials represented as sorted lists
114of terms. The code destroys both arguments, reusing the terms to build
115the result."
116 `(macrolet ((lc (x) `(r-coeff (car ,x))))
117 (do ((p ,p)
118 (q ,q)
119 r)
120 ((or (endp p) (endp q))
121 ;; NOTE: R contains the result in reverse order. Can it
122 ;; be more efficient to produce the terms in correct order?
123 (unless (endp q) (setf r (nreconc r q)))
124 r)
125 (multiple-value-bind
126 (greater-p equal-p)
127 (funcall ,order-fn (car p) (car q))
128 (cond
129 (greater-p
130 (rotatef (cdr p) r p)
131 )
132 (equal-p
133 (let ((s (funcall ,add/subtract-method-name (lc p) (lc q))))
134 (cond
135 ((r-zerop s)
136 (setf p (cdr p))
137 )
138 (t
139 (setf (lc p) s)
140 (rotatef (cdr p) r p))))
141 (setf q (cdr q))
142 )
143 (t
144 ;;Negate the term of Q if UMINUS provided, signallig
145 ;;that we are doing subtraction
146 ,@(when uminus-method-name-supplied-p
147 `((setf (lc q) (funcall #',uminus-method-name (lc q)))))
148 (rotatef (cdr q) r q)))))))
149
150
151(defmacro def-add/subtract-method (add/subtract-method-name
152 uminus-method-name
153 &optional
154 (doc-string nil doc-string-supplied-p))
155 "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
156 `(defmethod ,add/subtract-method-name ((self poly) (other poly))
157 ,@(when doc-string-supplied-p `(,doc-string))
158 (with-slots ((termlist1 termlist) (order1 order))
159 self
160 (with-slots ((termlist2 termlist) (order2 order))
161 other
162 ;; Ensure orders are compatible
163 (unless (eq order1 order2)
164 (setf termlist2 (sort termlist2 order1)
165 order2 order1))
166 (setf termlist1 (fast-add/subtract
167 termlist1 termlist2 order1
168 ,add/subtract-method-name
169 ,uminus-method-name))))
170 self))
171
172(def-add/subtract-method 'add-to nil
173 "Adds to polynomial SELF another polynomial OTHER.
174This operation destructively modifies both polynomials.
175The result is stored in SELF. This implementation does
176no consing, entirely reusing the sells of SELF and OTHER.")
177
178(def-add/subtract-method 'subtract-from 'unary-minus
179 "Subtracts from polynomial SELF another polynomial OTHER.
180This operation destructively modifies both polynomials.
181The result is stored in SELF. This implementation does
182no consing, entirely reusing the sells of SELF and OTHER.")
183
184(defmethod unary-minus ((self poly))
185 "Destructively modifies the coefficients of the polynomial SELF,
186by changing their sign."
187 (mapc #'unary-minus (poly-termlist self))
188 self)
189
190#|
191
192(defun poly-standard-extension (plist &aux (k (length plist)))
193 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
194is a list of polynomials."
195 (declare (list plist) (fixnum k))
196 (labels ((incf-power (g i)
197 (dolist (x (poly-termlist g))
198 (incf (monom-elt (term-monom x) i)))
199 (incf (poly-sugar g))))
200 (setf plist (poly-list-add-variables plist k))
201 (dotimes (i k plist)
202 (incf-power (nth i plist) i))))
203
204
205
206(defun saturation-extension (ring f plist
207 &aux
208 (k (length plist))
209 (d (monom-dimension (poly-lm (car plist))))
210 f-x plist-x)
211 "Calculate [F, U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK]."
212 (declare (type ring ring))
213 (setf f-x (poly-list-add-variables f k)
214 plist-x (mapcar #'(lambda (x)
215 (setf (poly-termlist x)
216 (nconc (poly-termlist x)
217 (list (make-term :monom (make-monom :dimension d)
218 :coeff (funcall (ring-uminus ring)
219 (funcall (ring-unit ring)))))))
220 x)
221 (poly-standard-extension plist)))
222 (append f-x plist-x))
223
224
225(defun polysaturation-extension (ring f plist
226 &aux
227 (k (length plist))
228 (d (+ k (monom-dimension (poly-lm (car plist)))))
229 ;; Add k variables to f
230 (f (poly-list-add-variables f k))
231 ;; Set PLIST to [U1*P1,U2*P2,...,UK*PK]
232 (plist (apply #'poly-append (poly-standard-extension plist))))
233 "Calculate [F, U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]. It destructively modifies F."
234 ;; Add -1 as the last term
235 (declare (type ring ring))
236 (setf (cdr (last (poly-termlist plist)))
237 (list (make-term :monom (make-monom :dimension d)
238 :coeff (funcall (ring-uminus ring) (funcall (ring-unit ring))))))
239 (append f (list plist)))
240
241(defun saturation-extension-1 (ring f p)
242 "Calculate [F, U*P-1]. It destructively modifies F."
243 (declare (type ring ring))
244 (polysaturation-extension ring f (list p)))
245
246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
247;;
248;; Evaluation of polynomial (prefix) expressions
249;;
250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
251
252(defun coerce-coeff (ring expr vars)
253 "Coerce an element of the coefficient ring to a constant polynomial."
254 ;; Modular arithmetic handler by rat
255 (declare (type ring ring))
256 (make-poly-from-termlist (list (make-term :monom (make-monom :dimension (length vars))
257 :coeff (funcall (ring-parse ring) expr)))
258 0))
259
260(defun poly-eval (expr vars
261 &optional
262 (ring +ring-of-integers+)
263 (order #'lex>)
264 (list-marker :[)
265 &aux
266 (ring-and-order (make-ring-and-order :ring ring :order order)))
267 "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in
268variables VARS. Return the resulting polynomial or list of
269polynomials. Standard arithmetical operators in form EXPR are
270replaced with their analogues in the ring of polynomials, and the
271resulting expression is evaluated, resulting in a polynomial or a list
272of polynomials in internal form. A similar operation in another computer
273algebra system could be called 'expand' or so."
274 (declare (type ring ring))
275 (labels ((p-eval (arg) (poly-eval arg vars ring order))
276 (p-eval-scalar (arg) (poly-eval-scalar arg))
277 (p-eval-list (args) (mapcar #'p-eval args))
278 (p-add (x y) (poly-add ring-and-order x y)))
279 (cond
280 ((null expr) (error "Empty expression"))
281 ((eql expr 0) (make-poly-zero))
282 ((member expr vars :test #'equalp)
283 (let ((pos (position expr vars :test #'equalp)))
284 (make-poly-variable ring (length vars) pos)))
285 ((atom expr)
286 (coerce-coeff ring expr vars))
287 ((eq (car expr) list-marker)
288 (cons list-marker (p-eval-list (cdr expr))))
289 (t
290 (case (car expr)
291 (+ (reduce #'p-add (p-eval-list (cdr expr))))
292 (- (case (length expr)
293 (1 (make-poly-zero))
294 (2 (poly-uminus ring (p-eval (cadr expr))))
295 (3 (poly-sub ring-and-order (p-eval (cadr expr)) (p-eval (caddr expr))))
296 (otherwise (poly-sub ring-and-order (p-eval (cadr expr))
297 (reduce #'p-add (p-eval-list (cddr expr)))))))
298 (*
299 (if (endp (cddr expr)) ;unary
300 (p-eval (cdr expr))
301 (reduce #'(lambda (p q) (poly-mul ring-and-order p q)) (p-eval-list (cdr expr)))))
302 (/
303 ;; A polynomial can be divided by a scalar
304 (cond
305 ((endp (cddr expr))
306 ;; A special case (/ ?), the inverse
307 (coerce-coeff ring (apply (ring-div ring) (cdr expr)) vars))
308 (t
309 (let ((num (p-eval (cadr expr)))
310 (denom-inverse (apply (ring-div ring)
311 (cons (funcall (ring-unit ring))
312 (mapcar #'p-eval-scalar (cddr expr))))))
313 (scalar-times-poly ring denom-inverse num)))))
314 (expt
315 (cond
316 ((member (cadr expr) vars :test #'equalp)
317 ;;Special handling of (expt var pow)
318 (let ((pos (position (cadr expr) vars :test #'equalp)))
319 (make-poly-variable ring (length vars) pos (caddr expr))))
320 ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
321 ;; Negative power means division in coefficient ring
322 ;; Non-integer power means non-polynomial coefficient
323 (coerce-coeff ring expr vars))
324 (t (poly-expt ring-and-order (p-eval (cadr expr)) (caddr expr)))))
325 (otherwise
326 (coerce-coeff ring expr vars)))))))
327
328(defun poly-eval-scalar (expr
329 &optional
330 (ring +ring-of-integers+)
331 &aux
332 (order #'lex>))
333 "Evaluate a scalar expression EXPR in ring RING."
334 (declare (type ring ring))
335 (poly-lc (poly-eval expr nil ring order)))
336
337(defun spoly (ring-and-order f g
338 &aux
339 (ring (ro-ring ring-and-order)))
340 "It yields the S-polynomial of polynomials F and G."
341 (declare (type ring-and-order ring-and-order) (type poly f g))
342 (let* ((lcm (monom-lcm (poly-lm f) (poly-lm g)))
343 (mf (monom-div lcm (poly-lm f)))
344 (mg (monom-div lcm (poly-lm g))))
345 (declare (type monom mf mg))
346 (multiple-value-bind (c cf cg)
347 (funcall (ring-ezgcd ring) (poly-lc f) (poly-lc g))
348 (declare (ignore c))
349 (poly-sub
350 ring-and-order
351 (scalar-times-poly ring cg (monom-times-poly mf f))
352 (scalar-times-poly ring cf (monom-times-poly mg g))))))
353
354
355(defun poly-primitive-part (ring p)
356 "Divide polynomial P with integer coefficients by gcd of its
357coefficients and return the result."
358 (declare (type ring ring) (type poly p))
359 (if (poly-zerop p)
360 (values p 1)
361 (let ((c (poly-content ring p)))
362 (values (make-poly-from-termlist
363 (mapcar
364 #'(lambda (x)
365 (make-term :monom (term-monom x)
366 :coeff (funcall (ring-div ring) (term-coeff x) c)))
367 (poly-termlist p))
368 (poly-sugar p))
369 c))))
370
371(defun poly-content (ring p)
372 "Greatest common divisor of the coefficients of the polynomial P. Use the RING structure
373to compute the greatest common divisor."
374 (declare (type ring ring) (type poly p))
375 (reduce (ring-gcd ring) (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (poly-lc p)))
376
377(defun read-infix-form (&key (stream t))
378 "Parser of infix expressions with integer/rational coefficients
379The parser will recognize two kinds of polynomial expressions:
380
381- polynomials in fully expanded forms with coefficients
382 written in front of symbolic expressions; constants can be optionally
383 enclosed in (); for example, the infix form
384 X^2-Y^2+(-4/3)*U^2*W^3-5
385 parses to
386 (+ (- (EXPT X 2) (EXPT Y 2)) (* (- (/ 4 3)) (EXPT U 2) (EXPT W 3)) (- 5))
387
388- lists of polynomials; for example
389 [X-Y, X^2+3*Z]
390 parses to
391 (:[ (- X Y) (+ (EXPT X 2) (* 3 Z)))
392 where the first symbol [ marks a list of polynomials.
393
394-other infix expressions, for example
395 [(X-Y)*(X+Y)/Z,(X+1)^2]
396parses to:
397 (:[ (/ (* (- X Y) (+ X Y)) Z) (EXPT (+ X 1) 2))
398Currently this function is implemented using M. Kantrowitz's INFIX package."
399 (read-from-string
400 (concatenate 'string
401 "#I("
402 (with-output-to-string (s)
403 (loop
404 (multiple-value-bind (line eof)
405 (read-line stream t)
406 (format s "~A" line)
407 (when eof (return)))))
408 ")")))
409
410(defun read-poly (vars &key
411 (stream t)
412 (ring +ring-of-integers+)
413 (order #'lex>))
414 "Reads an expression in prefix form from a stream STREAM.
415The expression read from the strem should represent a polynomial or a
416list of polynomials in variables VARS, over the ring RING. The
417polynomial or list of polynomials is returned, with terms in each
418polynomial ordered according to monomial order ORDER."
419 (poly-eval (read-infix-form :stream stream) vars ring order))
420
421(defun string->poly (str vars
422 &optional
423 (ring +ring-of-integers+)
424 (order #'lex>))
425 "Converts a string STR to a polynomial in variables VARS."
426 (with-input-from-string (s str)
427 (read-poly vars :stream s :ring ring :order order)))
428
429(defun poly->alist (p)
430 "Convert a polynomial P to an association list. Thus, the format of the
431returned value is ((MONOM[0] . COEFF[0]) (MONOM[1] . COEFF[1]) ...), where
432MONOM[I] is a list of exponents in the monomial and COEFF[I] is the
433corresponding coefficient in the ring."
434 (cond
435 ((poly-p p)
436 (mapcar #'term->cons (poly-termlist p)))
437 ((and (consp p) (eq (car p) :[))
438 (cons :[ (mapcar #'poly->alist (cdr p))))))
439
440(defun string->alist (str vars
441 &optional
442 (ring +ring-of-integers+)
443 (order #'lex>))
444 "Convert a string STR representing a polynomial or polynomial list to
445an association list (... (MONOM . COEFF) ...)."
446 (poly->alist (string->poly str vars ring order)))
447
448(defun poly-equal-no-sugar-p (p q)
449 "Compare polynomials for equality, ignoring sugar."
450 (declare (type poly p q))
451 (equalp (poly-termlist p) (poly-termlist q)))
452
453(defun poly-set-equal-no-sugar-p (p q)
454 "Compare polynomial sets P and Q for equality, ignoring sugar."
455 (null (set-exclusive-or p q :test #'poly-equal-no-sugar-p )))
456
457(defun poly-list-equal-no-sugar-p (p q)
458 "Compare polynomial lists P and Q for equality, ignoring sugar."
459 (every #'poly-equal-no-sugar-p p q))
460|#
Note: See TracBrowser for help on using the repository browser.