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/monomial.lisp@ 883

Last change on this file since 883 was 883, checked in by Marek Rychlik, 10 years ago

* empty log message *

File size: 6.7 KB
RevLine 
[81]1;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*-
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
[418]22;;----------------------------------------------------------------
23;; This package implements BASIC OPERATIONS ON MONOMIALS
24;;----------------------------------------------------------------
25;; DATA STRUCTURES: Conceptually, monomials can be represented as lists:
26;;
27;; monom: (n1 n2 ... nk) where ni are non-negative integers
28;;
29;; However, lists may be implemented as other sequence types,
30;; so the flexibility to change the representation should be
31;; maintained in the code to use general operations on sequences
32;; whenever possible. The optimization for the actual representation
33;; should be left to declarations and the compiler.
34;;----------------------------------------------------------------
35;; EXAMPLES: Suppose that variables are x and y. Then
36;;
[714]37;; Monom x*y^2 ---> (1 2)
[418]38;;
39;;----------------------------------------------------------------
40
[394]41(defpackage "MONOMIAL"
[395]42 (:use :cl)
[422]43 (:export "MONOM"
[423]44 "EXPONENT"
[422]45 "MAKE-MONOM"
[396]46 "MONOM-ELT"
47 "MONOM-DIMENSION"
48 "MONOM-TOTAL-DEGREE"
49 "MONOM-SUGAR"
50 "MONOM-DIV"
51 "MONOM-MUL"
52 "MONOM-DIVIDES-P"
[395]53 "MONOM-DIVIDES-MONOM-LCM-P"
54 "MONOM-LCM-DIVIDES-MONOM-LCM-P"
[497]55 "MONOM-LCM-EQUAL-MONOM-LCM-P"
[395]56 "MONOM-DIVISIBLE-BY-P"
57 "MONOM-REL-PRIME-P"
58 "MONOM-EQUAL-P"
59 "MONOM-LCM"
60 "MONOM-GCD"
[504]61 "MONOM-DEPENDS-P"
[395]62 "MONOM-MAP"
63 "MONOM-APPEND"
64 "MONOM-CONTRACT"
65 "MONOM-EXPONENTS"))
[81]66
[419]67(in-package :monomial)
[48]68
69(deftype exponent ()
70 "Type of exponent in a monomial."
71 'fixnum)
72
[880]73(deftype monom (&optional dim)
74 "Type of monomial."
75 `(simple-array exponent (,dim)))
76
[873]77(defun make-monom (&key
78 (dimension nil dimension-suppied-p)
79 (initial-exponents nil initial-exponents-supplied-p)
80 (initial-exponent nil initial-exponent-supplied-p)
81 &aux
82 (dim (cond (dimension-suppied-p dimension)
83 (initial-exponents-supplied-p (length initial-exponents))
84 (t (error "You must provide DIMENSION nor INITIAL-EXPONENTS"))))
85 (monom (cond
86 ;; when exponents are supplied
87 (initial-exponents-supplied-p
88 (make-array (list dim) :initial-contents initial-exponents
89 :element-type 'exponent))
90 ;; when all exponents are to be identical
91 (initial-exponent-supplied-p
92 (make-array (list dim) :initial-element initial-exponent
93 :element-type 'exponent))
94 ;; otherwise, all exponents are zero
95 (t
96 (make-array (list dim) :element-type 'exponent :initial-element 0)))))
[883]97 "A constructor of monomials. If DIMENSION is given, a sequence of DIMENSION elements of type EXPONENT is constructed,
98where individual elements are the value of INITIAL-EXPONENT, which
99defaults to 0. Alternatively, all elements may be specified as a list
100INITIAL-EXPONENTS."
101 monom)
[717]102
[837]103
[48]104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
105;;
106;; Operations on monomials
107;;
108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
109
[745]110(defun monom-dimension (m)
[872]111 (length m))
[745]112
[48]113(defmacro monom-elt (m index)
114 "Return the power in the monomial M of variable number INDEX."
[879]115 `(elt ,m ,index))
[48]116
[747]117(defun monom-total-degree (m &optional (start 0) (end (monom-dimension m)))
[48]118 "Return the todal degree of a monomoal M. Optinally, a range
119of variables may be specified with arguments START and END."
[871]120 (reduce #'+ m :start start :end end))
[48]121
[747]122(defun monom-sugar (m &aux (start 0) (end (monom-dimension m)))
[48]123 "Return the sugar of a monomial M. Optinally, a range
124of variables may be specified with arguments START and END."
[749]125 (monom-total-degree m start end))
[48]126
[876]127(defun monom-div (m1 m2 &aux (result (copy-seq m1)))
[48]128 "Divide monomial M1 by monomial M2."
[870]129 (map-into result #'- m1 m2))
[48]130
[876]131(defun monom-mul (m1 m2 &aux (result (copy-seq m1)))
[48]132 "Multiply monomial M1 by monomial M2."
[870]133 (map-into result #'+ m1 m2))
[48]134
135(defun monom-divides-p (m1 m2)
136 "Returns T if monomial M1 divides monomial M2, NIL otherwise."
[877]137 (every #'<= m1 m2))
[48]138
139(defun monom-divides-monom-lcm-p (m1 m2 m3)
140 "Returns T if monomial M1 divides MONOM-LCM(M2,M3), NIL otherwise."
[875]141 (every #'(lambda (x y z) (<= x (max y z)))
[869]142 m1 m2 m3))
[48]143
144(defun monom-lcm-divides-monom-lcm-p (m1 m2 m3 m4)
145 "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
[869]146 (every #'(lambda (x y z w) (<= (max x y) (max z w)))
147 m1 m2 m3 m4))
148
[48]149
150(defun monom-lcm-equal-monom-lcm-p (m1 m2 m3 m4)
151 "Returns T if monomial MONOM-LCM(M1,M2) equals MONOM-LCM(M3,M4), NIL otherwise."
[869]152 (every #'(lambda (x y z w) (= (max x y) (max z w)))
153 m1 m2 m3 m4))
[48]154
[869]155
[48]156(defun monom-divisible-by-p (m1 m2)
157 "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
[869]158 (every #'>= m1 m2))
[48]159
160(defun monom-rel-prime-p (m1 m2)
161 "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
[875]162 (every #'(lambda (x y) (zerop (min x y))) m1 m2))
[48]163
164(defun monom-equal-p (m1 m2)
165 "Returns T if two monomials M1 and M2 are equal."
[878]166 (every #'= m1 m2))
[48]167
[874]168(defun monom-lcm (m1 m2 &aux (result (copy-seq m1)))
[48]169 "Returns least common multiple of monomials M1 and M2."
[868]170 (map-into result #'max m1 m2))
[48]171
[874]172(defun monom-gcd (m1 m2 &aux (result (copy-seq m1)))
[48]173 "Returns greatest common divisor of monomials M1 and M2."
[868]174 (map-into result #'min m1 m2))
[48]175
176(defun monom-depends-p (m k)
177 "Return T if the monomial M depends on variable number K."
[738]178 (plusp (monom-elt m k)))
[48]179
[874]180(defmacro monom-map (fun m &rest ml &aux (result `(copy-seq ,m)))
[868]181 `(map-into ,result ,fun ,m ,@ml))
[48]182
183(defmacro monom-append (m1 m2)
[868]184 `(concatenate 'vector ,m1 ,m2))
[48]185
186(defmacro monom-contract (k m)
[868]187 `(setf ,m (subseq ,m ,k)))
Note: See TracBrowser for help on using the repository browser.