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

Last change on this file since 4444 was 4444, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 24.6 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 fast-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) (fast-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 (fast-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) (fast-add (cdr p) (cdr q) order-fn add-fn))
385 ))))
386 (t ;(< (car p) (car q))
387 (cons (car q) (fast-add p (cdr q) order-fn add-fn))
388 ))))))
389
390
391#|
392;; NOTE: The stuff below works, but may not be worth the trouble.
393
394(defmacro def-add/subtract-method (add/subtract-method-name
395 uminus-method-name
396 &optional
397 (doc-string nil doc-string-supplied-p))
398 "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
399 `(defmethod ,add/subtract-method-name ((self poly) (other poly))
400 ,@(when doc-string-supplied-p `(,doc-string))
401 ;; Ensure orders are compatible
402 (change-term-order other self)
403 (setf (poly-termlist self) (fast-add/subtract
404 (poly-termlist self) (poly-termlist other)
405 (poly-term-order self)
406 #',add/subtract-method-name
407 ,(when uminus-method-name `(function ,uminus-method-name))))
408 self))
409
410(eval-when (:load-toplevel :execute)
411
412 (def-add/subtract-method add-to nil
413 "Adds to polynomial SELF another polynomial OTHER.
414This operation destructively modifies both polynomials.
415The result is stored in SELF. This implementation does
416no consing, entirely reusing the sells of SELF and OTHER.")
417
418 (def-add/subtract-method subtract-from unary-minus
419 "Subtracts from polynomial SELF another polynomial OTHER.
420This operation destructively modifies both polynomials.
421The result is stored in SELF. This implementation does
422no consing, entirely reusing the sells of SELF and OTHER.")
423 )
424
425|#
426
427(defmethod unary-minus ((self poly))
428 "Destructively modifies the coefficients of the polynomial SELF,
429by changing their sign."
430 (mapc #'unary-minus (poly-termlist self))
431 self)
432
433(defun add-termlists (p q order-fn)
434 "Destructively adds two termlists P and Q ordered according to ORDER-FN."
435 (fast-add p q order-fn #'add-to))
436
437(defun subtract-termlists (p q order-fn)
438 "Destructively subtracts two termlists P and Q ordered according to ORDER-FN."
439 (setf q (mapc #'unary-minus q))
440 (add-termlists p q order-fn))
441
442(defmethod add-to ((self poly) (other poly) &aux (other-copy (copy-instance other)))
443 "Adds to polynomial SELF another polynomial OTHER.
444This operation destructively modifies both polynomials.
445The result is stored in SELF. This implementation does
446no consing, entirely reusing the sells of SELF and OTHER."
447 (change-term-order other-copy self)
448 (setf (poly-termlist self) (add-termlists
449 (poly-termlist self) (poly-termlist other-copy)
450 (poly-term-order self)))
451 self)
452
453
454(defmethod subtract-from ((self poly) (other poly) &aux (other-copy (copy-instance other)))
455 "Subtracts from polynomial SELF another polynomial OTHER.
456This operation destructively modifies both polynomials.
457The result is stored in SELF. This implementation does
458no consing, entirely reusing the sells of SELF and OTHER."
459 (change-term-order other-copy self)
460 (setf (poly-termlist self) (subtract-termlists
461 (poly-termlist self) (poly-termlist other-copy)
462 (poly-term-order self)))
463 self)
464
465
466(defmethod add-to ((self poly) (other term) &aux (other-copy (copy-instance other)))
467 "Adds to a polynomial SELF a term OTHER. The term OTHER is not
468modified."
469 (add-to self (change-class other-copy 'poly)))
470
471(defmethod subtract-from ((self poly) (other term) &aux (other-copy (copy-instance other)))
472 "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not
473modified."
474 (subtract-from self (change-class other-copy 'poly)))
475
476
477(defmacro multiply-term-by-termlist-dropping-zeros (term termlist
478 &optional (reverse-arg-order-P nil))
479 "Multiplies term TERM by a list of term, TERMLIST.
480Takes into accound divisors of zero in the ring, by
481deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
482is T, change the order of arguments; this may be important
483if we extend the package to non-commutative rings."
484 `(mapcan #'(lambda (other-term)
485 (let ((prod (multiply
486 ,@(cond
487 (reverse-arg-order-p
488 `(other-term ,term))
489 (t
490 `(,term other-term))))))
491 (cond
492 ((universal-zerop prod) nil)
493 (t (list prod)))))
494 ,termlist))
495
496(defun multiply-termlists (p q order-fn)
497 "A version of polynomial multiplication, operating
498directly on termlists."
499 (cond
500 ((or (endp p) (endp q))
501 ;;p or q is 0 (represented by NIL)
502 nil)
503 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
504 ((endp (cdr p))
505 (multiply-term-by-termlist-dropping-zeros (car p) q))
506 ((endp (cdr q))
507 (multiply-term-by-termlist-dropping-zeros (car q) p t))
508 (t
509 (cons (multiply (car p) (car q))
510 (add-termlists
511 (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
512 (multiply-termlists (cdr p) q order-fn)
513 order-fn)))))
514
515(defmethod multiply-by ((self poly) (other poly) &aux (other-copy (copy-instance other)))
516 (change-term-order other-copy self)
517 (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
518 (poly-termlist other-copy)
519 (poly-term-order self)))
520 self)
521
522(defmethod left-tensor-product-by ((self poly) (other monom))
523 (setf (poly-termlist self)
524 (mapcan #'(lambda (term)
525 (let ((prod (left-tensor-product-by term other)))
526 (cond
527 ((universal-zerop prod) nil)
528 (t (list prod)))))
529 (poly-termlist self)))
530 (incf (poly-dimension self) (monom-dimension other))
531 self)
532
533(defmethod right-tensor-product-by ((self poly) (other monom))
534 (setf (poly-termlist self)
535 (mapcan #'(lambda (term)
536 (let ((prod (right-tensor-product-by term other)))
537 (cond
538 ((universal-zerop prod) nil)
539 (t (list prod)))))
540 (poly-termlist self)))
541 (incf (poly-dimension self) (monom-dimension other))
542 self)
543
544
545(defun standard-extension (plist &aux (k (length plist)) (i 0))
546 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
547is a list of polynomials. Destructively modifies PLIST elements."
548 (mapc #'(lambda (poly)
549 (left-tensor-product-by
550 poly
551 (prog1
552 (make-monom-variable k i)
553 (incf i))))
554 plist))
555
556(defun standard-extension-1 (plist
557 &aux
558 (plist (standard-extension plist))
559 (nvars (poly-dimension (car plist))))
560 "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
561Firstly, new K variables U1, U2, ..., UK, are inserted into each
562polynomial. Subsequently, P1, P2, ..., PK are destructively modified
563tantamount to replacing PI with UI*PI-1. It assumes that all
564polynomials have the same dimension, and only the first polynomial
565is examined to determine this dimension."
566 ;; Implementation note: we use STANDARD-EXTENSION and then subtract
567 ;; 1 from each polynomial; since UI*PI has no constant term,
568 ;; we just need to append the constant term at the end
569 ;; of each termlist.
570 (flet ((subtract-1 (p)
571 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
572 (setf plist (mapc #'subtract-1 plist)))
573 plist)
574
575
576(defun standard-sum (plist
577 &aux
578 (plist (standard-extension plist))
579 (nvars (poly-dimension (car plist))))
580 "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
581Firstly, new K variables, U1, U2, ..., UK, are inserted into each
582polynomial. Subsequently, P1, P2, ..., PK are destructively modified
583tantamount to replacing PI with UI*PI, and the resulting polynomials
584are added. Finally, 1 is subtracted. It should be noted that the term
585order is not modified, which is equivalent to using a lexicographic
586order on the first K variables."
587 (flet ((subtract-1 (p)
588 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
589 (subtract-1
590 (make-instance
591 'poly
592 :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
593
594(defgeneric s-polynomial (object1 object2)
595 (:documentation "Yields the S-polynomial of OBJECT1 and OBJECT2.")
596 (:method ((f poly) (g poly))
597 (let* ((lcm (universal-lcm (leading-monomial f) (leading-monomial g)))
598 (mf (divide lcm (leading-monomial f)))
599 (mg (divide lcm (leading-monomial g))))
600 (multiple-value-bind (c cf cg)
601 (universal-ezgcd (leading-coefficient f) (leading-coefficient g))
602 (declare (ignore c))
603 (subtract
604 (multiply f mf cg)
605 (multiply g mg cf))))))
606
607(defgeneric poly-content (object)
608 (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.")
609 (:method ((self poly))
610 (reduce #'universal-gcd
611 (mapcar #'term-coeff (rest (poly-termlist self)))
612 :initial-value (leading-coefficient self))))
613
614(defun poly-primitive-part (self)
615 "Divide polynomial SELF by gcd of its
616coefficients. Return the resulting polynomial."
617 (scalar-divide-by self (poly-content self)))
618
619(defun poly-insert-variables (self k)
620 (left-tensor-product-by self (make-instance 'monom :dimension k)))
621
622(defun saturation-extension (f plist &aux (k (length plist)))
623 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where
624PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted
625as first K variables. It destructively modifies F and PLIST."
626 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
627 (standard-extension-1 plist)))
628
629(defun polysaturation-extension (f plist &aux (k (length plist)))
630 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]
631and F' is F with variables U1,U2,...,UK inserted as first K
632variables. It destructively modifies F and PLIST."
633 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
634 (list (standard-sum plist))))
635
636(defun saturation-extension-1 (f p)
637 "Given family of polynomials F and a polynomial P, calculate [F',
638U*P-1], where F' is F with variable inserted as the first variable. It
639destructively modifies F and P."
640 (polysaturation-extension f (list p)))
641
642(defmethod multiply-by ((self poly) (other ring))
643 (scalar-multiply-by self other))
644
645(defun make-poly-variable (nvars pos &optional (power 1))
646 (change-class (make-monom-variable nvars pos power) 'poly))
647
648(defun make-poly-constant (nvars coeff)
649 (change-class (make-term-constant nvars coeff) 'poly))
650
651(defgeneric universal-expt (x y)
652 (:documentation "Raises X to power Y.")
653 (:method ((x number) (y integer)) (expt x y))
654 (:method ((x t) (y integer))
655 (declare (type fixnum y))
656 (cond
657 ((minusp y) (error "universal-expt: Negative exponent."))
658 ((universal-zerop x) (if (zerop y) 1))
659 (t
660 (do ((k 1 (ash k 1))
661 (q x (multiply q q)) ;keep squaring
662 (p (make-unit-for x) (if (not (zerop (logand k y))) (multiply p q) p)))
663 ((> k y) p)
664 (declare (fixnum k)))))))
665
666(defgeneric poly-p (object)
667 (:documentation "Checks if an object is a polynomial.")
668 (:method ((self poly)) t)
669 (:method ((self t)) nil))
670
671(defmethod ->sexp :before ((self poly) &optional vars)
672 "Ensures that the number of variables in VARS maches the polynomial dimension of the
673polynomial SELF."
674 (with-slots (dimension)
675 self
676 (assert (= (length vars) dimension)
677 nil
678 "Number of variables ~S does not match the dimension ~S"
679 vars dimension)))
680
681(defmethod ->sexp ((self poly) &optional vars)
682 "Converts a polynomial SELF to a sexp."
683 (let ((m (mapcar #'(lambda (trm) (->sexp trm vars))
684 (poly-termlist self))))
685 (cond ((endp m) 0)
686 ((endp (cdr m)) (car m))
687 (t (cons '+ m)))))
688
689(defconstant +list-marker+ :[
690 "A sexp with this head is considered a list of polynomials.")
691
692(defmethod ->sexp ((self cons) &optional vars)
693 (assert (eql (car self) +list-marker+))
694 (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self))))
695
696(defmethod make-zero-for ((self poly))
697 (make-instance 'poly :dimension (poly-dimension self)))
698
699(defmethod make-unit-for ((self poly))
700 (make-poly-constant (poly-dimension self) 1))
701
702(defgeneric poly-reverse (self)
703 (:documentation "Reverse the order of terms in a polynomial SELF.")
704 (:method ((self poly))
705 (with-slots (termlist)
706 self
707 (setf termlist (nreverse termlist)))
708 self))
709
710
711
Note: See TracBrowser for help on using the repository browser.