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

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

* empty log message *

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