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

Last change on this file since 4447 was 4447, checked in by Marek Rychlik, 8 years ago
File size: 24.7 KB
Line 
1;;----------------------------------------------------------------
2;;; -*- Mode: Lisp -*-
3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4;;;
5;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
6;;;
7;;; This program is free software; you can redistribute it and/or modify
8;;; it under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 2 of the License, or
10;;; (at your option) any later version.
11;;;
12;;; This program is distributed in the hope that it will be useful,
13;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with this program; if not, write to the Free Software
19;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20;;;
21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22
23(defpackage "POLYNOMIAL"
24 (:use :cl :utils :monom :copy :ring)
25 (:export "POLY"
26 "POLY-DIMENSION"
27 "POLY-TERMLIST"
28 "POLY-TERM-ORDER"
29 "POLY-INSERT-TERM"
30 "SCALAR-MULTIPLY-BY"
31 "SCALAR-DIVIDE-BY"
32 "LEADING-TERM"
33 "LEADING-MONOMIAL"
34 "LEADING-COEFFICIENT"
35 "SECOND-LEADING-TERM"
36 "SECOND-LEADING-MONOMIAL"
37 "SECOND-LEADING-COEFFICIENT"
38 "ADD-TO"
39 "ADD"
40 "SUBTRACT-FROM"
41 "SUBTRACT"
42 "CHANGE-TERM-ORDER"
43 "STANDARD-EXTENSION"
44 "STANDARD-EXTENSION-1"
45 "STANDARD-SUM"
46 "SATURATION-EXTENSION"
47 "ALIST->POLY"
48 "POLY->ALIST"
49 "->INFIX"
50 "UNIVERSAL-EZGCD"
51 "S-POLYNOMIAL"
52 "POLY-CONTENT"
53 "POLY-PRIMITIVE-PART"
54 "SATURATION-EXTENSION-1"
55 "MAKE-POLY-VARIABLE"
56 "MAKE-POLY-CONSTANT"
57 "MAKE-ZERO-FOR"
58 "MAKE-UNIT-FOR"
59 "UNIVERSAL-EXPT"
60 "UNIVERSAL-EQUALP"
61 "UNIVERSAL-ZEROP"
62 "POLY-LENGTH"
63 "POLY-REVERSE"
64 "POLY-P"
65 "+LIST-MARKER+"
66 "POLY-EVAL"
67 "*COEFFICIENT-CLASS*")
68 (:documentation "Implements polynomials. A polynomial is essentially
69a mapping of monomials of the same degree to coefficients. The
70momomials are ordered according to a monomial order."))
71
72(in-package :polynomial)
73
74(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
75
76(defclass poly (ring)
77 ((dimension :initform nil
78 :initarg :dimension
79 :accessor poly-dimension
80 :documentation "Shared dimension of all terms, the number of variables")
81 (termlist :initform nil :initarg :termlist :accessor poly-termlist
82 :documentation "List of terms.")
83 (order :initform #'lex> :initarg :order :accessor poly-term-order
84 :documentation "Monomial/term order."))
85 (:default-initargs :dimension nil :termlist nil :order #'lex>)
86 (:documentation "A polynomial with a list of terms TERMLIST, ordered
87according to term order ORDER, which defaults to LEX>."))
88
89(defmethod print-object ((self poly) stream)
90 (print-unreadable-object (self stream :type t :identity t)
91 (with-accessors ((dimension poly-dimension)
92 (termlist poly-termlist)
93 (order poly-term-order))
94 self
95 (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A"
96 dimension termlist order))))
97
98(defmethod copy-instance :around ((object poly) &rest initargs &key &allow-other-keys)
99 "Returns a deep copy of the polynomial POLY, by copying the TERMLIST and its terms."
100 (declare (ignore object initargs))
101 (let ((copy (call-next-method)))
102 (with-slots (termlist)
103 copy
104 (setf termlist (mapcar #'copy-instance termlist)))
105 copy))
106
107
108(defgeneric change-term-order (self other)
109 (:documentation "Change term order of SELF to the term order of OTHER.")
110 (:method ((self poly) (other poly))
111 (unless (eq (poly-term-order self) (poly-term-order other))
112 (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
113 (poly-term-order self) (poly-term-order other)))
114 self))
115
116(defgeneric poly-insert-term (self term)
117 (:documentation "Insert a term TERM into SELF before all other
118terms. Order is not enforced.")
119 (:method ((self poly) (term term))
120 (cond ((null (poly-dimension self))
121 (setf (poly-dimension self) (monom-dimension term)))
122 (t (assert (= (poly-dimension self) (monom-dimension term)))))
123 (push term (poly-termlist self))
124 self))
125
126(defgeneric poly-append-term (self term)
127 (:documentation "Append a term TERM to SELF after all other terms. Order is not enforced.")
128 (:method ((self poly) (term term))
129 (cond ((null (poly-dimension self))
130 (setf (poly-dimension self) (monom-dimension term)))
131 (t (assert (= (poly-dimension self) (monom-dimension term)))))
132 (setf (cdr (last (poly-termlist self))) (list term))
133 self))
134
135(defun alist->poly (alist &aux (poly (make-instance 'poly)))
136 "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...).
137It can be used to enter simple polynomials by hand, e.g the polynomial
138in two variables, X and Y, given in standard notation as:
139
140 3*X^2*Y^3+2*Y+7
141
142can be entered as
143(ALIST->POLY '(((0 0) . 7) ((0 1) . 2) ((2 3) . 3) )). NOTE: the
144terms are entered in the increasing order.
145
146NOTE: The primary use is for low-level debugging of the package."
147 (dolist (x alist poly)
148 (poly-insert-term poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
149
150(defun poly->alist (p)
151 "Convert a polynomial P to an association list. Thus, the format of the
152returned value is ((MONOM[0] . COEFF[0]) (MONOM[1] . COEFF[1]) ...), where
153MONOM[I] is a list of exponents in the monomial and COEFF[I] is the
154corresponding coefficient in the ring."
155 (cond
156 ((poly-p p)
157 (mapcar #'->list (poly-termlist p)))
158 ((and (consp p) (eq (car p) :[))
159 (cons :[ (mapcar #'poly->alist (cdr p))))))
160
161
162
163(defmethod update-instance-for-different-class :after ((old term) (new poly) &key)
164 "Converts OLD of class TERM to a NEW of class POLY, by making it into a 1-element TERMLIST."
165 (reinitialize-instance new
166 :dimension (monom-dimension old)
167 :termlist (list old)))
168
169(defmethod update-instance-for-different-class :after ((old monom) (new poly) &key)
170 "Converts OLD of class MONOM to a NEW of class POLY, by making it into a 1-element TERMLIST."
171 (reinitialize-instance new
172 :dimension (monom-dimension old)
173 :termlist (list (change-class old 'term))))
174
175(defmethod universal-equalp ((self poly) (other poly))
176 "Implements equality of polynomials."
177 (and (eql (poly-dimension self) (poly-dimension other))
178 (every #'universal-equalp (poly-termlist self) (poly-termlist other))
179 (eq (poly-term-order self) (poly-term-order other))))
180
181(defgeneric leading-term (object)
182 (:method ((self poly))
183 (car (poly-termlist self)))
184 (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
185
186(defgeneric second-leading-term (object)
187 (:method ((self poly))
188 (cadar (poly-termlist self)))
189 (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
190
191(defgeneric leading-monomial (object)
192 (:method ((self poly))
193 (change-class (copy-instance (leading-term self)) 'monom))
194 (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
195
196(defgeneric second-leading-monomial (object)
197 (:method ((self poly))
198 (change-class (copy-instance (second-leading-term self)) 'monom))
199 (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
200
201(defgeneric leading-coefficient (object)
202 (:method ((self poly))
203 (term-coeff (leading-term self)))
204 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
205
206(defgeneric second-leading-coefficient (object)
207 (:method ((self poly))
208 (term-coeff (second-leading-term self)))
209 (:documentation "The second leading coefficient of a polynomial. It
210 signals error for a polynomial with at most one term."))
211
212(defmethod universal-zerop ((self poly))
213 "Return T iff SELF is a zero polynomial."
214 (null (poly-termlist self)))
215
216(defgeneric poly-length (self)
217 (:documentation "Return the number of terms.")
218 (:method ((self poly))
219 (length (poly-termlist self))))
220
221(defgeneric scalar-multiply-by (self other)
222 (:documentation "Multiply vector SELF by a scalar OTHER.")
223 (:method ((self poly) other)
224 (mapc #'(lambda (term) (setf (term-coeff term) (multiply-by (term-coeff term) other)))
225 (poly-termlist self))
226 self))
227
228(defgeneric scalar-divide-by (self other)
229 (:documentation "Divide vector SELF by a scalar OTHER.")
230 (:method ((self poly) other)
231 (mapc #'(lambda (term) (setf (term-coeff term) (divide-by (term-coeff term) other)))
232 (poly-termlist self))
233 self))
234
235(defmethod unary-inverse :before ((self poly))
236 "Checks invertibility of a polynomial SELF. To be invertable, the
237polynomial must be an invertible, constant polynomial."
238 (with-slots (termlist)
239 self
240 (assert (and (= (length termlist) 1) (zerop (total-degree (car termlist))))
241 nil
242 "To be invertible, the polynomial must have 1 term of total degree 0.")))
243
244(defmethod unary-inverse ((self poly))
245 "Returns the unary inverse of a polynomial SELF."
246 (with-slots (termlist)
247 self
248 (setf (car termlist) (unary-inverse (car termlist)))
249 self))
250
251(defmethod multiply-by ((self poly) (other monom))
252 "Multiply a polynomial SELF by OTHER."
253 (mapc #'(lambda (term) (multiply-by term other))
254 (poly-termlist self))
255 self)
256
257(defmethod multiply-by ((self poly) (other term))
258 "Multiply a polynomial SELF by OTHER."
259 (mapc #'(lambda (term) (multiply-by term other))
260 (poly-termlist self))
261 self)
262
263#|
264(defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
265 "Return an expression which will efficiently adds/subtracts two
266polynomials, P and Q. The addition/subtraction of coefficients is
267performed by calling ADD/SUBTRACT-FN. If UMINUS-FN is supplied, it is
268used to negate the coefficients of Q which do not have a corresponding
269coefficient in P. The code implements an efficient algorithm to add
270two polynomials represented as sorted lists of terms. The code
271destroys both arguments, reusing the terms to build the result."
272 `(macrolet ((lc (x) `(term-coeff (car ,x))))
273 (do ((p ,p)
274 (q ,q)
275 r)
276 ((or (endp p) (endp q))
277 ;; NOTE: R contains the result in reverse order. Can it
278 ;; be more efficient to produce the terms in correct order?
279 (unless (endp q)
280 ;; Upon subtraction, we must change the sign of
281 ;; all coefficients in q
282 ,@(when uminus-fn
283 `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
284 (setf r (nreconc r q)))
285 (unless (endp p)
286 (setf r (nreconc r p)))
287 r)
288 (multiple-value-bind
289 (greater-p equal-p)
290 (funcall ,order-fn (car p) (car q))
291 (cond
292 (greater-p
293 (rotatef (cdr p) r p)
294 )
295 (equal-p
296 (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
297 (cond
298 ((universal-zerop s)
299 (setf p (cdr p))
300 )
301 (t
302 (setf (lc p) s)
303 (rotatef (cdr p) r p))))
304 (setf q (cdr q))
305 )
306 (t
307 ;;Negate the term of Q if UMINUS provided, signallig
308 ;;that we are doing subtraction
309 ,(when uminus-fn
310 `(setf (lc q) (funcall ,uminus-fn (lc q))))
311 (rotatef (cdr q) r q))))
312 ;;(format t "P:~A~%" p)
313 ;;(format t "Q:~A~%" q)
314 ;;(format t "R:~A~%" r)
315 )))
316|#
317
318
319
320
321#|
322(defun fast-add (p q order-fn add-fn)
323 "Add two polynomials, P and Q, represented as lists of terms.
324The operation is destructive to both polynomials, as the terms
325of both lists are combined into the result. The operation does not
326create any new instance of TERM."
327 (macrolet ((lc (x) `(term-coeff (car ,x))))
328 (do (r)
329 ((or (endp p) (endp q))
330 ;; NOTE: R contains the result in reverse order. Can it
331 ;; be more efficient to produce the terms in correct order?
332 (unless (endp q)
333 (setf r (nreconc r q)))
334 (unless (endp p)
335 (setf r (nreconc r p)))
336 r)
337 (multiple-value-bind
338 (greater-p equal-p)
339 (funcall order-fn (car p) (car q))
340 (cond
341 (greater-p
342 (rotatef (cdr p) r p)
343 )
344 (equal-p
345 (let ((s (funcall add-fn (lc p) (lc q))))
346 (cond
347 ((universal-zerop s)
348 (setf p (cdr p))
349 )
350 (t
351 (setf (lc p) s)
352 (rotatef (cdr p) r p))))
353 (setf q (cdr q))
354 )
355 (t
356 (rotatef (cdr q) r q)))))))
357|#
358
359;; Getter/setter of leading coefficient
360(defun lc (x) (term-coeff (car x)))
361(defun (setf lc) (new-value x) (setf (term-coeff (car x)) new-value))
362
363
364(defun slow-add (p q order-fn add-fn)
365 (cond
366 ((endp p) q)
367 ((endp q) p)
368 (t
369 (multiple-value-bind
370 (greater-p equal-p)
371 (funcall order-fn (car p) (car q))
372 (cond
373 (greater-p ; (> (car p) (car q))
374 (cons (car p) (slow-add (cdr p) q order-fn add-fn))
375 )
376 (equal-p ; (= (car p)) (car q))
377 (let ((s (funcall add-fn (lc p) (lc q))))
378 (cond
379 ((universal-zerop s)
380 (slow-add (cdr p) (cdr q) order-fn add-fn))
381 (t
382 ;; Adjust the lc of p
383 (setf (lc p) s)
384 (cons (car p) (slow-add (cdr p) (cdr q) order-fn add-fn))
385 ))))
386 (t ;(< (car p) (car q))
387 (cons (car q) (slow-add p (cdr q) order-fn add-fn))
388 ))))))
389
390
391(defun fast-add (p q order-fn add-fn)
392 "This version calls SLOW-ADD and is bullet-proof."
393 (slow-add p q order-fn add-fn))
394
395#|
396;; NOTE: The stuff below works, but may not be worth the trouble.
397
398(defmacro def-add/subtract-method (add/subtract-method-name
399 uminus-method-name
400 &optional
401 (doc-string nil doc-string-supplied-p))
402 "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
403 `(defmethod ,add/subtract-method-name ((self poly) (other poly))
404 ,@(when doc-string-supplied-p `(,doc-string))
405 ;; Ensure orders are compatible
406 (change-term-order other self)
407 (setf (poly-termlist self) (fast-add/subtract
408 (poly-termlist self) (poly-termlist other)
409 (poly-term-order self)
410 #',add/subtract-method-name
411 ,(when uminus-method-name `(function ,uminus-method-name))))
412 self))
413
414(eval-when (:load-toplevel :execute)
415
416 (def-add/subtract-method add-to nil
417 "Adds to polynomial SELF another polynomial OTHER.
418This operation destructively modifies both polynomials.
419The result is stored in SELF. This implementation does
420no consing, entirely reusing the sells of SELF and OTHER.")
421
422 (def-add/subtract-method subtract-from unary-minus
423 "Subtracts from polynomial SELF another polynomial OTHER.
424This operation destructively modifies both polynomials.
425The result is stored in SELF. This implementation does
426no consing, entirely reusing the sells of SELF and OTHER.")
427 )
428
429|#
430
431(defmethod unary-minus ((self poly))
432 "Destructively modifies the coefficients of the polynomial SELF,
433by changing their sign."
434 (mapc #'unary-minus (poly-termlist self))
435 self)
436
437(defun add-termlists (p q order-fn)
438 "Destructively adds two termlists P and Q ordered according to ORDER-FN."
439 (fast-add p q order-fn #'add-to))
440
441(defun subtract-termlists (p q order-fn)
442 "Destructively subtracts two termlists P and Q ordered according to ORDER-FN."
443 (setf q (mapc #'unary-minus q))
444 (add-termlists p q order-fn))
445
446(defmethod add-to ((self poly) (other poly) &aux (other-copy (copy-instance other)))
447 "Adds to polynomial SELF another polynomial OTHER.
448This operation destructively modifies both polynomials.
449The result is stored in SELF. This implementation does
450no consing, entirely reusing the sells of SELF and OTHER."
451 (change-term-order other-copy self)
452 (setf (poly-termlist self) (add-termlists
453 (poly-termlist self) (poly-termlist other-copy)
454 (poly-term-order self)))
455 self)
456
457
458(defmethod subtract-from ((self poly) (other poly) &aux (other-copy (copy-instance other)))
459 "Subtracts from polynomial SELF another polynomial OTHER.
460This operation destructively modifies both polynomials.
461The result is stored in SELF. This implementation does
462no consing, entirely reusing the sells of SELF and OTHER."
463 (change-term-order other-copy self)
464 (setf (poly-termlist self) (subtract-termlists
465 (poly-termlist self) (poly-termlist other-copy)
466 (poly-term-order self)))
467 self)
468
469
470(defmethod add-to ((self poly) (other term) &aux (other-copy (copy-instance other)))
471 "Adds to a polynomial SELF a term OTHER. The term OTHER is not
472modified."
473 (add-to self (change-class other-copy 'poly)))
474
475(defmethod subtract-from ((self poly) (other term) &aux (other-copy (copy-instance other)))
476 "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not
477modified."
478 (subtract-from self (change-class other-copy 'poly)))
479
480
481(defmacro multiply-term-by-termlist-dropping-zeros (term termlist
482 &optional (reverse-arg-order-P nil))
483 "Multiplies term TERM by a list of term, TERMLIST.
484Takes into accound divisors of zero in the ring, by
485deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
486is T, change the order of arguments; this may be important
487if we extend the package to non-commutative rings."
488 `(mapcan #'(lambda (other-term)
489 (let ((prod (multiply
490 ,@(cond
491 (reverse-arg-order-p
492 `(other-term ,term))
493 (t
494 `(,term other-term))))))
495 (cond
496 ((universal-zerop prod) nil)
497 (t (list prod)))))
498 ,termlist))
499
500(defun multiply-termlists (p q order-fn)
501 "A version of polynomial multiplication, operating
502directly on termlists."
503 (cond
504 ((or (endp p) (endp q))
505 ;;p or q is 0 (represented by NIL)
506 nil)
507 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
508 ((endp (cdr p))
509 (multiply-term-by-termlist-dropping-zeros (car p) q))
510 ((endp (cdr q))
511 (multiply-term-by-termlist-dropping-zeros (car q) p t))
512 (t
513 (cons (multiply (car p) (car q))
514 (add-termlists
515 (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
516 (multiply-termlists (cdr p) q order-fn)
517 order-fn)))))
518
519(defmethod multiply-by ((self poly) (other poly) &aux (other-copy (copy-instance other)))
520 (change-term-order other-copy self)
521 (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
522 (poly-termlist other-copy)
523 (poly-term-order self)))
524 self)
525
526(defmethod left-tensor-product-by ((self poly) (other monom))
527 (setf (poly-termlist self)
528 (mapcan #'(lambda (term)
529 (let ((prod (left-tensor-product-by term other)))
530 (cond
531 ((universal-zerop prod) nil)
532 (t (list prod)))))
533 (poly-termlist self)))
534 (incf (poly-dimension self) (monom-dimension other))
535 self)
536
537(defmethod right-tensor-product-by ((self poly) (other monom))
538 (setf (poly-termlist self)
539 (mapcan #'(lambda (term)
540 (let ((prod (right-tensor-product-by term other)))
541 (cond
542 ((universal-zerop prod) nil)
543 (t (list prod)))))
544 (poly-termlist self)))
545 (incf (poly-dimension self) (monom-dimension other))
546 self)
547
548
549(defun standard-extension (plist &aux (k (length plist)) (i 0))
550 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
551is a list of polynomials. Destructively modifies PLIST elements."
552 (mapc #'(lambda (poly)
553 (left-tensor-product-by
554 poly
555 (prog1
556 (make-monom-variable k i)
557 (incf i))))
558 plist))
559
560(defun standard-extension-1 (plist
561 &aux
562 (plist (standard-extension plist))
563 (nvars (poly-dimension (car plist))))
564 "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
565Firstly, new K variables U1, U2, ..., UK, are inserted into each
566polynomial. Subsequently, P1, P2, ..., PK are destructively modified
567tantamount to replacing PI with UI*PI-1. It assumes that all
568polynomials have the same dimension, and only the first polynomial
569is examined to determine this dimension."
570 ;; Implementation note: we use STANDARD-EXTENSION and then subtract
571 ;; 1 from each polynomial; since UI*PI has no constant term,
572 ;; we just need to append the constant term at the end
573 ;; of each termlist.
574 (flet ((subtract-1 (p)
575 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
576 (setf plist (mapc #'subtract-1 plist)))
577 plist)
578
579
580(defun standard-sum (plist
581 &aux
582 (plist (standard-extension plist))
583 (nvars (poly-dimension (car plist))))
584 "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
585Firstly, new K variables, U1, U2, ..., UK, are inserted into each
586polynomial. Subsequently, P1, P2, ..., PK are destructively modified
587tantamount to replacing PI with UI*PI, and the resulting polynomials
588are added. Finally, 1 is subtracted. It should be noted that the term
589order is not modified, which is equivalent to using a lexicographic
590order on the first K variables."
591 (flet ((subtract-1 (p)
592 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
593 (subtract-1
594 (make-instance
595 'poly
596 :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
597
598(defgeneric s-polynomial (object1 object2)
599 (:documentation "Yields the S-polynomial of OBJECT1 and OBJECT2.")
600 (:method ((f poly) (g poly))
601 (let* ((lcm (universal-lcm (leading-monomial f) (leading-monomial g)))
602 (mf (divide lcm (leading-monomial f)))
603 (mg (divide lcm (leading-monomial g))))
604 (multiple-value-bind (c cf cg)
605 (universal-ezgcd (leading-coefficient f) (leading-coefficient g))
606 (declare (ignore c))
607 (subtract
608 (multiply f mf cg)
609 (multiply g mg cf))))))
610
611(defgeneric poly-content (object)
612 (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.")
613 (:method ((self poly))
614 (reduce #'universal-gcd
615 (mapcar #'term-coeff (rest (poly-termlist self)))
616 :initial-value (leading-coefficient self))))
617
618(defun poly-primitive-part (self)
619 "Divide polynomial SELF by gcd of its
620coefficients. Return the resulting polynomial."
621 (scalar-divide-by self (poly-content self)))
622
623(defun poly-insert-variables (self k)
624 (left-tensor-product-by self (make-instance 'monom :dimension k)))
625
626(defun saturation-extension (f plist &aux (k (length plist)))
627 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where
628PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted
629as first K variables. It destructively modifies F and PLIST."
630 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
631 (standard-extension-1 plist)))
632
633(defun polysaturation-extension (f plist &aux (k (length plist)))
634 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]
635and F' is F with variables U1,U2,...,UK inserted as first K
636variables. It destructively modifies F and PLIST."
637 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
638 (list (standard-sum plist))))
639
640(defun saturation-extension-1 (f p)
641 "Given family of polynomials F and a polynomial P, calculate [F',
642U*P-1], where F' is F with variable inserted as the first variable. It
643destructively modifies F and P."
644 (polysaturation-extension f (list p)))
645
646(defmethod multiply-by ((self poly) (other ring))
647 (scalar-multiply-by self other))
648
649(defun make-poly-variable (nvars pos &optional (power 1))
650 (change-class (make-monom-variable nvars pos power) 'poly))
651
652(defun make-poly-constant (nvars coeff)
653 (change-class (make-term-constant nvars coeff) 'poly))
654
655(defgeneric universal-expt (x y)
656 (:documentation "Raises X to power Y.")
657 (:method ((x number) (y integer)) (expt x y))
658 (:method ((x t) (y integer))
659 (declare (type fixnum y))
660 (cond
661 ((minusp y) (error "universal-expt: Negative exponent."))
662 ((universal-zerop x) (if (zerop y) 1))
663 (t
664 (do ((k 1 (ash k 1))
665 (q x (multiply q q)) ;keep squaring
666 (p (make-unit-for x) (if (not (zerop (logand k y))) (multiply p q) p)))
667 ((> k y) p)
668 (declare (fixnum k)))))))
669
670(defgeneric poly-p (object)
671 (:documentation "Checks if an object is a polynomial.")
672 (:method ((self poly)) t)
673 (:method ((self t)) nil))
674
675(defmethod ->sexp :before ((self poly) &optional vars)
676 "Ensures that the number of variables in VARS maches the polynomial dimension of the
677polynomial SELF."
678 (with-slots (dimension)
679 self
680 (assert (= (length vars) dimension)
681 nil
682 "Number of variables ~S does not match the dimension ~S"
683 vars dimension)))
684
685(defmethod ->sexp ((self poly) &optional vars)
686 "Converts a polynomial SELF to a sexp."
687 (let ((m (mapcar #'(lambda (trm) (->sexp trm vars))
688 (poly-termlist self))))
689 (cond ((endp m) 0)
690 ((endp (cdr m)) (car m))
691 (t (cons '+ m)))))
692
693(defconstant +list-marker+ :[
694 "A sexp with this head is considered a list of polynomials.")
695
696(defmethod ->sexp ((self cons) &optional vars)
697 (assert (eql (car self) +list-marker+))
698 (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self))))
699
700(defmethod make-zero-for ((self poly))
701 (make-instance 'poly :dimension (poly-dimension self)))
702
703(defmethod make-unit-for ((self poly))
704 (make-poly-constant (poly-dimension self) 1))
705
706(defgeneric poly-reverse (self)
707 (:documentation "Reverse the order of terms in a polynomial SELF.")
708 (:method ((self poly))
709 (with-slots (termlist)
710 self
711 (setf termlist (nreverse termlist)))
712 self))
713
714
715
Note: See TracBrowser for help on using the repository browser.