| [1201] | 1 | ;;; -*- Mode: Lisp -*-
|
|---|
| [98] | 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 |
|
|---|
| [133] | 22 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 23 | ;;
|
|---|
| [268] | 24 | ;; Load this file into Maxima to bootstrap the Grobner package.
|
|---|
| [390] | 25 | ;; NOTE: This file does use symbols defined by Maxima, so it
|
|---|
| 26 | ;; will not work when loaded in Common Lisp.
|
|---|
| [133] | 27 | ;;
|
|---|
| [268] | 28 | ;; DETAILS: This file implements an interface between the Grobner
|
|---|
| [374] | 29 | ;; basis package NGROBNER, which is a pure Common Lisp package, and
|
|---|
| 30 | ;; Maxima. NGROBNER for efficiency uses its own representation of
|
|---|
| 31 | ;; polynomials. Thus, it is necessary to convert Maxima representation
|
|---|
| 32 | ;; to the internal representation and back. The facilities to do so
|
|---|
| 33 | ;; are implemented in this file.
|
|---|
| [268] | 34 | ;;
|
|---|
| [270] | 35 | ;; Also, since the NGROBNER package consists of many Lisp files, it is
|
|---|
| [375] | 36 | ;; necessary to load the files. It is possible and preferrable to use
|
|---|
| 37 | ;; ASDF for this purpose. The default is ASDF. It is also possible to
|
|---|
| 38 | ;; simply used LOAD and COMPILE-FILE to accomplish this task.
|
|---|
| [270] | 39 | ;;
|
|---|
| [133] | 40 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 41 |
|
|---|
| [98] | 42 | (in-package :maxima)
|
|---|
| 43 |
|
|---|
| [568] | 44 | (macsyma-module cgb-maxima)
|
|---|
| [98] | 45 |
|
|---|
| [568] | 46 |
|
|---|
| [98] | 47 | (eval-when
|
|---|
| 48 | #+gcl (load eval)
|
|---|
| 49 | #-gcl (:load-toplevel :execute)
|
|---|
| 50 | (format t "~&Loading maxima-grobner ~a ~a~%"
|
|---|
| 51 | "$Revision: 2.0 $" "$Date: 2015/06/02 0:34:17 $"))
|
|---|
| 52 |
|
|---|
| 53 | ;;FUNCTS is loaded because it contains the definition of LCM
|
|---|
| [995] | 54 | ($load "functs")
|
|---|
| [568] | 55 | #+sbcl(progn (require 'asdf) (load "ngrobner.asd")(asdf:load-system :ngrobner))
|
|---|
| [152] | 56 |
|
|---|
| [571] | 57 | (use-package :ngrobner)
|
|---|
| [274] | 58 |
|
|---|
| [571] | 59 |
|
|---|
| [98] | 60 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 61 | ;;
|
|---|
| 62 | ;; Maxima expression ring
|
|---|
| 63 | ;;
|
|---|
| 64 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| [521] | 65 | ;;
|
|---|
| 66 | ;; This is how we perform operations on coefficients
|
|---|
| 67 | ;; using Maxima functions.
|
|---|
| 68 | ;;
|
|---|
| 69 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 70 |
|
|---|
| [230] | 71 | (defparameter *maxima-ring*
|
|---|
| 72 | (make-ring
|
|---|
| [98] | 73 | ;;(defun coeff-zerop (expr) (meval1 `(($is) (($equal) ,expr 0))))
|
|---|
| 74 | :parse #'(lambda (expr)
|
|---|
| 75 | (when modulus (setf expr ($rat expr)))
|
|---|
| 76 | expr)
|
|---|
| 77 | :unit #'(lambda () (if modulus ($rat 1) 1))
|
|---|
| 78 | :zerop #'(lambda (expr)
|
|---|
| 79 | ;;When is exactly a maxima expression equal to 0?
|
|---|
| 80 | (cond ((numberp expr)
|
|---|
| 81 | (= expr 0))
|
|---|
| 82 | ((atom expr) nil)
|
|---|
| 83 | (t
|
|---|
| 84 | (case (caar expr)
|
|---|
| 85 | (mrat (eql ($ratdisrep expr) 0))
|
|---|
| 86 | (otherwise (eql ($totaldisrep expr) 0))))))
|
|---|
| 87 | :add #'(lambda (x y) (m+ x y))
|
|---|
| 88 | :sub #'(lambda (x y) (m- x y))
|
|---|
| 89 | :uminus #'(lambda (x) (m- x))
|
|---|
| 90 | :mul #'(lambda (x y) (m* x y))
|
|---|
| 91 | ;;(defun coeff-div (x y) (cadr ($divide x y)))
|
|---|
| 92 | :div #'(lambda (x y) (m// x y))
|
|---|
| 93 | :lcm #'(lambda (x y) (meval1 `((|$LCM|) ,x ,y)))
|
|---|
| 94 | :ezgcd #'(lambda (x y) (apply #'values (cdr ($ezgcd ($totaldisrep x) ($totaldisrep y)))))
|
|---|
| 95 | ;; :gcd #'(lambda (x y) (second ($ezgcd x y)))))
|
|---|
| 96 | :gcd #'(lambda (x y) ($gcd x y))))
|
|---|
| 97 |
|
|---|
| [619] | 98 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 99 | ;;
|
|---|
| 100 | ;; Maxima expression parsing
|
|---|
| 101 | ;;
|
|---|
| 102 | ;;
|
|---|
| 103 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 104 | ;;
|
|---|
| 105 | ;; Functions and macros dealing with internal representation
|
|---|
| 106 | ;; structure.
|
|---|
| 107 | ;;
|
|---|
| 108 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| [114] | 109 |
|
|---|
| [619] | 110 | (defun equal-test-p (expr1 expr2)
|
|---|
| 111 | (alike1 expr1 expr2))
|
|---|
| 112 |
|
|---|
| 113 | (defun coerce-maxima-list (expr)
|
|---|
| 114 | "Convert a Maxima list to Lisp list."
|
|---|
| 115 | (cond
|
|---|
| 116 | ((and (consp (car expr)) (eql (caar expr) 'mlist)) (cdr expr))
|
|---|
| 117 | (t expr)))
|
|---|
| 118 |
|
|---|
| 119 | (defun free-of-vars (expr vars) (apply #'$freeof `(,@vars ,expr)))
|
|---|
| 120 |
|
|---|
| [1642] | 121 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 122 | ;;
|
|---|
| 123 | ;; Order utilities
|
|---|
| 124 | ;;
|
|---|
| 125 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 126 |
|
|---|
| [1644] | 127 | (defun find-ring (ring)
|
|---|
| 128 | "This function returns the ring structure bases on input symbol."
|
|---|
| 129 | (cond
|
|---|
| 130 | ((null ring) nil)
|
|---|
| 131 | ((symbolp ring)
|
|---|
| 132 | (case ring
|
|---|
| [1650] | 133 | ((maxima-ring :maxima-ring #:maxima-ring $expression_ring #:expression_ring)
|
|---|
| 134 | *maxima-ring*)
|
|---|
| [1648] | 135 | ((ring-of-integers :ring-of-integers #:ring-of-integers $ring_of_integers) *ring-of-integers*)
|
|---|
| [1644] | 136 | (otherwise
|
|---|
| 137 | (mtell "~%Warning: Ring ~M not found. Using default.~%" ring))))
|
|---|
| 138 | (t
|
|---|
| 139 | (mtell "~%Ring specification ~M is not recognized. Using default.~%" ring)
|
|---|
| 140 | nil)))
|
|---|
| 141 |
|
|---|
| [1642] | 142 | (defun find-order (order)
|
|---|
| 143 | "This function returns the order function bases on its name."
|
|---|
| 144 | (cond
|
|---|
| 145 | ((null order) nil)
|
|---|
| 146 | ((symbolp order)
|
|---|
| 147 | (case order
|
|---|
| [1650] | 148 | ((lex :lex $lex #:lex)
|
|---|
| [1649] | 149 | #'lex>)
|
|---|
| [1650] | 150 | ((grlex :grlex $grlex #:grlex)
|
|---|
| [1649] | 151 | #'grlex>)
|
|---|
| 152 | ((grevlex :grevlex $grevlex #:grevlex)
|
|---|
| 153 | #'grevlex>)
|
|---|
| [1650] | 154 | ((invlex :invlex $invlex #:invlex)
|
|---|
| [1649] | 155 | #'invlex>)
|
|---|
| [1642] | 156 | (otherwise
|
|---|
| 157 | (mtell "~%Warning: Order ~M not found. Using default.~%" order))))
|
|---|
| 158 | (t
|
|---|
| 159 | (mtell "~%Order specification ~M is not recognized. Using default.~%" order)
|
|---|
| 160 | nil)))
|
|---|
| 161 |
|
|---|
| [1644] | 162 | (defun maxima->poly (expr vars
|
|---|
| 163 | &optional
|
|---|
| 164 | (ring $poly_coefficient_ring)
|
|---|
| 165 | (order $poly_monomial_order)
|
|---|
| 166 | &aux
|
|---|
| 167 | (vars (coerce-maxima-list vars))
|
|---|
| 168 | (ring-and-order (make-ring-and-order (find-ring) (find-order))))
|
|---|
| [619] | 169 | "Convert a maxima polynomial expression EXPR in variables VARS to internal form."
|
|---|
| [1641] | 170 | (labels ((parse (arg) (maxima->poly arg vars))
|
|---|
| [619] | 171 | (parse-list (args) (mapcar #'parse args)))
|
|---|
| 172 | (cond
|
|---|
| 173 | ((eql expr 0) (make-poly-zero))
|
|---|
| 174 | ((member expr vars :test #'equal-test-p)
|
|---|
| 175 | (let ((pos (position expr vars :test #'equal-test-p)))
|
|---|
| [1002] | 176 | (make-variable *maxima-ring* (length vars) pos)))
|
|---|
| [619] | 177 | ((free-of-vars expr vars)
|
|---|
| 178 | ;;This means that variable-free CRE and Poisson forms will be converted
|
|---|
| 179 | ;;to coefficients intact
|
|---|
| [1002] | 180 | (coerce-coeff *maxima-ring* expr vars))
|
|---|
| [619] | 181 | (t
|
|---|
| 182 | (case (caar expr)
|
|---|
| [1002] | 183 | (mplus (reduce #'(lambda (x y) (poly-add *maxima-ring* x y)) (parse-list (cdr expr))))
|
|---|
| 184 | (mminus (poly-uminus *maxima-ring* (parse (cadr expr))))
|
|---|
| [619] | 185 | (mtimes
|
|---|
| 186 | (if (endp (cddr expr)) ;unary
|
|---|
| 187 | (parse (cdr expr))
|
|---|
| [1002] | 188 | (reduce #'(lambda (p q) (poly-mul *maxima-ring* p q)) (parse-list (cdr expr)))))
|
|---|
| [619] | 189 | (mexpt
|
|---|
| 190 | (cond
|
|---|
| 191 | ((member (cadr expr) vars :test #'equal-test-p)
|
|---|
| 192 | ;;Special handling of (expt var pow)
|
|---|
| 193 | (let ((pos (position (cadr expr) vars :test #'equal-test-p)))
|
|---|
| [1002] | 194 | (make-variable *maxima-ring* (length vars) pos (caddr expr))))
|
|---|
| [619] | 195 | ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
|
|---|
| 196 | ;; Negative power means division in coefficient ring
|
|---|
| 197 | ;; Non-integer power means non-polynomial coefficient
|
|---|
| 198 | (mtell "~%Warning: Expression ~%~M~%contains power which is not a positive integer. Parsing as coefficient.~%"
|
|---|
| 199 | expr)
|
|---|
| [1002] | 200 | (coerce-coeff *maxima-ring* expr vars))
|
|---|
| 201 | (t (poly-expt *maxima-ring* (parse (cadr expr)) (caddr expr)))))
|
|---|
| [619] | 202 | (mrat (parse ($ratdisrep expr)))
|
|---|
| 203 | (mpois (parse ($outofpois expr)))
|
|---|
| 204 | (otherwise
|
|---|
| [1002] | 205 | (coerce-coeff *maxima-ring* expr vars)))))))
|
|---|
| [619] | 206 |
|
|---|
| [1640] | 207 | #|
|
|---|
| 208 |
|
|---|
| [619] | 209 | (defun parse-poly-list (expr vars)
|
|---|
| 210 | "Parse a Maxima representation of a list of polynomials."
|
|---|
| 211 | (case (caar expr)
|
|---|
| 212 | (mlist (mapcar #'(lambda (p) (parse-poly p vars)) (cdr expr)))
|
|---|
| 213 | (t (merror "Expression ~M is not a list of polynomials in variables ~M."
|
|---|
| 214 | expr vars))))
|
|---|
| 215 |
|
|---|
| 216 | (defun parse-poly-list-list (poly-list-list vars)
|
|---|
| 217 | "Parse a Maxima representation of a list of lists of polynomials."
|
|---|
| 218 | (mapcar #'(lambda (g) (parse-poly-list g vars)) (coerce-maxima-list poly-list-list)))
|
|---|
| 219 |
|
|---|
| 220 |
|
|---|
| [111] | 221 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 222 | ;;
|
|---|
| [241] | 223 | ;; Conversion from internal form to Maxima general form
|
|---|
| 224 | ;;
|
|---|
| 225 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 226 |
|
|---|
| 227 | (defun maxima-head ()
|
|---|
| 228 | (if $poly_return_term_list
|
|---|
| 229 | '(mlist)
|
|---|
| 230 | '(mplus)))
|
|---|
| 231 |
|
|---|
| 232 | (defun coerce-to-maxima (poly-type object vars)
|
|---|
| 233 | (case poly-type
|
|---|
| 234 | (:polynomial
|
|---|
| 235 | `(,(maxima-head) ,@(mapcar #'(lambda (term) (coerce-to-maxima :term term vars)) (poly-termlist object))))
|
|---|
| 236 | (:poly-list
|
|---|
| 237 | `((mlist) ,@(mapcar #'(lambda (p) (funcall *ratdisrep-fun* (coerce-to-maxima :polynomial p vars))) object)))
|
|---|
| 238 | (:term
|
|---|
| 239 | `((mtimes) ,(funcall *ratdisrep-fun* (term-coeff object))
|
|---|
| 240 | ,@(mapcar #'(lambda (var power) `((mexpt) ,var ,power))
|
|---|
| [882] | 241 | vars (coerce (term-monom object) 'list))))
|
|---|
| [241] | 242 | ;; Assumes that Lisp and Maxima logicals coincide
|
|---|
| 243 | (:logical object)
|
|---|
| 244 | (otherwise
|
|---|
| 245 | object)))
|
|---|
| 246 |
|
|---|
| 247 |
|
|---|
| 248 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 249 | ;;
|
|---|
| [111] | 250 | ;; Unary and binary operation definition facility
|
|---|
| 251 | ;;
|
|---|
| 252 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| [98] | 253 |
|
|---|
| [111] | 254 | (defmacro define-unop (maxima-name fun-name
|
|---|
| 255 | &optional (documentation nil documentation-supplied-p))
|
|---|
| 256 | "Define a MAXIMA-level unary operator MAXIMA-NAME corresponding to unary function FUN-NAME."
|
|---|
| 257 | `(defun ,maxima-name (p vars
|
|---|
| 258 | &aux
|
|---|
| 259 | (vars (coerce-maxima-list vars))
|
|---|
| 260 | (p (parse-poly p vars)))
|
|---|
| 261 | ,@(when documentation-supplied-p (list documentation))
|
|---|
| [1002] | 262 | (coerce-to-maxima :polynomial (,fun-name *maxima-ring* p) vars)))
|
|---|
| [111] | 263 |
|
|---|
| 264 | (defmacro define-binop (maxima-name fun-name
|
|---|
| 265 | &optional (documentation nil documentation-supplied-p))
|
|---|
| 266 | "Define a MAXIMA-level binary operator MAXIMA-NAME corresponding to binary function FUN-NAME."
|
|---|
| 267 | `(defmfun ,maxima-name (p q vars
|
|---|
| 268 | &aux
|
|---|
| 269 | (vars (coerce-maxima-list vars))
|
|---|
| 270 | (p (parse-poly p vars))
|
|---|
| 271 | (q (parse-poly q vars)))
|
|---|
| 272 | ,@(when documentation-supplied-p (list documentation))
|
|---|
| [1002] | 273 | (coerce-to-maxima :polynomial (,fun-name *maxima-ring* p q) vars)))
|
|---|
| [111] | 274 |
|
|---|
| 275 |
|
|---|
| [219] | 276 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 277 | ;;
|
|---|
| 278 | ;; Facilities for evaluating Grobner package expressions
|
|---|
| 279 | ;; within a prepared environment
|
|---|
| 280 | ;;
|
|---|
| 281 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 282 |
|
|---|
| 283 | (defmacro with-monomial-order ((order) &body body)
|
|---|
| 284 | "Evaluate BODY with monomial order set to ORDER."
|
|---|
| 285 | `(let ((*monomial-order* (or (find-order ,order) *monomial-order*)))
|
|---|
| 286 | . ,body))
|
|---|
| 287 |
|
|---|
| 288 | (defmacro with-coefficient-ring ((ring) &body body)
|
|---|
| 289 | "Evaluate BODY with coefficient ring set to RING."
|
|---|
| [1002] | 290 | `(let ((*maxima-ring* (or (find-ring ,ring) *maxima-ring*)))
|
|---|
| [219] | 291 | . ,body))
|
|---|
| 292 |
|
|---|
| [863] | 293 | (defmacro with-ring-and-order ((ring order) &body body)
|
|---|
| [830] | 294 | "Evaluate BODY with monomial order set to ORDER and coefficient ring set to RING."
|
|---|
| 295 | `(let ((*monomial-order* (or (find-order ,order) *monomial-order*))
|
|---|
| [1002] | 296 | (*maxima-ring* (or (find-ring ,ring) *maxima-ring*)))
|
|---|
| [830] | 297 | . ,body))
|
|---|
| 298 |
|
|---|
| [219] | 299 | (defmacro with-elimination-orders ((primary secondary elimination-order)
|
|---|
| 300 | &body body)
|
|---|
| 301 | "Evaluate BODY with primary and secondary elimination orders set to PRIMARY and SECONDARY."
|
|---|
| 302 | `(let ((*primary-elimination-order* (or (find-order ,primary) *primary-elimination-order*))
|
|---|
| 303 | (*secondary-elimination-order* (or (find-order ,secondary) *secondary-elimination-order*))
|
|---|
| 304 | (*elimination-order* (or (find-order ,elimination-order) *elimination-order*)))
|
|---|
| 305 | . ,body))
|
|---|
| 306 |
|
|---|
| 307 |
|
|---|
| [98] | 308 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 309 | ;;
|
|---|
| 310 | ;; Maxima-level interface functions
|
|---|
| 311 | ;;
|
|---|
| 312 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 313 |
|
|---|
| 314 | ;; Auxillary function for removing zero polynomial
|
|---|
| 315 | (defun remzero (plist) (remove #'poly-zerop plist))
|
|---|
| 316 |
|
|---|
| 317 | ;;Simple operators
|
|---|
| 318 |
|
|---|
| 319 | (define-binop $poly_add poly-add
|
|---|
| 320 | "Adds two polynomials P and Q")
|
|---|
| 321 |
|
|---|
| 322 | (define-binop $poly_subtract poly-sub
|
|---|
| 323 | "Subtracts a polynomial Q from P.")
|
|---|
| 324 |
|
|---|
| 325 | (define-binop $poly_multiply poly-mul
|
|---|
| 326 | "Returns the product of polynomials P and Q.")
|
|---|
| 327 |
|
|---|
| 328 | (define-binop $poly_s_polynomial spoly
|
|---|
| 329 | "Returns the syzygy polynomial (S-polynomial) of two polynomials P and Q.")
|
|---|
| 330 |
|
|---|
| 331 | (define-unop $poly_primitive_part poly-primitive-part
|
|---|
| 332 | "Returns the polynomial P divided by GCD of its coefficients.")
|
|---|
| 333 |
|
|---|
| 334 | (define-unop $poly_normalize poly-normalize
|
|---|
| 335 | "Returns the polynomial P divided by the leading coefficient.")
|
|---|
| 336 |
|
|---|
| [222] | 337 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 338 | ;;
|
|---|
| 339 | ;; Macro facility for writing Maxima-level wrappers for
|
|---|
| 340 | ;; functions operating on internal representation
|
|---|
| 341 | ;;
|
|---|
| 342 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 343 |
|
|---|
| 344 | (defmacro with-parsed-polynomials (((maxima-vars &optional (maxima-new-vars nil new-vars-supplied-p))
|
|---|
| 345 | &key (polynomials nil)
|
|---|
| [1288] | 346 | (poly-lists nil)
|
|---|
| 347 | (poly-list-lists nil)
|
|---|
| 348 | (value-type nil))
|
|---|
| [222] | 349 | &body body
|
|---|
| 350 | &aux (vars (gensym))
|
|---|
| [1288] | 351 | (new-vars (gensym)))
|
|---|
| [222] | 352 | `(let ((,vars (coerce-maxima-list ,maxima-vars))
|
|---|
| 353 | ,@(when new-vars-supplied-p
|
|---|
| [1288] | 354 | (list `(,new-vars (coerce-maxima-list ,maxima-new-vars)))))
|
|---|
| [222] | 355 | (coerce-to-maxima
|
|---|
| 356 | ,value-type
|
|---|
| 357 | (with-coefficient-ring ($poly_coefficient_ring)
|
|---|
| 358 | (with-monomial-order ($poly_monomial_order)
|
|---|
| 359 | (with-elimination-orders ($poly_primary_elimination_order
|
|---|
| 360 | $poly_secondary_elimination_order
|
|---|
| 361 | $poly_elimination_order)
|
|---|
| 362 | (let ,(let ((args nil))
|
|---|
| [1288] | 363 | (dolist (p polynomials args)
|
|---|
| 364 | (setf args (cons `(,p (parse-poly ,p ,vars)) args)))
|
|---|
| 365 | (dolist (p poly-lists args)
|
|---|
| 366 | (setf args (cons `(,p (parse-poly-list ,p ,vars)) args)))
|
|---|
| 367 | (dolist (p poly-list-lists args)
|
|---|
| 368 | (setf args (cons `(,p (parse-poly-list-list ,p ,vars)) args))))
|
|---|
| [222] | 369 | . ,body))))
|
|---|
| 370 | ,(if new-vars-supplied-p
|
|---|
| 371 | `(append ,vars ,new-vars)
|
|---|
| [1288] | 372 | vars))))
|
|---|
| [222] | 373 |
|
|---|
| 374 |
|
|---|
| [98] | 375 | ;;Functions
|
|---|
| 376 |
|
|---|
| 377 | (defmfun $poly_expand (p vars)
|
|---|
| 378 | "This function is equivalent to EXPAND(P) if P parses correctly to a polynomial.
|
|---|
| 379 | If the representation is not compatible with a polynomial in variables VARS,
|
|---|
| 380 | the result is an error."
|
|---|
| 381 | (with-parsed-polynomials ((vars) :polynomials (p)
|
|---|
| 382 | :value-type :polynomial)
|
|---|
| 383 | p))
|
|---|
| 384 |
|
|---|
| 385 | (defmfun $poly_expt (p n vars)
|
|---|
| 386 | (with-parsed-polynomials ((vars) :polynomials (p) :value-type :polynomial)
|
|---|
| [1002] | 387 | (poly-expt *maxima-ring* p n)))
|
|---|
| [98] | 388 |
|
|---|
| 389 | (defmfun $poly_content (p vars)
|
|---|
| 390 | (with-parsed-polynomials ((vars) :polynomials (p))
|
|---|
| [1002] | 391 | (poly-content *maxima-ring* p)))
|
|---|
| [98] | 392 |
|
|---|
| 393 | (defmfun $poly_pseudo_divide (f fl vars
|
|---|
| 394 | &aux (vars (coerce-maxima-list vars))
|
|---|
| 395 | (f (parse-poly f vars))
|
|---|
| 396 | (fl (parse-poly-list fl vars)))
|
|---|
| 397 | (multiple-value-bind (quot rem c division-count)
|
|---|
| [1002] | 398 | (poly-pseudo-divide *maxima-ring* f fl)
|
|---|
| [98] | 399 | `((mlist)
|
|---|
| 400 | ,(coerce-to-maxima :poly-list quot vars)
|
|---|
| 401 | ,(coerce-to-maxima :polynomial rem vars)
|
|---|
| 402 | ,c
|
|---|
| 403 | ,division-count)))
|
|---|
| 404 |
|
|---|
| 405 | (defmfun $poly_exact_divide (f g vars)
|
|---|
| 406 | (with-parsed-polynomials ((vars) :polynomials (f g) :value-type :polynomial)
|
|---|
| [1002] | 407 | (poly-exact-divide *maxima-ring* f g)))
|
|---|
| [98] | 408 |
|
|---|
| 409 | (defmfun $poly_normal_form (f fl vars)
|
|---|
| 410 | (with-parsed-polynomials ((vars) :polynomials (f)
|
|---|
| 411 | :poly-lists (fl)
|
|---|
| 412 | :value-type :polynomial)
|
|---|
| [1002] | 413 | (normal-form *maxima-ring* f (remzero fl) nil)))
|
|---|
| [98] | 414 |
|
|---|
| 415 | (defmfun $poly_buchberger_criterion (g vars)
|
|---|
| 416 | (with-parsed-polynomials ((vars) :poly-lists (g) :value-type :logical)
|
|---|
| [1002] | 417 | (buchberger-criterion *maxima-ring* g)))
|
|---|
| [98] | 418 |
|
|---|
| 419 | (defmfun $poly_buchberger (fl vars)
|
|---|
| 420 | (with-parsed-polynomials ((vars) :poly-lists (fl) :value-type :poly-list)
|
|---|
| [1002] | 421 | (buchberger *maxima-ring* (remzero fl) 0 nil)))
|
|---|
| [98] | 422 |
|
|---|
| 423 | (defmfun $poly_reduction (plist vars)
|
|---|
| 424 | (with-parsed-polynomials ((vars) :poly-lists (plist)
|
|---|
| 425 | :value-type :poly-list)
|
|---|
| [1002] | 426 | (reduction *maxima-ring* plist)))
|
|---|
| [98] | 427 |
|
|---|
| 428 | (defmfun $poly_minimization (plist vars)
|
|---|
| 429 | (with-parsed-polynomials ((vars) :poly-lists (plist)
|
|---|
| 430 | :value-type :poly-list)
|
|---|
| 431 | (minimization plist)))
|
|---|
| 432 |
|
|---|
| 433 | (defmfun $poly_normalize_list (plist vars)
|
|---|
| 434 | (with-parsed-polynomials ((vars) :poly-lists (plist)
|
|---|
| 435 | :value-type :poly-list)
|
|---|
| [1002] | 436 | (poly-normalize-list *maxima-ring* plist)))
|
|---|
| [98] | 437 |
|
|---|
| 438 | (defmfun $poly_grobner (f vars)
|
|---|
| 439 | (with-parsed-polynomials ((vars) :poly-lists (f)
|
|---|
| 440 | :value-type :poly-list)
|
|---|
| [1002] | 441 | (grobner *maxima-ring* (remzero f))))
|
|---|
| [98] | 442 |
|
|---|
| 443 | (defmfun $poly_reduced_grobner (f vars)
|
|---|
| 444 | (with-parsed-polynomials ((vars) :poly-lists (f)
|
|---|
| 445 | :value-type :poly-list)
|
|---|
| [1002] | 446 | (reduced-grobner *maxima-ring* (remzero f))))
|
|---|
| [98] | 447 |
|
|---|
| 448 | (defmfun $poly_depends_p (p var mvars
|
|---|
| 449 | &aux (vars (coerce-maxima-list mvars))
|
|---|
| 450 | (pos (position var vars)))
|
|---|
| 451 | (if (null pos)
|
|---|
| 452 | (merror "~%Variable ~M not in the list of variables ~M." var mvars)
|
|---|
| 453 | (poly-depends-p (parse-poly p vars) pos)))
|
|---|
| 454 |
|
|---|
| 455 | (defmfun $poly_elimination_ideal (flist k vars)
|
|---|
| 456 | (with-parsed-polynomials ((vars) :poly-lists (flist)
|
|---|
| 457 | :value-type :poly-list)
|
|---|
| [1002] | 458 | (elimination-ideal *maxima-ring* flist k nil 0)))
|
|---|
| [98] | 459 |
|
|---|
| 460 | (defmfun $poly_colon_ideal (f g vars)
|
|---|
| 461 | (with-parsed-polynomials ((vars) :poly-lists (f g) :value-type :poly-list)
|
|---|
| [1002] | 462 | (colon-ideal *maxima-ring* f g nil)))
|
|---|
| [98] | 463 |
|
|---|
| 464 | (defmfun $poly_ideal_intersection (f g vars)
|
|---|
| 465 | (with-parsed-polynomials ((vars) :poly-lists (f g) :value-type :poly-list)
|
|---|
| [1002] | 466 | (ideal-intersection *maxima-ring* f g nil)))
|
|---|
| [98] | 467 |
|
|---|
| 468 | (defmfun $poly_lcm (f g vars)
|
|---|
| 469 | (with-parsed-polynomials ((vars) :polynomials (f g) :value-type :polynomial)
|
|---|
| [1002] | 470 | (poly-lcm *maxima-ring* f g)))
|
|---|
| [98] | 471 |
|
|---|
| 472 | (defmfun $poly_gcd (f g vars)
|
|---|
| 473 | ($first ($divide (m* f g) ($poly_lcm f g vars))))
|
|---|
| 474 |
|
|---|
| 475 | (defmfun $poly_grobner_equal (g1 g2 vars)
|
|---|
| 476 | (with-parsed-polynomials ((vars) :poly-lists (g1 g2))
|
|---|
| [1002] | 477 | (grobner-equal *maxima-ring* g1 g2)))
|
|---|
| [98] | 478 |
|
|---|
| 479 | (defmfun $poly_grobner_subsetp (g1 g2 vars)
|
|---|
| 480 | (with-parsed-polynomials ((vars) :poly-lists (g1 g2))
|
|---|
| [1002] | 481 | (grobner-subsetp *maxima-ring* g1 g2)))
|
|---|
| [98] | 482 |
|
|---|
| 483 | (defmfun $poly_grobner_member (p g vars)
|
|---|
| 484 | (with-parsed-polynomials ((vars) :polynomials (p) :poly-lists (g))
|
|---|
| [1002] | 485 | (grobner-member *maxima-ring* p g)))
|
|---|
| [98] | 486 |
|
|---|
| 487 | (defmfun $poly_ideal_saturation1 (f p vars)
|
|---|
| 488 | (with-parsed-polynomials ((vars) :poly-lists (f) :polynomials (p)
|
|---|
| 489 | :value-type :poly-list)
|
|---|
| [1002] | 490 | (ideal-saturation-1 *maxima-ring* f p 0)))
|
|---|
| [98] | 491 |
|
|---|
| 492 | (defmfun $poly_saturation_extension (f plist vars new-vars)
|
|---|
| 493 | (with-parsed-polynomials ((vars new-vars)
|
|---|
| 494 | :poly-lists (f plist)
|
|---|
| 495 | :value-type :poly-list)
|
|---|
| [1002] | 496 | (saturation-extension *maxima-ring* f plist)))
|
|---|
| [98] | 497 |
|
|---|
| 498 | (defmfun $poly_polysaturation_extension (f plist vars new-vars)
|
|---|
| 499 | (with-parsed-polynomials ((vars new-vars)
|
|---|
| 500 | :poly-lists (f plist)
|
|---|
| 501 | :value-type :poly-list)
|
|---|
| [1002] | 502 | (polysaturation-extension *maxima-ring* f plist)))
|
|---|
| [98] | 503 |
|
|---|
| 504 | (defmfun $poly_ideal_polysaturation1 (f plist vars)
|
|---|
| 505 | (with-parsed-polynomials ((vars) :poly-lists (f plist)
|
|---|
| 506 | :value-type :poly-list)
|
|---|
| [1002] | 507 | (ideal-polysaturation-1 *maxima-ring* f plist 0 nil)))
|
|---|
| [98] | 508 |
|
|---|
| 509 | (defmfun $poly_ideal_saturation (f g vars)
|
|---|
| 510 | (with-parsed-polynomials ((vars) :poly-lists (f g)
|
|---|
| 511 | :value-type :poly-list)
|
|---|
| [1002] | 512 | (ideal-saturation *maxima-ring* f g 0 nil)))
|
|---|
| [98] | 513 |
|
|---|
| 514 | (defmfun $poly_ideal_polysaturation (f ideal-list vars)
|
|---|
| 515 | (with-parsed-polynomials ((vars) :poly-lists (f)
|
|---|
| 516 | :poly-list-lists (ideal-list)
|
|---|
| 517 | :value-type :poly-list)
|
|---|
| [1002] | 518 | (ideal-polysaturation *maxima-ring* f ideal-list 0 nil)))
|
|---|
| [98] | 519 |
|
|---|
| 520 | (defmfun $poly_lt (f vars)
|
|---|
| 521 | (with-parsed-polynomials ((vars) :polynomials (f) :value-type :polynomial)
|
|---|
| 522 | (make-poly-from-termlist (list (poly-lt f)))))
|
|---|
| 523 |
|
|---|
| 524 | (defmfun $poly_lm (f vars)
|
|---|
| 525 | (with-parsed-polynomials ((vars) :polynomials (f) :value-type :polynomial)
|
|---|
| [1002] | 526 | (make-poly-from-termlist (list (make-term (poly-lm f) (funcall (ring-unit *maxima-ring*)))))))
|
|---|
| [98] | 527 |
|
|---|
| [1640] | 528 | |#
|
|---|