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/symbolic-polynomial.lisp@ 3397

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

* empty log message *

File size: 8.0 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 "SYMBOLIC-POLYNOMIAL"
23 (:use :cl :utils :ring :monom :order :term :polynomial :infix)
24 (:export "SYMBOLIC-POLY" "READ-INFIX-FORM" "STRING->POLY" "+LIST-MARKER+")
25 (:documentation "Implements symbolic polynomials. A symbolic
26polynomial is and object which uses symbolic variables for reading and
27printing in standard human-readable (infix) form."))
28
29(in-package :symbolic-polynomial)
30
31(defparameter +list-marker+ :[
32 "A sexp with this head is considered a list of polynomials.")
33
34(defclass symbolic-poly (poly)
35 ((vars :initform nil
36 :initarg :vars
37 :accessor symbolic-poly-vars)
38 )
39 (:default-initargs :termlist nil :vars nil))
40
41(defmethod print-object ((self symbolic-poly) stream)
42 (print-unreadable-object (self stream :type t :identity t)
43 (with-accessors ((dimension poly-dimension)
44 (termlist poly-termlist)
45 (order poly-term-order)
46 (vars symbolic-poly-vars))
47 self
48 (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A VARS=~A"
49 dimension termlist order vars))))
50
51
52(defmethod r-equalp ((self symbolic-poly) (other symbolic-poly))
53 (when (r-equalp (symbolic-poly-vars self) (symbolic-poly-vars other))
54 (call-next-method)))
55
56(defmethod update-instance-for-different-class :after ((old poly) (new symbolic-poly) &key)
57 "After adding variables to NEW, we need to make sure that the number
58of variables given by POLY-DIMENSION is consistent with VARS."
59 (assert (= (length (symbolic-poly-vars new)) (poly-dimension new))))
60
61(defgeneric poly-eval (expr vars order)
62 (:documentation "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in
63variables VARS. Return the resulting polynomial or list of
64polynomials. Standard arithmetical operators in form EXPR are
65replaced with their analogues in the ring of polynomials, and the
66resulting expression is evaluated, resulting in a polynomial or a list
67of polynomials in internal form. A similar operation in another computer
68algebra system could be called 'expand' or so.")
69 (:method ((expr symbolic-poly) vars order) expr)
70 (:method (expr vars order)
71 (labels ((p-eval (p) (poly-eval p vars order))
72 (p-eval-list (plist) (mapcar #'p-eval plist)))
73 (cond
74 ((eq expr 0)
75 (make-instance 'symbolic-poly :dimension (length vars) :vars vars))
76 ((member expr vars :test #'equalp)
77 (let ((pos (position expr vars :test #'equalp)))
78 (make-monom-variable (length vars) pos)))
79 ((atom expr)
80 expr)
81 ((eq (car expr) +list-marker+)
82 (cons +list-marker+ (p-eval-list (cdr expr))))
83 (t
84 (case (car expr)
85 (+ (reduce #'r+ (p-eval-list (cdr expr))))
86 (- (case (length expr)
87 (1 (make-poly-zero))
88 (2 (r- (p-eval (cadr expr))))
89 (3 (r- (p-eval (cadr expr)) (p-eval (caddr expr))))
90 (otherwise (r- (p-eval (cadr expr))
91 (reduce #'r+ (p-eval-list (cddr expr)))))))
92 (*
93 (if (endp (cddr expr)) ;unary
94 (p-eval (cdr expr))
95 (reduce #'r* (p-eval-list (cdr expr)))))
96 (/
97 ;; A polynomial can be divided by a scalar
98 (cond
99 ((endp (cddr expr))
100 ;; A special case (/ ?), the inverse
101 (r/ (cdr expr)))
102 (t
103 (let ((num (p-eval (cadr expr)))
104 (denom-inverse (r/ (mapcar #'p-eval-scalar (cddr expr)))))
105 (r* denom-inverse num)))))
106 (expt
107 (cond
108 ((member (cadr expr) vars :test #'equalp)
109 ;;Special handling of (expt var pow)
110 (let ((pos (position (cadr expr) vars :test #'equalp)))
111 (make-poly-variable ring (length vars) pos (caddr expr))))
112 ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
113 ;; Negative power means division in coefficient ring
114 ;; Non-integer power means non-polynomial coefficient
115 (coerce-coeff ring expr vars))
116 (t (r-expt (p-eval (cadr expr)) (caddr expr)))))
117 (otherwise
118 (coerce-coeff ring expr vars))))))))
119
120#|
121(defun poly-eval-scalar (expr
122 &optional
123 (ring +ring-of-integers+)
124 &aux
125 (order #'lex>))
126 "Evaluate a scalar expression EXPR in ring RING."
127 (declare (type ring ring))
128 (poly-lc (poly-eval expr nil ring order)))
129|#
130
131
132(defun read-infix-form (&key (stream t))
133 "Parser of infix expressions with integer/rational coefficients
134The parser will recognize two kinds of polynomial expressions:
135
136- polynomials in fully expanded forms with coefficients
137 written in front of symbolic expressions; constants can be optionally
138 enclosed in (); for example, the infix form
139 X^2-Y^2+(-4/3)*U^2*W^3-5
140 parses to
141 (+ (- (EXPT X 2) (EXPT Y 2)) (* (- (/ 4 3)) (EXPT U 2) (EXPT W 3)) (- 5))
142
143- lists of polynomials; for example
144 [X-Y, X^2+3*Z]
145 parses to
146 (:[ (- X Y) (+ (EXPT X 2) (* 3 Z)))
147 where the first symbol [ marks a list of polynomials.
148
149-other infix expressions, for example
150 [(X-Y)*(X+Y)/Z,(X+1)^2]
151parses to:
152 (:[ (/ (* (- X Y) (+ X Y)) Z) (EXPT (+ X 1) 2))
153Currently this function is implemented using M. Kantrowitz's INFIX package."
154 (read-from-string
155 (concatenate 'string
156 "#I("
157 (with-output-to-string (s)
158 (loop
159 (multiple-value-bind (line eof)
160 (read-line stream t)
161 (format s "~A" line)
162 (when eof (return)))))
163 ")")))
164
165(defun read-poly (vars &key
166 (stream t)
167 (order #'lex>))
168 "Reads an expression in prefix form from a stream STREAM.
169The expression read from the strem should represent a polynomial or a
170list of polynomials in variables VARS, over the ring RING. The
171polynomial or list of polynomials is returned, with terms in each
172polynomial ordered according to monomial order ORDER."
173 (poly-eval (read-infix-form :stream stream) vars order))
174
175(defun string->poly (str vars
176 &optional
177 (order #'lex>))
178 "Converts a string STR to a polynomial in variables VARS."
179 (with-input-from-string (s str)
180 (read-poly vars :stream s :order order)))
181
182(defun poly->alist (p)
183 "Convert a polynomial P to an association list. Thus, the format of the
184returned value is ((MONOM[0] . COEFF[0]) (MONOM[1] . COEFF[1]) ...), where
185MONOM[I] is a list of exponents in the monomial and COEFF[I] is the
186corresponding coefficient in the ring."
187 (cond
188 ((poly-p p)
189 (mapcar #'term->cons (poly-termlist p)))
190 ((and (consp p) (eq (car p) :[))
191 (cons :[ (mapcar #'poly->alist (cdr p))))))
192
193(defun string->alist (str vars
194 &optional
195 (ring +ring-of-integers+)
196 (order #'lex>))
197 "Convert a string STR representing a polynomial or polynomial list to
198an association list (... (MONOM . COEFF) ...)."
199 (poly->alist (string->poly str vars ring order)))
200
201(defun poly-equal-no-sugar-p (p q)
202 "Compare polynomials for equality, ignoring sugar."
203 (declare (type poly p q))
204 (equalp (poly-termlist p) (poly-termlist q)))
205
206(defun poly-set-equal-no-sugar-p (p q)
207 "Compare polynomial sets P and Q for equality, ignoring sugar."
208 (null (set-exclusive-or p q :test #'poly-equal-no-sugar-p )))
209
210(defun poly-list-equal-no-sugar-p (p q)
211 "Compare polynomial lists P and Q for equality, ignoring sugar."
212 (every #'poly-equal-no-sugar-p p q))
213
Note: See TracBrowser for help on using the repository browser.