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

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

* empty log message *

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