Mercurial > emacs
annotate lisp/calc/calc-alg.el @ 41165:387f7c5a7814
(x_update_cursor): Remove duplicated prototype.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Fri, 16 Nov 2001 22:52:53 +0000 |
parents | 3e8874c2e70c |
children | fcd507927105 |
rev | line source |
---|---|
40785 | 1 ;; Calculator for GNU Emacs, part II [calc-alg.el] |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
2 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc. |
40785 | 3 ;; Written by Dave Gillespie, daveg@synaptics.com. |
4 | |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is distributed in the hope that it will be useful, | |
8 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
9 ;; accepts responsibility to anyone for the consequences of using it | |
10 ;; or for whether it serves any particular purpose or works at all, | |
11 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
12 ;; License for full details. | |
13 | |
14 ;; Everyone is granted permission to copy, modify and redistribute | |
15 ;; GNU Emacs, but only under the conditions described in the | |
16 ;; GNU Emacs General Public License. A copy of this license is | |
17 ;; supposed to have been given to you along with GNU Emacs so you | |
18 ;; can know your rights and responsibilities. It should be in a | |
19 ;; file named COPYING. Among other things, the copyright notice | |
20 ;; and this notice must be preserved on all copies. | |
21 | |
22 | |
23 | |
24 ;; This file is autoloaded from calc-ext.el. | |
25 (require 'calc-ext) | |
26 | |
27 (require 'calc-macs) | |
28 | |
29 (defun calc-Need-calc-alg () nil) | |
30 | |
31 | |
32 ;;; Algebra commands. | |
33 | |
34 (defun calc-alg-evaluate (arg) | |
35 (interactive "p") | |
36 (calc-slow-wrapper | |
37 (calc-with-default-simplification | |
38 (let ((math-simplify-only nil)) | |
39 (calc-modify-simplify-mode arg) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
40 (calc-enter-result 1 "dsmp" (calc-top 1)))))) |
40785 | 41 |
42 (defun calc-modify-simplify-mode (arg) | |
43 (if (= (math-abs arg) 2) | |
44 (setq calc-simplify-mode 'alg) | |
45 (if (>= (math-abs arg) 3) | |
46 (setq calc-simplify-mode 'ext))) | |
47 (if (< arg 0) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
48 (setq calc-simplify-mode (list calc-simplify-mode)))) |
40785 | 49 |
50 (defun calc-simplify () | |
51 (interactive) | |
52 (calc-slow-wrapper | |
53 (calc-with-default-simplification | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
54 (calc-enter-result 1 "simp" (math-simplify (calc-top-n 1)))))) |
40785 | 55 |
56 (defun calc-simplify-extended () | |
57 (interactive) | |
58 (calc-slow-wrapper | |
59 (calc-with-default-simplification | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
60 (calc-enter-result 1 "esmp" (math-simplify-extended (calc-top-n 1)))))) |
40785 | 61 |
62 (defun calc-expand-formula (arg) | |
63 (interactive "p") | |
64 (calc-slow-wrapper | |
65 (calc-with-default-simplification | |
66 (let ((math-simplify-only nil)) | |
67 (calc-modify-simplify-mode arg) | |
68 (calc-enter-result 1 "expf" | |
69 (if (> arg 0) | |
70 (let ((math-expand-formulas t)) | |
71 (calc-top-n 1)) | |
72 (let ((top (calc-top-n 1))) | |
73 (or (math-expand-formula top) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
74 top)))))))) |
40785 | 75 |
76 (defun calc-factor (arg) | |
77 (interactive "P") | |
78 (calc-slow-wrapper | |
79 (calc-unary-op "fctr" (if (calc-is-hyperbolic) | |
80 'calcFunc-factors 'calcFunc-factor) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
81 arg))) |
40785 | 82 |
83 (defun calc-expand (n) | |
84 (interactive "P") | |
85 (calc-slow-wrapper | |
86 (calc-enter-result 1 "expa" | |
87 (append (list 'calcFunc-expand | |
88 (calc-top-n 1)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
89 (and n (list (prefix-numeric-value n))))))) |
40785 | 90 |
91 (defun calc-collect (&optional var) | |
92 (interactive "sCollect terms involving: ") | |
93 (calc-slow-wrapper | |
94 (if (or (equal var "") (equal var "$") (null var)) | |
95 (calc-enter-result 2 "clct" (cons 'calcFunc-collect | |
96 (calc-top-list-n 2))) | |
97 (let ((var (math-read-expr var))) | |
98 (if (eq (car-safe var) 'error) | |
99 (error "Bad format in expression: %s" (nth 1 var))) | |
100 (calc-enter-result 1 "clct" (list 'calcFunc-collect | |
101 (calc-top-n 1) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
102 var)))))) |
40785 | 103 |
104 (defun calc-apart (arg) | |
105 (interactive "P") | |
106 (calc-slow-wrapper | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
107 (calc-unary-op "aprt" 'calcFunc-apart arg))) |
40785 | 108 |
109 (defun calc-normalize-rat (arg) | |
110 (interactive "P") | |
111 (calc-slow-wrapper | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
112 (calc-unary-op "nrat" 'calcFunc-nrat arg))) |
40785 | 113 |
114 (defun calc-poly-gcd (arg) | |
115 (interactive "P") | |
116 (calc-slow-wrapper | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
117 (calc-binary-op "pgcd" 'calcFunc-pgcd arg))) |
40785 | 118 |
119 (defun calc-poly-div (arg) | |
120 (interactive "P") | |
121 (calc-slow-wrapper | |
122 (setq calc-poly-div-remainder nil) | |
123 (calc-binary-op "pdiv" 'calcFunc-pdiv arg) | |
124 (if (and calc-poly-div-remainder (null arg)) | |
125 (progn | |
126 (calc-clear-command-flag 'clear-message) | |
127 (calc-record calc-poly-div-remainder "prem") | |
128 (if (not (Math-zerop calc-poly-div-remainder)) | |
129 (message "(Remainder was %s)" | |
130 (math-format-flat-expr calc-poly-div-remainder 0)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
131 (message "(No remainder)")))))) |
40785 | 132 |
133 (defun calc-poly-rem (arg) | |
134 (interactive "P") | |
135 (calc-slow-wrapper | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
136 (calc-binary-op "prem" 'calcFunc-prem arg))) |
40785 | 137 |
138 (defun calc-poly-div-rem (arg) | |
139 (interactive "P") | |
140 (calc-slow-wrapper | |
141 (if (calc-is-hyperbolic) | |
142 (calc-binary-op "pdvr" 'calcFunc-pdivide arg) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
143 (calc-binary-op "pdvr" 'calcFunc-pdivrem arg)))) |
40785 | 144 |
145 (defun calc-substitute (&optional oldname newname) | |
146 (interactive "sSubstitute old: ") | |
147 (calc-slow-wrapper | |
148 (let (old new (num 1) expr) | |
149 (if (or (equal oldname "") (equal oldname "$") (null oldname)) | |
150 (setq new (calc-top-n 1) | |
151 old (calc-top-n 2) | |
152 expr (calc-top-n 3) | |
153 num 3) | |
154 (or newname | |
155 (progn (calc-unread-command ?\C-a) | |
156 (setq newname (read-string (concat "Substitute old: " | |
157 oldname | |
158 ", new: ") | |
159 oldname)))) | |
160 (if (or (equal newname "") (equal newname "$") (null newname)) | |
161 (setq new (calc-top-n 1) | |
162 expr (calc-top-n 2) | |
163 num 2) | |
164 (setq new (if (stringp newname) (math-read-expr newname) newname)) | |
165 (if (eq (car-safe new) 'error) | |
166 (error "Bad format in expression: %s" (nth 1 new))) | |
167 (setq expr (calc-top-n 1))) | |
168 (setq old (if (stringp oldname) (math-read-expr oldname) oldname)) | |
169 (if (eq (car-safe old) 'error) | |
170 (error "Bad format in expression: %s" (nth 1 old))) | |
171 (or (math-expr-contains expr old) | |
172 (error "No occurrences found."))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
173 (calc-enter-result num "sbst" (math-expr-subst expr old new))))) |
40785 | 174 |
175 | |
176 (defun calc-has-rules (name) | |
177 (setq name (calc-var-value name)) | |
178 (and (consp name) | |
179 (memq (car name) '(vec calcFunc-assign calcFunc-condition)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
180 name)) |
40785 | 181 |
182 (defun math-recompile-eval-rules () | |
183 (setq math-eval-rules-cache (and (calc-has-rules 'var-EvalRules) | |
184 (math-compile-rewrites | |
185 '(var EvalRules var-EvalRules))) | |
186 math-eval-rules-cache-other (assq nil math-eval-rules-cache) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
187 math-eval-rules-cache-tag (calc-var-value 'var-EvalRules))) |
40785 | 188 |
189 | |
190 ;;; Try to expand a formula according to its definition. | |
191 (defun math-expand-formula (expr) | |
192 (and (consp expr) | |
193 (symbolp (car expr)) | |
194 (or (get (car expr) 'calc-user-defn) | |
195 (get (car expr) 'math-expandable)) | |
196 (let ((res (let ((math-expand-formulas t)) | |
197 (apply (car expr) (cdr expr))))) | |
198 (and (not (eq (car-safe res) (car expr))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
199 res)))) |
40785 | 200 |
201 | |
202 | |
203 | |
204 ;;; True if A comes before B in a canonical ordering of expressions. [P X X] | |
205 (defun math-beforep (a b) ; [Public] | |
206 (cond ((and (Math-realp a) (Math-realp b)) | |
207 (let ((comp (math-compare a b))) | |
208 (or (eq comp -1) | |
209 (and (eq comp 0) | |
210 (not (equal a b)) | |
211 (> (length (memq (car-safe a) | |
212 '(bigneg nil bigpos frac float))) | |
213 (length (memq (car-safe b) | |
214 '(bigneg nil bigpos frac float)))))))) | |
215 ((equal b '(neg (var inf var-inf))) nil) | |
216 ((equal a '(neg (var inf var-inf))) t) | |
217 ((equal a '(var inf var-inf)) nil) | |
218 ((equal b '(var inf var-inf)) t) | |
219 ((Math-realp a) | |
220 (if (and (eq (car-safe b) 'intv) (math-intv-constp b)) | |
221 (if (or (math-beforep a (nth 2 b)) (Math-equal a (nth 2 b))) | |
222 t | |
223 nil) | |
224 t)) | |
225 ((Math-realp b) | |
226 (if (and (eq (car-safe a) 'intv) (math-intv-constp a)) | |
227 (if (math-beforep (nth 2 a) b) | |
228 t | |
229 nil) | |
230 nil)) | |
231 ((and (eq (car a) 'intv) (eq (car b) 'intv) | |
232 (math-intv-constp a) (math-intv-constp b)) | |
233 (let ((comp (math-compare (nth 2 a) (nth 2 b)))) | |
234 (cond ((eq comp -1) t) | |
235 ((eq comp 1) nil) | |
236 ((and (memq (nth 1 a) '(2 3)) (memq (nth 1 b) '(0 1))) t) | |
237 ((and (memq (nth 1 a) '(0 1)) (memq (nth 1 b) '(2 3))) nil) | |
238 ((eq (setq comp (math-compare (nth 3 a) (nth 3 b))) -1) t) | |
239 ((eq comp 1) nil) | |
240 ((and (memq (nth 1 a) '(0 2)) (memq (nth 1 b) '(1 3))) t) | |
241 (t nil)))) | |
242 ((not (eq (not (Math-objectp a)) (not (Math-objectp b)))) | |
243 (Math-objectp a)) | |
244 ((eq (car a) 'var) | |
245 (if (eq (car b) 'var) | |
246 (string-lessp (symbol-name (nth 1 a)) (symbol-name (nth 1 b))) | |
247 (not (Math-numberp b)))) | |
248 ((eq (car b) 'var) (Math-numberp a)) | |
249 ((eq (car a) (car b)) | |
250 (while (and (setq a (cdr a) b (cdr b)) a | |
251 (equal (car a) (car b)))) | |
252 (and b | |
253 (or (null a) | |
254 (math-beforep (car a) (car b))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
255 (t (string-lessp (symbol-name (car a)) (symbol-name (car b)))))) |
40785 | 256 |
257 | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
258 (defsubst math-simplify-extended (a) |
40785 | 259 (let ((math-living-dangerously t)) |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
260 (math-simplify a))) |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
261 |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
262 (defalias 'calcFunc-esimplify 'math-simplify-extended) |
40785 | 263 |
264 (defun math-simplify (top-expr) | |
265 (let ((math-simplifying t) | |
266 (top-only (consp calc-simplify-mode)) | |
267 (simp-rules (append (and (calc-has-rules 'var-AlgSimpRules) | |
268 '((var AlgSimpRules var-AlgSimpRules))) | |
269 (and math-living-dangerously | |
270 (calc-has-rules 'var-ExtSimpRules) | |
271 '((var ExtSimpRules var-ExtSimpRules))) | |
272 (and math-simplifying-units | |
273 (calc-has-rules 'var-UnitSimpRules) | |
274 '((var UnitSimpRules var-UnitSimpRules))) | |
275 (and math-integrating | |
276 (calc-has-rules 'var-IntegSimpRules) | |
277 '((var IntegSimpRules var-IntegSimpRules))))) | |
278 res) | |
279 (if top-only | |
280 (let ((r simp-rules)) | |
281 (setq res (math-simplify-step (math-normalize top-expr)) | |
282 calc-simplify-mode '(nil) | |
283 top-expr (math-normalize res)) | |
284 (while r | |
285 (setq top-expr (math-rewrite top-expr (car r) | |
286 '(neg (var inf var-inf))) | |
287 r (cdr r)))) | |
288 (calc-with-default-simplification | |
289 (while (let ((r simp-rules)) | |
290 (setq res (math-normalize top-expr)) | |
291 (while r | |
292 (setq res (math-rewrite res (car r)) | |
293 r (cdr r))) | |
294 (not (equal top-expr (setq res (math-simplify-step res))))) | |
295 (setq top-expr res))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
296 top-expr) |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
297 |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
298 (defalias 'calcFunc-simplify 'math-simplify) |
40785 | 299 |
300 ;;; The following has a "bug" in that if any recursive simplifications | |
301 ;;; occur only the first handler will be tried; this doesn't really | |
302 ;;; matter, since math-simplify-step is iterated to a fixed point anyway. | |
303 (defun math-simplify-step (a) | |
304 (if (Math-primp a) | |
305 a | |
306 (let ((aa (if (or top-only | |
307 (memq (car a) '(calcFunc-quote calcFunc-condition | |
308 calcFunc-evalto))) | |
309 a | |
310 (cons (car a) (mapcar 'math-simplify-step (cdr a)))))) | |
311 (and (symbolp (car aa)) | |
312 (let ((handler (get (car aa) 'math-simplify))) | |
313 (and handler | |
314 (while (and handler | |
315 (equal (setq aa (or (funcall (car handler) aa) | |
316 aa)) | |
317 a)) | |
318 (setq handler (cdr handler)))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
319 aa))) |
40785 | 320 |
321 | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
322 ;; Placeholder, to synchronize autoloading. |
40785 | 323 (defun math-need-std-simps () |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
324 nil) |
40785 | 325 |
326 (math-defsimplify (+ -) | |
327 (math-simplify-plus)) | |
328 | |
329 (defun math-simplify-plus () | |
330 (cond ((and (memq (car-safe (nth 1 expr)) '(+ -)) | |
331 (Math-numberp (nth 2 (nth 1 expr))) | |
332 (not (Math-numberp (nth 2 expr)))) | |
333 (let ((x (nth 2 expr)) | |
334 (op (car expr))) | |
335 (setcar (cdr (cdr expr)) (nth 2 (nth 1 expr))) | |
336 (setcar expr (car (nth 1 expr))) | |
337 (setcar (cdr (cdr (nth 1 expr))) x) | |
338 (setcar (nth 1 expr) op))) | |
339 ((and (eq (car expr) '+) | |
340 (Math-numberp (nth 1 expr)) | |
341 (not (Math-numberp (nth 2 expr)))) | |
342 (let ((x (nth 2 expr))) | |
343 (setcar (cdr (cdr expr)) (nth 1 expr)) | |
344 (setcar (cdr expr) x)))) | |
345 (let ((aa expr) | |
346 aaa temp) | |
347 (while (memq (car-safe (setq aaa (nth 1 aa))) '(+ -)) | |
348 (if (setq temp (math-combine-sum (nth 2 aaa) (nth 2 expr) | |
349 (eq (car aaa) '-) (eq (car expr) '-) t)) | |
350 (progn | |
351 (setcar (cdr (cdr expr)) temp) | |
352 (setcar expr '+) | |
353 (setcar (cdr (cdr aaa)) 0))) | |
354 (setq aa (nth 1 aa))) | |
355 (if (setq temp (math-combine-sum aaa (nth 2 expr) | |
356 nil (eq (car expr) '-) t)) | |
357 (progn | |
358 (setcar (cdr (cdr expr)) temp) | |
359 (setcar expr '+) | |
360 (setcar (cdr aa) 0))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
361 expr)) |
40785 | 362 |
363 (math-defsimplify * | |
364 (math-simplify-times)) | |
365 | |
366 (defun math-simplify-times () | |
367 (if (eq (car-safe (nth 2 expr)) '*) | |
368 (and (math-beforep (nth 1 (nth 2 expr)) (nth 1 expr)) | |
369 (or (math-known-scalarp (nth 1 expr) t) | |
370 (math-known-scalarp (nth 1 (nth 2 expr)) t)) | |
371 (let ((x (nth 1 expr))) | |
372 (setcar (cdr expr) (nth 1 (nth 2 expr))) | |
373 (setcar (cdr (nth 2 expr)) x))) | |
374 (and (math-beforep (nth 2 expr) (nth 1 expr)) | |
375 (or (math-known-scalarp (nth 1 expr) t) | |
376 (math-known-scalarp (nth 2 expr) t)) | |
377 (let ((x (nth 2 expr))) | |
378 (setcar (cdr (cdr expr)) (nth 1 expr)) | |
379 (setcar (cdr expr) x)))) | |
380 (let ((aa expr) | |
381 aaa temp | |
382 (safe t) (scalar (math-known-scalarp (nth 1 expr)))) | |
383 (if (and (Math-ratp (nth 1 expr)) | |
384 (setq temp (math-common-constant-factor (nth 2 expr)))) | |
385 (progn | |
386 (setcar (cdr (cdr expr)) | |
387 (math-cancel-common-factor (nth 2 expr) temp)) | |
388 (setcar (cdr expr) (math-mul (nth 1 expr) temp)))) | |
389 (while (and (eq (car-safe (setq aaa (nth 2 aa))) '*) | |
390 safe) | |
391 (if (setq temp (math-combine-prod (nth 1 expr) (nth 1 aaa) nil nil t)) | |
392 (progn | |
393 (setcar (cdr expr) temp) | |
394 (setcar (cdr aaa) 1))) | |
395 (setq safe (or scalar (math-known-scalarp (nth 1 aaa) t)) | |
396 aa (nth 2 aa))) | |
397 (if (and (setq temp (math-combine-prod aaa (nth 1 expr) nil nil t)) | |
398 safe) | |
399 (progn | |
400 (setcar (cdr expr) temp) | |
401 (setcar (cdr (cdr aa)) 1))) | |
402 (if (and (eq (car-safe (nth 1 expr)) 'frac) | |
403 (memq (nth 1 (nth 1 expr)) '(1 -1))) | |
404 (math-div (math-mul (nth 2 expr) (nth 1 (nth 1 expr))) | |
405 (nth 2 (nth 1 expr))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
406 expr))) |
40785 | 407 |
408 (math-defsimplify / | |
409 (math-simplify-divide)) | |
410 | |
411 (defun math-simplify-divide () | |
412 (let ((np (cdr expr)) | |
413 (nover nil) | |
414 (nn (and (or (eq (car expr) '/) (not (Math-realp (nth 2 expr)))) | |
415 (math-common-constant-factor (nth 2 expr)))) | |
416 n op) | |
417 (if nn | |
418 (progn | |
419 (setq n (and (or (eq (car expr) '/) (not (Math-realp (nth 1 expr)))) | |
420 (math-common-constant-factor (nth 1 expr)))) | |
421 (if (and (eq (car-safe nn) 'frac) (eq (nth 1 nn) 1) (not n)) | |
422 (progn | |
423 (setcar (cdr expr) (math-mul (nth 2 nn) (nth 1 expr))) | |
424 (setcar (cdr (cdr expr)) | |
425 (math-cancel-common-factor (nth 2 expr) nn)) | |
426 (if (and (math-negp nn) | |
427 (setq op (assq (car expr) calc-tweak-eqn-table))) | |
428 (setcar expr (nth 1 op)))) | |
429 (if (and n (not (eq (setq n (math-frac-gcd n nn)) 1))) | |
430 (progn | |
431 (setcar (cdr expr) | |
432 (math-cancel-common-factor (nth 1 expr) n)) | |
433 (setcar (cdr (cdr expr)) | |
434 (math-cancel-common-factor (nth 2 expr) n)) | |
435 (if (and (math-negp n) | |
436 (setq op (assq (car expr) calc-tweak-eqn-table))) | |
437 (setcar expr (nth 1 op)))))))) | |
438 (if (and (eq (car-safe (car np)) '/) | |
439 (math-known-scalarp (nth 2 expr) t)) | |
440 (progn | |
441 (setq np (cdr (nth 1 expr))) | |
442 (while (eq (car-safe (setq n (car np))) '*) | |
443 (and (math-known-scalarp (nth 2 n) t) | |
444 (math-simplify-divisor (cdr n) (cdr (cdr expr)) nil t)) | |
445 (setq np (cdr (cdr n)))) | |
446 (math-simplify-divisor np (cdr (cdr expr)) nil t) | |
447 (setq nover t | |
448 np (cdr (cdr (nth 1 expr)))))) | |
449 (while (eq (car-safe (setq n (car np))) '*) | |
450 (and (math-known-scalarp (nth 2 n) t) | |
451 (math-simplify-divisor (cdr n) (cdr (cdr expr)) nover t)) | |
452 (setq np (cdr (cdr n)))) | |
453 (math-simplify-divisor np (cdr (cdr expr)) nover t) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
454 expr)) |
40785 | 455 |
456 (defun math-simplify-divisor (np dp nover dover) | |
457 (cond ((eq (car-safe (car dp)) '/) | |
458 (math-simplify-divisor np (cdr (car dp)) nover dover) | |
459 (and (math-known-scalarp (nth 1 (car dp)) t) | |
460 (math-simplify-divisor np (cdr (cdr (car dp))) | |
461 nover (not dover)))) | |
462 ((or (or (eq (car expr) '/) | |
463 (let ((signs (math-possible-signs (car np)))) | |
464 (or (memq signs '(1 4)) | |
465 (and (memq (car expr) '(calcFunc-eq calcFunc-neq)) | |
466 (eq signs 5)) | |
467 math-living-dangerously))) | |
468 (math-numberp (car np))) | |
469 (let ((n (car np)) | |
470 d dd temp op | |
471 (safe t) (scalar (math-known-scalarp n))) | |
472 (while (and (eq (car-safe (setq d (car dp))) '*) | |
473 safe) | |
474 (math-simplify-one-divisor np (cdr d)) | |
475 (setq safe (or scalar (math-known-scalarp (nth 1 d) t)) | |
476 dp (cdr (cdr d)))) | |
477 (if safe | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
478 (math-simplify-one-divisor np dp)))))) |
40785 | 479 |
480 (defun math-simplify-one-divisor (np dp) | |
481 (if (setq temp (math-combine-prod (car np) (car dp) nover dover t)) | |
482 (progn | |
483 (and (not (memq (car expr) '(/ calcFunc-eq calcFunc-neq))) | |
484 (math-known-negp (car dp)) | |
485 (setq op (assq (car expr) calc-tweak-eqn-table)) | |
486 (setcar expr (nth 1 op))) | |
487 (setcar np (if nover (math-div 1 temp) temp)) | |
488 (setcar dp 1)) | |
489 (and dover (not nover) (eq (car expr) '/) | |
490 (eq (car-safe (car dp)) 'calcFunc-sqrt) | |
491 (Math-integerp (nth 1 (car dp))) | |
492 (progn | |
493 (setcar np (math-mul (car np) | |
494 (list 'calcFunc-sqrt (nth 1 (car dp))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
495 (setcar dp (nth 1 (car dp))))))) |
40785 | 496 |
497 (defun math-common-constant-factor (expr) | |
498 (if (Math-realp expr) | |
499 (if (Math-ratp expr) | |
500 (and (not (memq expr '(0 1 -1))) | |
501 (math-abs expr)) | |
502 (if (math-ratp (setq expr (math-to-simple-fraction expr))) | |
503 (math-common-constant-factor expr))) | |
504 (if (memq (car expr) '(+ - cplx sdev)) | |
505 (let ((f1 (math-common-constant-factor (nth 1 expr))) | |
506 (f2 (math-common-constant-factor (nth 2 expr)))) | |
507 (and f1 f2 | |
508 (not (eq (setq f1 (math-frac-gcd f1 f2)) 1)) | |
509 f1)) | |
510 (if (memq (car expr) '(* polar)) | |
511 (math-common-constant-factor (nth 1 expr)) | |
512 (if (eq (car expr) '/) | |
513 (or (math-common-constant-factor (nth 1 expr)) | |
514 (and (Math-integerp (nth 2 expr)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
515 (list 'frac 1 (math-abs (nth 2 expr)))))))))) |
40785 | 516 |
517 (defun math-cancel-common-factor (expr val) | |
518 (if (memq (car-safe expr) '(+ - cplx sdev)) | |
519 (progn | |
520 (setcar (cdr expr) (math-cancel-common-factor (nth 1 expr) val)) | |
521 (setcar (cdr (cdr expr)) (math-cancel-common-factor (nth 2 expr) val)) | |
522 expr) | |
523 (if (eq (car-safe expr) '*) | |
524 (math-mul (math-cancel-common-factor (nth 1 expr) val) (nth 2 expr)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
525 (math-div expr val)))) |
40785 | 526 |
527 (defun math-frac-gcd (a b) | |
528 (if (Math-zerop a) | |
529 b | |
530 (if (Math-zerop b) | |
531 a | |
532 (if (and (Math-integerp a) | |
533 (Math-integerp b)) | |
534 (math-gcd a b) | |
535 (and (Math-integerp a) (setq a (list 'frac a 1))) | |
536 (and (Math-integerp b) (setq b (list 'frac b 1))) | |
537 (math-make-frac (math-gcd (nth 1 a) (nth 1 b)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
538 (math-gcd (nth 2 a) (nth 2 b))))))) |
40785 | 539 |
540 (math-defsimplify % | |
541 (math-simplify-mod)) | |
542 | |
543 (defun math-simplify-mod () | |
544 (and (Math-realp (nth 2 expr)) | |
545 (Math-posp (nth 2 expr)) | |
546 (let ((lin (math-is-linear (nth 1 expr))) | |
547 t1 t2 t3) | |
548 (or (and lin | |
549 (or (math-negp (car lin)) | |
550 (not (Math-lessp (car lin) (nth 2 expr)))) | |
551 (list '% | |
552 (list '+ | |
553 (math-mul (nth 1 lin) (nth 2 lin)) | |
554 (math-mod (car lin) (nth 2 expr))) | |
555 (nth 2 expr))) | |
556 (and lin | |
557 (not (math-equal-int (nth 1 lin) 1)) | |
558 (math-num-integerp (nth 1 lin)) | |
559 (math-num-integerp (nth 2 expr)) | |
560 (setq t1 (calcFunc-gcd (nth 1 lin) (nth 2 expr))) | |
561 (not (math-equal-int t1 1)) | |
562 (list '* | |
563 t1 | |
564 (list '% | |
565 (list '+ | |
566 (math-mul (math-div (nth 1 lin) t1) | |
567 (nth 2 lin)) | |
568 (let ((calc-prefer-frac t)) | |
569 (math-div (car lin) t1))) | |
570 (math-div (nth 2 expr) t1)))) | |
571 (and (math-equal-int (nth 2 expr) 1) | |
572 (math-known-integerp (if lin | |
573 (math-mul (nth 1 lin) (nth 2 lin)) | |
574 (nth 1 expr))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
575 (if lin (math-mod (car lin) 1) 0)))))) |
40785 | 576 |
577 (math-defsimplify (calcFunc-eq calcFunc-neq calcFunc-lt | |
578 calcFunc-gt calcFunc-leq calcFunc-geq) | |
579 (if (= (length expr) 3) | |
580 (math-simplify-ineq))) | |
581 | |
582 (defun math-simplify-ineq () | |
583 (let ((np (cdr expr)) | |
584 n) | |
585 (while (memq (car-safe (setq n (car np))) '(+ -)) | |
586 (math-simplify-add-term (cdr (cdr n)) (cdr (cdr expr)) | |
587 (eq (car n) '-) nil) | |
588 (setq np (cdr n))) | |
589 (math-simplify-add-term np (cdr (cdr expr)) nil (eq np (cdr expr))) | |
590 (math-simplify-divide) | |
591 (let ((signs (math-possible-signs (cons '- (cdr expr))))) | |
592 (or (cond ((eq (car expr) 'calcFunc-eq) | |
593 (or (and (eq signs 2) 1) | |
594 (and (memq signs '(1 4 5)) 0))) | |
595 ((eq (car expr) 'calcFunc-neq) | |
596 (or (and (eq signs 2) 0) | |
597 (and (memq signs '(1 4 5)) 1))) | |
598 ((eq (car expr) 'calcFunc-lt) | |
599 (or (and (eq signs 1) 1) | |
600 (and (memq signs '(2 4 6)) 0))) | |
601 ((eq (car expr) 'calcFunc-gt) | |
602 (or (and (eq signs 4) 1) | |
603 (and (memq signs '(1 2 3)) 0))) | |
604 ((eq (car expr) 'calcFunc-leq) | |
605 (or (and (eq signs 4) 0) | |
606 (and (memq signs '(1 2 3)) 1))) | |
607 ((eq (car expr) 'calcFunc-geq) | |
608 (or (and (eq signs 1) 0) | |
609 (and (memq signs '(2 4 6)) 1)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
610 expr)))) |
40785 | 611 |
612 (defun math-simplify-add-term (np dp minus lplain) | |
613 (or (math-vectorp (car np)) | |
614 (let ((rplain t) | |
615 n d dd temp) | |
616 (while (memq (car-safe (setq n (car np) d (car dp))) '(+ -)) | |
617 (setq rplain nil) | |
618 (if (setq temp (math-combine-sum n (nth 2 d) | |
619 minus (eq (car d) '+) t)) | |
620 (if (or lplain (eq (math-looks-negp temp) minus)) | |
621 (progn | |
622 (setcar np (setq n (if minus (math-neg temp) temp))) | |
623 (setcar (cdr (cdr d)) 0)) | |
624 (progn | |
625 (setcar np 0) | |
626 (setcar (cdr (cdr d)) (setq n (if (eq (car d) '+) | |
627 (math-neg temp) | |
628 temp)))))) | |
629 (setq dp (cdr d))) | |
630 (if (setq temp (math-combine-sum n d minus t t)) | |
631 (if (or lplain | |
632 (and (not rplain) | |
633 (eq (math-looks-negp temp) minus))) | |
634 (progn | |
635 (setcar np (setq n (if minus (math-neg temp) temp))) | |
636 (setcar dp 0)) | |
637 (progn | |
638 (setcar np 0) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
639 (setcar dp (setq n (math-neg temp))))))))) |
40785 | 640 |
641 (math-defsimplify calcFunc-sin | |
642 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsin) | |
643 (nth 1 (nth 1 expr))) | |
644 (and (math-looks-negp (nth 1 expr)) | |
645 (math-neg (list 'calcFunc-sin (math-neg (nth 1 expr))))) | |
646 (and (eq calc-angle-mode 'rad) | |
647 (let ((n (math-linear-in (nth 1 expr) '(var pi var-pi)))) | |
648 (and n | |
649 (math-known-sin (car n) (nth 1 n) 120 0)))) | |
650 (and (eq calc-angle-mode 'deg) | |
651 (let ((n (math-integer-plus (nth 1 expr)))) | |
652 (and n | |
653 (math-known-sin (car n) (nth 1 n) '(frac 2 3) 0)))) | |
654 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccos) | |
655 (list 'calcFunc-sqrt (math-sub 1 (math-sqr (nth 1 (nth 1 expr)))))) | |
656 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctan) | |
657 (math-div (nth 1 (nth 1 expr)) | |
658 (list 'calcFunc-sqrt | |
659 (math-add 1 (math-sqr (nth 1 (nth 1 expr))))))) | |
660 (let ((m (math-should-expand-trig (nth 1 expr)))) | |
661 (and m (integerp (car m)) | |
662 (let ((n (car m)) (a (nth 1 m))) | |
663 (list '+ | |
664 (list '* (list 'calcFunc-sin (list '* (1- n) a)) | |
665 (list 'calcFunc-cos a)) | |
666 (list '* (list 'calcFunc-cos (list '* (1- n) a)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
667 (list 'calcFunc-sin a)))))))) |
40785 | 668 |
669 (math-defsimplify calcFunc-cos | |
670 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccos) | |
671 (nth 1 (nth 1 expr))) | |
672 (and (math-looks-negp (nth 1 expr)) | |
673 (list 'calcFunc-cos (math-neg (nth 1 expr)))) | |
674 (and (eq calc-angle-mode 'rad) | |
675 (let ((n (math-linear-in (nth 1 expr) '(var pi var-pi)))) | |
676 (and n | |
677 (math-known-sin (car n) (nth 1 n) 120 300)))) | |
678 (and (eq calc-angle-mode 'deg) | |
679 (let ((n (math-integer-plus (nth 1 expr)))) | |
680 (and n | |
681 (math-known-sin (car n) (nth 1 n) '(frac 2 3) 300)))) | |
682 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsin) | |
683 (list 'calcFunc-sqrt (math-sub 1 (math-sqr (nth 1 (nth 1 expr)))))) | |
684 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctan) | |
685 (math-div 1 | |
686 (list 'calcFunc-sqrt | |
687 (math-add 1 (math-sqr (nth 1 (nth 1 expr))))))) | |
688 (let ((m (math-should-expand-trig (nth 1 expr)))) | |
689 (and m (integerp (car m)) | |
690 (let ((n (car m)) (a (nth 1 m))) | |
691 (list '- | |
692 (list '* (list 'calcFunc-cos (list '* (1- n) a)) | |
693 (list 'calcFunc-cos a)) | |
694 (list '* (list 'calcFunc-sin (list '* (1- n) a)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
695 (list 'calcFunc-sin a)))))))) |
40785 | 696 |
697 (defun math-should-expand-trig (x &optional hyperbolic) | |
698 (let ((m (math-is-multiple x))) | |
699 (and math-living-dangerously | |
700 m (or (and (integerp (car m)) (> (car m) 1)) | |
701 (equal (car m) '(frac 1 2))) | |
702 (or math-integrating | |
703 (memq (car-safe (nth 1 m)) | |
704 (if hyperbolic | |
705 '(calcFunc-arcsinh calcFunc-arccosh calcFunc-arctanh) | |
706 '(calcFunc-arcsin calcFunc-arccos calcFunc-arctan))) | |
707 (and (eq (car-safe (nth 1 m)) 'calcFunc-ln) | |
708 (eq hyperbolic 'exp))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
709 m))) |
40785 | 710 |
711 (defun math-known-sin (plus n mul off) | |
712 (setq n (math-mul n mul)) | |
713 (and (math-num-integerp n) | |
714 (setq n (math-mod (math-add (math-trunc n) off) 240)) | |
715 (if (>= n 120) | |
716 (and (setq n (math-known-sin plus (- n 120) 1 0)) | |
717 (math-neg n)) | |
718 (if (> n 60) | |
719 (setq n (- 120 n))) | |
720 (if (math-zerop plus) | |
721 (and (or calc-symbolic-mode | |
722 (memq n '(0 20 60))) | |
723 (cdr (assq n | |
724 '( (0 . 0) | |
725 (10 . (/ (calcFunc-sqrt | |
726 (- 2 (calcFunc-sqrt 3))) 2)) | |
727 (12 . (/ (- (calcFunc-sqrt 5) 1) 4)) | |
728 (15 . (/ (calcFunc-sqrt | |
729 (- 2 (calcFunc-sqrt 2))) 2)) | |
730 (20 . (/ 1 2)) | |
731 (24 . (* (^ (/ 1 2) (/ 3 2)) | |
732 (calcFunc-sqrt | |
733 (- 5 (calcFunc-sqrt 5))))) | |
734 (30 . (/ (calcFunc-sqrt 2) 2)) | |
735 (36 . (/ (+ (calcFunc-sqrt 5) 1) 4)) | |
736 (40 . (/ (calcFunc-sqrt 3) 2)) | |
737 (45 . (/ (calcFunc-sqrt | |
738 (+ 2 (calcFunc-sqrt 2))) 2)) | |
739 (48 . (* (^ (/ 1 2) (/ 3 2)) | |
740 (calcFunc-sqrt | |
741 (+ 5 (calcFunc-sqrt 5))))) | |
742 (50 . (/ (calcFunc-sqrt | |
743 (+ 2 (calcFunc-sqrt 3))) 2)) | |
744 (60 . 1))))) | |
745 (cond ((eq n 0) (math-normalize (list 'calcFunc-sin plus))) | |
746 ((eq n 60) (math-normalize (list 'calcFunc-cos plus))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
747 (t nil)))))) |
40785 | 748 |
749 (math-defsimplify calcFunc-tan | |
750 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctan) | |
751 (nth 1 (nth 1 expr))) | |
752 (and (math-looks-negp (nth 1 expr)) | |
753 (math-neg (list 'calcFunc-tan (math-neg (nth 1 expr))))) | |
754 (and (eq calc-angle-mode 'rad) | |
755 (let ((n (math-linear-in (nth 1 expr) '(var pi var-pi)))) | |
756 (and n | |
757 (math-known-tan (car n) (nth 1 n) 120)))) | |
758 (and (eq calc-angle-mode 'deg) | |
759 (let ((n (math-integer-plus (nth 1 expr)))) | |
760 (and n | |
761 (math-known-tan (car n) (nth 1 n) '(frac 2 3))))) | |
762 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsin) | |
763 (math-div (nth 1 (nth 1 expr)) | |
764 (list 'calcFunc-sqrt | |
765 (math-sub 1 (math-sqr (nth 1 (nth 1 expr))))))) | |
766 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccos) | |
767 (math-div (list 'calcFunc-sqrt | |
768 (math-sub 1 (math-sqr (nth 1 (nth 1 expr))))) | |
769 (nth 1 (nth 1 expr)))) | |
770 (let ((m (math-should-expand-trig (nth 1 expr)))) | |
771 (and m | |
772 (if (equal (car m) '(frac 1 2)) | |
773 (math-div (math-sub 1 (list 'calcFunc-cos (nth 1 m))) | |
774 (list 'calcFunc-sin (nth 1 m))) | |
775 (math-div (list 'calcFunc-sin (nth 1 expr)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
776 (list 'calcFunc-cos (nth 1 expr)))))))) |
40785 | 777 |
778 (defun math-known-tan (plus n mul) | |
779 (setq n (math-mul n mul)) | |
780 (and (math-num-integerp n) | |
781 (setq n (math-mod (math-trunc n) 120)) | |
782 (if (> n 60) | |
783 (and (setq n (math-known-tan plus (- 120 n) 1)) | |
784 (math-neg n)) | |
785 (if (math-zerop plus) | |
786 (and (or calc-symbolic-mode | |
787 (memq n '(0 30 60))) | |
788 (cdr (assq n '( (0 . 0) | |
789 (10 . (- 2 (calcFunc-sqrt 3))) | |
790 (12 . (calcFunc-sqrt | |
791 (- 1 (* (/ 2 5) (calcFunc-sqrt 5))))) | |
792 (15 . (- (calcFunc-sqrt 2) 1)) | |
793 (20 . (/ (calcFunc-sqrt 3) 3)) | |
794 (24 . (calcFunc-sqrt | |
795 (- 5 (* 2 (calcFunc-sqrt 5))))) | |
796 (30 . 1) | |
797 (36 . (calcFunc-sqrt | |
798 (+ 1 (* (/ 2 5) (calcFunc-sqrt 5))))) | |
799 (40 . (calcFunc-sqrt 3)) | |
800 (45 . (+ (calcFunc-sqrt 2) 1)) | |
801 (48 . (calcFunc-sqrt | |
802 (+ 5 (* 2 (calcFunc-sqrt 5))))) | |
803 (50 . (+ 2 (calcFunc-sqrt 3))) | |
804 (60 . (var uinf var-uinf)))))) | |
805 (cond ((eq n 0) (math-normalize (list 'calcFunc-tan plus))) | |
806 ((eq n 60) (math-normalize (list '/ -1 | |
807 (list 'calcFunc-tan plus)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
808 (t nil)))))) |
40785 | 809 |
810 (math-defsimplify calcFunc-sinh | |
811 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsinh) | |
812 (nth 1 (nth 1 expr))) | |
813 (and (math-looks-negp (nth 1 expr)) | |
814 (math-neg (list 'calcFunc-sinh (math-neg (nth 1 expr))))) | |
815 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccosh) | |
816 math-living-dangerously | |
817 (list 'calcFunc-sqrt (math-sub (math-sqr (nth 1 (nth 1 expr))) 1))) | |
818 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctanh) | |
819 math-living-dangerously | |
820 (math-div (nth 1 (nth 1 expr)) | |
821 (list 'calcFunc-sqrt | |
822 (math-sub 1 (math-sqr (nth 1 (nth 1 expr))))))) | |
823 (let ((m (math-should-expand-trig (nth 1 expr) t))) | |
824 (and m (integerp (car m)) | |
825 (let ((n (car m)) (a (nth 1 m))) | |
826 (if (> n 1) | |
827 (list '+ | |
828 (list '* (list 'calcFunc-sinh (list '* (1- n) a)) | |
829 (list 'calcFunc-cosh a)) | |
830 (list '* (list 'calcFunc-cosh (list '* (1- n) a)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
831 (list 'calcFunc-sinh a))))))))) |
40785 | 832 |
833 (math-defsimplify calcFunc-cosh | |
834 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccosh) | |
835 (nth 1 (nth 1 expr))) | |
836 (and (math-looks-negp (nth 1 expr)) | |
837 (list 'calcFunc-cosh (math-neg (nth 1 expr)))) | |
838 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsinh) | |
839 math-living-dangerously | |
840 (list 'calcFunc-sqrt (math-add (math-sqr (nth 1 (nth 1 expr))) 1))) | |
841 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctanh) | |
842 math-living-dangerously | |
843 (math-div 1 | |
844 (list 'calcFunc-sqrt | |
845 (math-sub 1 (math-sqr (nth 1 (nth 1 expr))))))) | |
846 (let ((m (math-should-expand-trig (nth 1 expr) t))) | |
847 (and m (integerp (car m)) | |
848 (let ((n (car m)) (a (nth 1 m))) | |
849 (if (> n 1) | |
850 (list '+ | |
851 (list '* (list 'calcFunc-cosh (list '* (1- n) a)) | |
852 (list 'calcFunc-cosh a)) | |
853 (list '* (list 'calcFunc-sinh (list '* (1- n) a)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
854 (list 'calcFunc-sinh a))))))))) |
40785 | 855 |
856 (math-defsimplify calcFunc-tanh | |
857 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-arctanh) | |
858 (nth 1 (nth 1 expr))) | |
859 (and (math-looks-negp (nth 1 expr)) | |
860 (math-neg (list 'calcFunc-tanh (math-neg (nth 1 expr))))) | |
861 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arcsinh) | |
862 math-living-dangerously | |
863 (math-div (nth 1 (nth 1 expr)) | |
864 (list 'calcFunc-sqrt | |
865 (math-add (math-sqr (nth 1 (nth 1 expr))) 1)))) | |
866 (and (eq (car-safe (nth 1 expr)) 'calcFunc-arccosh) | |
867 math-living-dangerously | |
868 (math-div (list 'calcFunc-sqrt | |
869 (math-sub (math-sqr (nth 1 (nth 1 expr))) 1)) | |
870 (nth 1 (nth 1 expr)))) | |
871 (let ((m (math-should-expand-trig (nth 1 expr) t))) | |
872 (and m | |
873 (if (equal (car m) '(frac 1 2)) | |
874 (math-div (math-sub (list 'calcFunc-cosh (nth 1 m)) 1) | |
875 (list 'calcFunc-sinh (nth 1 m))) | |
876 (math-div (list 'calcFunc-sinh (nth 1 expr)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
877 (list 'calcFunc-cosh (nth 1 expr)))))))) |
40785 | 878 |
879 (math-defsimplify calcFunc-arcsin | |
880 (or (and (math-looks-negp (nth 1 expr)) | |
881 (math-neg (list 'calcFunc-arcsin (math-neg (nth 1 expr))))) | |
882 (and (eq (nth 1 expr) 1) | |
883 (math-quarter-circle t)) | |
884 (and (equal (nth 1 expr) '(frac 1 2)) | |
885 (math-div (math-half-circle t) 6)) | |
886 (and math-living-dangerously | |
887 (eq (car-safe (nth 1 expr)) 'calcFunc-sin) | |
888 (nth 1 (nth 1 expr))) | |
889 (and math-living-dangerously | |
890 (eq (car-safe (nth 1 expr)) 'calcFunc-cos) | |
891 (math-sub (math-quarter-circle t) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
892 (nth 1 (nth 1 expr)))))) |
40785 | 893 |
894 (math-defsimplify calcFunc-arccos | |
895 (or (and (eq (nth 1 expr) 0) | |
896 (math-quarter-circle t)) | |
897 (and (eq (nth 1 expr) -1) | |
898 (math-half-circle t)) | |
899 (and (equal (nth 1 expr) '(frac 1 2)) | |
900 (math-div (math-half-circle t) 3)) | |
901 (and (equal (nth 1 expr) '(frac -1 2)) | |
902 (math-div (math-mul (math-half-circle t) 2) 3)) | |
903 (and math-living-dangerously | |
904 (eq (car-safe (nth 1 expr)) 'calcFunc-cos) | |
905 (nth 1 (nth 1 expr))) | |
906 (and math-living-dangerously | |
907 (eq (car-safe (nth 1 expr)) 'calcFunc-sin) | |
908 (math-sub (math-quarter-circle t) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
909 (nth 1 (nth 1 expr)))))) |
40785 | 910 |
911 (math-defsimplify calcFunc-arctan | |
912 (or (and (math-looks-negp (nth 1 expr)) | |
913 (math-neg (list 'calcFunc-arctan (math-neg (nth 1 expr))))) | |
914 (and (eq (nth 1 expr) 1) | |
915 (math-div (math-half-circle t) 4)) | |
916 (and math-living-dangerously | |
917 (eq (car-safe (nth 1 expr)) 'calcFunc-tan) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
918 (nth 1 (nth 1 expr))))) |
40785 | 919 |
920 (math-defsimplify calcFunc-arcsinh | |
921 (or (and (math-looks-negp (nth 1 expr)) | |
922 (math-neg (list 'calcFunc-arcsinh (math-neg (nth 1 expr))))) | |
923 (and (eq (car-safe (nth 1 expr)) 'calcFunc-sinh) | |
924 (or math-living-dangerously | |
925 (math-known-realp (nth 1 (nth 1 expr)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
926 (nth 1 (nth 1 expr))))) |
40785 | 927 |
928 (math-defsimplify calcFunc-arccosh | |
929 (and (eq (car-safe (nth 1 expr)) 'calcFunc-cosh) | |
930 (or math-living-dangerously | |
931 (math-known-realp (nth 1 (nth 1 expr)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
932 (nth 1 (nth 1 expr)))) |
40785 | 933 |
934 (math-defsimplify calcFunc-arctanh | |
935 (or (and (math-looks-negp (nth 1 expr)) | |
936 (math-neg (list 'calcFunc-arctanh (math-neg (nth 1 expr))))) | |
937 (and (eq (car-safe (nth 1 expr)) 'calcFunc-tanh) | |
938 (or math-living-dangerously | |
939 (math-known-realp (nth 1 (nth 1 expr)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
940 (nth 1 (nth 1 expr))))) |
40785 | 941 |
942 (math-defsimplify calcFunc-sqrt | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
943 (math-simplify-sqrt)) |
40785 | 944 |
945 (defun math-simplify-sqrt () | |
946 (or (and (eq (car-safe (nth 1 expr)) 'frac) | |
947 (math-div (list 'calcFunc-sqrt (math-mul (nth 1 (nth 1 expr)) | |
948 (nth 2 (nth 1 expr)))) | |
949 (nth 2 (nth 1 expr)))) | |
950 (let ((fac (if (math-objectp (nth 1 expr)) | |
951 (math-squared-factor (nth 1 expr)) | |
952 (math-common-constant-factor (nth 1 expr))))) | |
953 (and fac (not (eq fac 1)) | |
954 (math-mul (math-normalize (list 'calcFunc-sqrt fac)) | |
955 (math-normalize | |
956 (list 'calcFunc-sqrt | |
957 (math-cancel-common-factor (nth 1 expr) fac)))))) | |
958 (and math-living-dangerously | |
959 (or (and (eq (car-safe (nth 1 expr)) '-) | |
960 (math-equal-int (nth 1 (nth 1 expr)) 1) | |
961 (eq (car-safe (nth 2 (nth 1 expr))) '^) | |
962 (math-equal-int (nth 2 (nth 2 (nth 1 expr))) 2) | |
963 (or (and (eq (car-safe (nth 1 (nth 2 (nth 1 expr)))) | |
964 'calcFunc-sin) | |
965 (list 'calcFunc-cos | |
966 (nth 1 (nth 1 (nth 2 (nth 1 expr)))))) | |
967 (and (eq (car-safe (nth 1 (nth 2 (nth 1 expr)))) | |
968 'calcFunc-cos) | |
969 (list 'calcFunc-sin | |
970 (nth 1 (nth 1 (nth 2 (nth 1 expr)))))))) | |
971 (and (eq (car-safe (nth 1 expr)) '-) | |
972 (math-equal-int (nth 2 (nth 1 expr)) 1) | |
973 (eq (car-safe (nth 1 (nth 1 expr))) '^) | |
974 (math-equal-int (nth 2 (nth 1 (nth 1 expr))) 2) | |
975 (and (eq (car-safe (nth 1 (nth 1 (nth 1 expr)))) | |
976 'calcFunc-cosh) | |
977 (list 'calcFunc-sinh | |
978 (nth 1 (nth 1 (nth 1 (nth 1 expr))))))) | |
979 (and (eq (car-safe (nth 1 expr)) '+) | |
980 (let ((a (nth 1 (nth 1 expr))) | |
981 (b (nth 2 (nth 1 expr)))) | |
982 (and (or (and (math-equal-int a 1) | |
983 (setq a b b (nth 1 (nth 1 expr)))) | |
984 (math-equal-int b 1)) | |
985 (eq (car-safe a) '^) | |
986 (math-equal-int (nth 2 a) 2) | |
987 (or (and (eq (car-safe (nth 1 a)) 'calcFunc-sinh) | |
988 (list 'calcFunc-cosh (nth 1 (nth 1 a)))) | |
989 (and (eq (car-safe (nth 1 a)) 'calcFunc-tan) | |
990 (list '/ 1 (list 'calcFunc-cos | |
991 (nth 1 (nth 1 a))))))))) | |
992 (and (eq (car-safe (nth 1 expr)) '^) | |
993 (list '^ | |
994 (nth 1 (nth 1 expr)) | |
995 (math-div (nth 2 (nth 1 expr)) 2))) | |
996 (and (eq (car-safe (nth 1 expr)) 'calcFunc-sqrt) | |
997 (list '^ (nth 1 (nth 1 expr)) (math-div 1 4))) | |
998 (and (memq (car-safe (nth 1 expr)) '(* /)) | |
999 (list (car (nth 1 expr)) | |
1000 (list 'calcFunc-sqrt (nth 1 (nth 1 expr))) | |
1001 (list 'calcFunc-sqrt (nth 2 (nth 1 expr))))) | |
1002 (and (memq (car-safe (nth 1 expr)) '(+ -)) | |
1003 (not (math-any-floats (nth 1 expr))) | |
1004 (let ((f (calcFunc-factors (calcFunc-expand | |
1005 (nth 1 expr))))) | |
1006 (and (math-vectorp f) | |
1007 (or (> (length f) 2) | |
1008 (> (nth 2 (nth 1 f)) 1)) | |
1009 (let ((out 1) (rest 1) (sums 1) fac pow) | |
1010 (while (setq f (cdr f)) | |
1011 (setq fac (nth 1 (car f)) | |
1012 pow (nth 2 (car f))) | |
1013 (if (> pow 1) | |
1014 (setq out (math-mul out (math-pow | |
1015 fac (/ pow 2))) | |
1016 pow (% pow 2))) | |
1017 (if (> pow 0) | |
1018 (if (memq (car-safe fac) '(+ -)) | |
1019 (setq sums (math-mul-thru sums fac)) | |
1020 (setq rest (math-mul rest fac))))) | |
1021 (and (not (and (eq out 1) (memq rest '(1 -1)))) | |
1022 (math-mul | |
1023 out | |
1024 (list 'calcFunc-sqrt | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1025 (math-mul sums rest)))))))))))) |
40785 | 1026 |
1027 ;;; Rather than factoring x into primes, just check for the first ten primes. | |
1028 (defun math-squared-factor (x) | |
1029 (if (Math-integerp x) | |
1030 (let ((prsqr '(4 9 25 49 121 169 289 361 529 841)) | |
1031 (fac 1) | |
1032 res) | |
1033 (while prsqr | |
1034 (if (eq (cdr (setq res (math-idivmod x (car prsqr)))) 0) | |
1035 (setq x (car res) | |
1036 fac (math-mul fac (car prsqr))) | |
1037 (setq prsqr (cdr prsqr)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1038 fac))) |
40785 | 1039 |
1040 (math-defsimplify calcFunc-exp | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1041 (math-simplify-exp (nth 1 expr))) |
40785 | 1042 |
1043 (defun math-simplify-exp (x) | |
1044 (or (and (eq (car-safe x) 'calcFunc-ln) | |
1045 (nth 1 x)) | |
1046 (and math-living-dangerously | |
1047 (or (and (eq (car-safe x) 'calcFunc-arcsinh) | |
1048 (math-add (nth 1 x) | |
1049 (list 'calcFunc-sqrt | |
1050 (math-add (math-sqr (nth 1 x)) 1)))) | |
1051 (and (eq (car-safe x) 'calcFunc-arccosh) | |
1052 (math-add (nth 1 x) | |
1053 (list 'calcFunc-sqrt | |
1054 (math-sub (math-sqr (nth 1 x)) 1)))) | |
1055 (and (eq (car-safe x) 'calcFunc-arctanh) | |
1056 (math-div (list 'calcFunc-sqrt (math-add 1 (nth 1 x))) | |
1057 (list 'calcFunc-sqrt (math-sub 1 (nth 1 x))))) | |
1058 (let ((m (math-should-expand-trig x 'exp))) | |
1059 (and m (integerp (car m)) | |
1060 (list '^ (list 'calcFunc-exp (nth 1 m)) (car m)))))) | |
1061 (and calc-symbolic-mode | |
1062 (math-known-imagp x) | |
1063 (let* ((ip (calcFunc-im x)) | |
1064 (n (math-linear-in ip '(var pi var-pi))) | |
1065 s c) | |
1066 (and n | |
1067 (setq s (math-known-sin (car n) (nth 1 n) 120 0)) | |
1068 (setq c (math-known-sin (car n) (nth 1 n) 120 300)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1069 (list '+ c (list '* s '(var i var-i)))))))) |
40785 | 1070 |
1071 (math-defsimplify calcFunc-ln | |
1072 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-exp) | |
1073 (or math-living-dangerously | |
1074 (math-known-realp (nth 1 (nth 1 expr)))) | |
1075 (nth 1 (nth 1 expr))) | |
1076 (and (eq (car-safe (nth 1 expr)) '^) | |
1077 (equal (nth 1 (nth 1 expr)) '(var e var-e)) | |
1078 (or math-living-dangerously | |
1079 (math-known-realp (nth 2 (nth 1 expr)))) | |
1080 (nth 2 (nth 1 expr))) | |
1081 (and calc-symbolic-mode | |
1082 (math-known-negp (nth 1 expr)) | |
1083 (math-add (list 'calcFunc-ln (math-neg (nth 1 expr))) | |
1084 '(var pi var-pi))) | |
1085 (and calc-symbolic-mode | |
1086 (math-known-imagp (nth 1 expr)) | |
1087 (let* ((ip (calcFunc-im (nth 1 expr))) | |
1088 (ips (math-possible-signs ip))) | |
1089 (or (and (memq ips '(4 6)) | |
1090 (math-add (list 'calcFunc-ln ip) | |
1091 '(/ (* (var pi var-pi) (var i var-i)) 2))) | |
1092 (and (memq ips '(1 3)) | |
1093 (math-sub (list 'calcFunc-ln (math-neg ip)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1094 '(/ (* (var pi var-pi) (var i var-i)) 2)))))))) |
40785 | 1095 |
1096 (math-defsimplify ^ | |
1097 (math-simplify-pow)) | |
1098 | |
1099 (defun math-simplify-pow () | |
1100 (or (and math-living-dangerously | |
1101 (or (and (eq (car-safe (nth 1 expr)) '^) | |
1102 (list '^ | |
1103 (nth 1 (nth 1 expr)) | |
1104 (math-mul (nth 2 expr) (nth 2 (nth 1 expr))))) | |
1105 (and (eq (car-safe (nth 1 expr)) 'calcFunc-sqrt) | |
1106 (list '^ | |
1107 (nth 1 (nth 1 expr)) | |
1108 (math-div (nth 2 expr) 2))) | |
1109 (and (memq (car-safe (nth 1 expr)) '(* /)) | |
1110 (list (car (nth 1 expr)) | |
1111 (list '^ (nth 1 (nth 1 expr)) (nth 2 expr)) | |
1112 (list '^ (nth 2 (nth 1 expr)) (nth 2 expr)))))) | |
1113 (and (math-equal-int (nth 1 expr) 10) | |
1114 (eq (car-safe (nth 2 expr)) 'calcFunc-log10) | |
1115 (nth 1 (nth 2 expr))) | |
1116 (and (equal (nth 1 expr) '(var e var-e)) | |
1117 (math-simplify-exp (nth 2 expr))) | |
1118 (and (eq (car-safe (nth 1 expr)) 'calcFunc-exp) | |
1119 (not math-integrating) | |
1120 (list 'calcFunc-exp (math-mul (nth 1 (nth 1 expr)) (nth 2 expr)))) | |
1121 (and (equal (nth 1 expr) '(var i var-i)) | |
1122 (math-imaginary-i) | |
1123 (math-num-integerp (nth 2 expr)) | |
1124 (let ((x (math-mod (math-trunc (nth 2 expr)) 4))) | |
1125 (cond ((eq x 0) 1) | |
1126 ((eq x 1) (nth 1 expr)) | |
1127 ((eq x 2) -1) | |
1128 ((eq x 3) (math-neg (nth 1 expr)))))) | |
1129 (and math-integrating | |
1130 (integerp (nth 2 expr)) | |
1131 (>= (nth 2 expr) 2) | |
1132 (or (and (eq (car-safe (nth 1 expr)) 'calcFunc-cos) | |
1133 (math-mul (math-pow (nth 1 expr) (- (nth 2 expr) 2)) | |
1134 (math-sub 1 | |
1135 (math-sqr | |
1136 (list 'calcFunc-sin | |
1137 (nth 1 (nth 1 expr))))))) | |
1138 (and (eq (car-safe (nth 1 expr)) 'calcFunc-cosh) | |
1139 (math-mul (math-pow (nth 1 expr) (- (nth 2 expr) 2)) | |
1140 (math-add 1 | |
1141 (math-sqr | |
1142 (list 'calcFunc-sinh | |
1143 (nth 1 (nth 1 expr))))))))) | |
1144 (and (eq (car-safe (nth 2 expr)) 'frac) | |
1145 (Math-ratp (nth 1 expr)) | |
1146 (Math-posp (nth 1 expr)) | |
1147 (if (equal (nth 2 expr) '(frac 1 2)) | |
1148 (list 'calcFunc-sqrt (nth 1 expr)) | |
1149 (let ((flr (math-floor (nth 2 expr)))) | |
1150 (and (not (Math-zerop flr)) | |
1151 (list '* (list '^ (nth 1 expr) flr) | |
1152 (list '^ (nth 1 expr) | |
1153 (math-sub (nth 2 expr) flr))))))) | |
1154 (and (eq (math-quarter-integer (nth 2 expr)) 2) | |
1155 (let ((temp (math-simplify-sqrt))) | |
1156 (and temp | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1157 (list '^ temp (math-mul (nth 2 expr) 2))))))) |
40785 | 1158 |
1159 (math-defsimplify calcFunc-log10 | |
1160 (and (eq (car-safe (nth 1 expr)) '^) | |
1161 (math-equal-int (nth 1 (nth 1 expr)) 10) | |
1162 (or math-living-dangerously | |
1163 (math-known-realp (nth 2 (nth 1 expr)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1164 (nth 2 (nth 1 expr)))) |
40785 | 1165 |
1166 | |
1167 (math-defsimplify calcFunc-erf | |
1168 (or (and (math-looks-negp (nth 1 expr)) | |
1169 (math-neg (list 'calcFunc-erf (math-neg (nth 1 expr))))) | |
1170 (and (eq (car-safe (nth 1 expr)) 'calcFunc-conj) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1171 (list 'calcFunc-conj (list 'calcFunc-erf (nth 1 (nth 1 expr))))))) |
40785 | 1172 |
1173 (math-defsimplify calcFunc-erfc | |
1174 (or (and (math-looks-negp (nth 1 expr)) | |
1175 (math-sub 2 (list 'calcFunc-erfc (math-neg (nth 1 expr))))) | |
1176 (and (eq (car-safe (nth 1 expr)) 'calcFunc-conj) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1177 (list 'calcFunc-conj (list 'calcFunc-erfc (nth 1 (nth 1 expr))))))) |
40785 | 1178 |
1179 | |
1180 (defun math-linear-in (expr term &optional always) | |
1181 (if (math-expr-contains expr term) | |
1182 (let* ((calc-prefer-frac t) | |
1183 (p (math-is-polynomial expr term 1))) | |
1184 (and (cdr p) | |
1185 p)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1186 (and always (list expr 0)))) |
40785 | 1187 |
1188 (defun math-multiple-of (expr term) | |
1189 (let ((p (math-linear-in expr term))) | |
1190 (and p | |
1191 (math-zerop (car p)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1192 (nth 1 p)))) |
40785 | 1193 |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1194 ; not perfect, but it'll do |
40785 | 1195 (defun math-integer-plus (expr) |
1196 (cond ((Math-integerp expr) | |
1197 (list 0 expr)) | |
1198 ((and (memq (car expr) '(+ -)) | |
1199 (Math-integerp (nth 1 expr))) | |
1200 (list (if (eq (car expr) '+) (nth 2 expr) (math-neg (nth 2 expr))) | |
1201 (nth 1 expr))) | |
1202 ((and (memq (car expr) '(+ -)) | |
1203 (Math-integerp (nth 2 expr))) | |
1204 (list (nth 1 expr) | |
1205 (if (eq (car expr) '+) (nth 2 expr) (math-neg (nth 2 expr))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1206 (t nil))) |
40785 | 1207 |
1208 (defun math-is-linear (expr &optional always) | |
1209 (let ((offset nil) | |
1210 (coef nil)) | |
1211 (if (eq (car-safe expr) '+) | |
1212 (if (Math-objectp (nth 1 expr)) | |
1213 (setq offset (nth 1 expr) | |
1214 expr (nth 2 expr)) | |
1215 (if (Math-objectp (nth 2 expr)) | |
1216 (setq offset (nth 2 expr) | |
1217 expr (nth 1 expr)))) | |
1218 (if (eq (car-safe expr) '-) | |
1219 (if (Math-objectp (nth 1 expr)) | |
1220 (setq offset (nth 1 expr) | |
1221 expr (math-neg (nth 2 expr))) | |
1222 (if (Math-objectp (nth 2 expr)) | |
1223 (setq offset (math-neg (nth 2 expr)) | |
1224 expr (nth 1 expr)))))) | |
1225 (setq coef (math-is-multiple expr always)) | |
1226 (if offset | |
1227 (list offset (or (car coef) 1) (or (nth 1 coef) expr)) | |
1228 (if coef | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1229 (cons 0 coef))))) |
40785 | 1230 |
1231 (defun math-is-multiple (expr &optional always) | |
1232 (or (if (eq (car-safe expr) '*) | |
1233 (if (Math-objectp (nth 1 expr)) | |
1234 (list (nth 1 expr) (nth 2 expr))) | |
1235 (if (eq (car-safe expr) '/) | |
1236 (if (and (Math-objectp (nth 1 expr)) | |
1237 (not (math-equal-int (nth 1 expr) 1))) | |
1238 (list (nth 1 expr) (math-div 1 (nth 2 expr))) | |
1239 (if (Math-objectp (nth 2 expr)) | |
1240 (list (math-div 1 (nth 2 expr)) (nth 1 expr)) | |
1241 (let ((res (math-is-multiple (nth 1 expr)))) | |
1242 (if res | |
1243 (list (car res) | |
1244 (math-div (nth 2 (nth 1 expr)) (nth 2 expr))) | |
1245 (setq res (math-is-multiple (nth 2 expr))) | |
1246 (if res | |
1247 (list (math-div 1 (car res)) | |
1248 (math-div (nth 1 expr) | |
1249 (nth 2 (nth 2 expr))))))))) | |
1250 (if (eq (car-safe expr) 'neg) | |
1251 (list -1 (nth 1 expr))))) | |
1252 (if (Math-objvecp expr) | |
1253 (and (eq always 1) | |
1254 (list expr 1)) | |
1255 (and always | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1256 (list 1 expr))))) |
40785 | 1257 |
1258 (defun calcFunc-lin (expr &optional var) | |
1259 (if var | |
1260 (let ((res (math-linear-in expr var t))) | |
1261 (or res (math-reject-arg expr "Linear term expected")) | |
1262 (list 'vec (car res) (nth 1 res) var)) | |
1263 (let ((res (math-is-linear expr t))) | |
1264 (or res (math-reject-arg expr "Linear term expected")) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1265 (cons 'vec res)))) |
40785 | 1266 |
1267 (defun calcFunc-linnt (expr &optional var) | |
1268 (if var | |
1269 (let ((res (math-linear-in expr var))) | |
1270 (or res (math-reject-arg expr "Linear term expected")) | |
1271 (list 'vec (car res) (nth 1 res) var)) | |
1272 (let ((res (math-is-linear expr))) | |
1273 (or res (math-reject-arg expr "Linear term expected")) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1274 (cons 'vec res)))) |
40785 | 1275 |
1276 (defun calcFunc-islin (expr &optional var) | |
1277 (if (and (Math-objvecp expr) (not var)) | |
1278 0 | |
1279 (calcFunc-lin expr var) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1280 1)) |
40785 | 1281 |
1282 (defun calcFunc-islinnt (expr &optional var) | |
1283 (if (Math-objvecp expr) | |
1284 0 | |
1285 (calcFunc-linnt expr var) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1286 1)) |
40785 | 1287 |
1288 | |
1289 | |
1290 | |
1291 ;;; Simple operations on expressions. | |
1292 | |
1293 ;;; Return number of ocurrences of thing in expr, or nil if none. | |
1294 (defun math-expr-contains-count (expr thing) | |
1295 (cond ((equal expr thing) 1) | |
1296 ((Math-primp expr) nil) | |
1297 (t | |
1298 (let ((num 0)) | |
1299 (while (setq expr (cdr expr)) | |
1300 (setq num (+ num (or (math-expr-contains-count | |
1301 (car expr) thing) 0)))) | |
1302 (and (> num 0) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1303 num))))) |
40785 | 1304 |
1305 (defun math-expr-contains (expr thing) | |
1306 (cond ((equal expr thing) 1) | |
1307 ((Math-primp expr) nil) | |
1308 (t | |
1309 (while (and (setq expr (cdr expr)) | |
1310 (not (math-expr-contains (car expr) thing)))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1311 expr))) |
40785 | 1312 |
1313 ;;; Return non-nil if any variable of thing occurs in expr. | |
1314 (defun math-expr-depends (expr thing) | |
1315 (if (Math-primp thing) | |
1316 (and (eq (car-safe thing) 'var) | |
1317 (math-expr-contains expr thing)) | |
1318 (while (and (setq thing (cdr thing)) | |
1319 (not (math-expr-depends expr (car thing))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1320 thing)) |
40785 | 1321 |
1322 ;;; Substitute all occurrences of old for new in expr (non-destructive). | |
1323 (defun math-expr-subst (expr old new) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1324 (math-expr-subst-rec expr)) |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1325 |
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1326 (defalias 'calcFunc-subst 'math-expr-subst) |
40785 | 1327 |
1328 (defun math-expr-subst-rec (expr) | |
1329 (cond ((equal expr old) new) | |
1330 ((Math-primp expr) expr) | |
1331 ((memq (car expr) '(calcFunc-deriv | |
1332 calcFunc-tderiv)) | |
1333 (if (= (length expr) 2) | |
1334 (if (equal (nth 1 expr) old) | |
1335 (append expr (list new)) | |
1336 expr) | |
1337 (list (car expr) (nth 1 expr) | |
1338 (math-expr-subst-rec (nth 2 expr))))) | |
1339 (t | |
1340 (cons (car expr) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1341 (mapcar 'math-expr-subst-rec (cdr expr)))))) |
40785 | 1342 |
1343 ;;; Various measures of the size of an expression. | |
1344 (defun math-expr-weight (expr) | |
1345 (if (Math-primp expr) | |
1346 1 | |
1347 (let ((w 1)) | |
1348 (while (setq expr (cdr expr)) | |
1349 (setq w (+ w (math-expr-weight (car expr))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1350 w))) |
40785 | 1351 |
1352 (defun math-expr-height (expr) | |
1353 (if (Math-primp expr) | |
1354 0 | |
1355 (let ((h 0)) | |
1356 (while (setq expr (cdr expr)) | |
1357 (setq h (max h (math-expr-height (car expr))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1358 (1+ h)))) |
40785 | 1359 |
1360 | |
1361 | |
1362 | |
1363 ;;; Polynomial operations (to support the integrator and solve-for). | |
1364 | |
1365 (defun calcFunc-collect (expr base) | |
1366 (let ((p (math-is-polynomial expr base 50 t))) | |
1367 (if (cdr p) | |
1368 (math-normalize ; fix selection bug | |
1369 (math-build-polynomial-expr p base)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1370 expr))) |
40785 | 1371 |
1372 ;;; If expr is of the form "a + bx + cx^2 + ...", return the list (a b c ...), | |
1373 ;;; else return nil if not in polynomial form. If "loose", coefficients | |
1374 ;;; may contain x, e.g., sin(x) + cos(x) x^2 is a loose polynomial in x. | |
1375 (defun math-is-polynomial (expr var &optional degree loose) | |
1376 (let* ((math-poly-base-variable (if loose | |
1377 (if (eq loose 'gen) var '(var XXX XXX)) | |
1378 math-poly-base-variable)) | |
1379 (poly (math-is-poly-rec expr math-poly-neg-powers))) | |
1380 (and (or (null degree) | |
1381 (<= (length poly) (1+ degree))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1382 poly))) |
40785 | 1383 |
1384 (defun math-is-poly-rec (expr negpow) | |
1385 (math-poly-simplify | |
1386 (or (cond ((or (equal expr var) | |
1387 (eq (car-safe expr) '^)) | |
1388 (let ((pow 1) | |
1389 (expr expr)) | |
1390 (or (equal expr var) | |
1391 (setq pow (nth 2 expr) | |
1392 expr (nth 1 expr))) | |
1393 (or (eq math-poly-mult-powers 1) | |
1394 (setq pow (let ((m (math-is-multiple pow 1))) | |
1395 (and (eq (car-safe (car m)) 'cplx) | |
1396 (Math-zerop (nth 1 (car m))) | |
1397 (setq m (list (nth 2 (car m)) | |
1398 (math-mul (nth 1 m) | |
1399 '(var i var-i))))) | |
1400 (and (if math-poly-mult-powers | |
1401 (equal math-poly-mult-powers | |
1402 (nth 1 m)) | |
1403 (setq math-poly-mult-powers (nth 1 m))) | |
1404 (or (equal expr var) | |
1405 (eq math-poly-mult-powers 1)) | |
1406 (car m))))) | |
1407 (if (consp pow) | |
1408 (progn | |
1409 (setq pow (math-to-simple-fraction pow)) | |
1410 (and (eq (car-safe pow) 'frac) | |
1411 math-poly-frac-powers | |
1412 (equal expr var) | |
1413 (setq math-poly-frac-powers | |
1414 (calcFunc-lcm math-poly-frac-powers | |
1415 (nth 2 pow)))))) | |
1416 (or (memq math-poly-frac-powers '(1 nil)) | |
1417 (setq pow (math-mul pow math-poly-frac-powers))) | |
1418 (if (integerp pow) | |
1419 (if (and (= pow 1) | |
1420 (equal expr var)) | |
1421 (list 0 1) | |
1422 (if (natnump pow) | |
1423 (let ((p1 (if (equal expr var) | |
1424 (list 0 1) | |
1425 (math-is-poly-rec expr nil))) | |
1426 (n pow) | |
1427 (accum (list 1))) | |
1428 (and p1 | |
1429 (or (null degree) | |
1430 (<= (* (1- (length p1)) n) degree)) | |
1431 (progn | |
1432 (while (>= n 1) | |
1433 (setq accum (math-poly-mul accum p1) | |
1434 n (1- n))) | |
1435 accum))) | |
1436 (and negpow | |
1437 (math-is-poly-rec expr nil) | |
1438 (setq math-poly-neg-powers | |
1439 (cons (math-pow expr (- pow)) | |
1440 math-poly-neg-powers)) | |
1441 (list (list '^ expr pow)))))))) | |
1442 ((Math-objectp expr) | |
1443 (list expr)) | |
1444 ((memq (car expr) '(+ -)) | |
1445 (let ((p1 (math-is-poly-rec (nth 1 expr) negpow))) | |
1446 (and p1 | |
1447 (let ((p2 (math-is-poly-rec (nth 2 expr) negpow))) | |
1448 (and p2 | |
1449 (math-poly-mix p1 1 p2 | |
1450 (if (eq (car expr) '+) 1 -1))))))) | |
1451 ((eq (car expr) 'neg) | |
1452 (mapcar 'math-neg (math-is-poly-rec (nth 1 expr) negpow))) | |
1453 ((eq (car expr) '*) | |
1454 (let ((p1 (math-is-poly-rec (nth 1 expr) negpow))) | |
1455 (and p1 | |
1456 (let ((p2 (math-is-poly-rec (nth 2 expr) negpow))) | |
1457 (and p2 | |
1458 (or (null degree) | |
1459 (<= (- (+ (length p1) (length p2)) 2) degree)) | |
1460 (math-poly-mul p1 p2)))))) | |
1461 ((eq (car expr) '/) | |
1462 (and (or (not (math-poly-depends (nth 2 expr) var)) | |
1463 (and negpow | |
1464 (math-is-poly-rec (nth 2 expr) nil) | |
1465 (setq math-poly-neg-powers | |
1466 (cons (nth 2 expr) math-poly-neg-powers)))) | |
1467 (not (Math-zerop (nth 2 expr))) | |
1468 (let ((p1 (math-is-poly-rec (nth 1 expr) negpow))) | |
1469 (mapcar (function (lambda (x) (math-div x (nth 2 expr)))) | |
1470 p1)))) | |
1471 ((and (eq (car expr) 'calcFunc-exp) | |
1472 (equal var '(var e var-e))) | |
1473 (math-is-poly-rec (list '^ var (nth 1 expr)) negpow)) | |
1474 ((and (eq (car expr) 'calcFunc-sqrt) | |
1475 math-poly-frac-powers) | |
1476 (math-is-poly-rec (list '^ (nth 1 expr) '(frac 1 2)) negpow)) | |
1477 (t nil)) | |
1478 (and (or (not (math-poly-depends expr var)) | |
1479 loose) | |
1480 (not (eq (car expr) 'vec)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1481 (list expr))))) |
40785 | 1482 |
1483 ;;; Check if expr is a polynomial in var; if so, return its degree. | |
1484 (defun math-polynomial-p (expr var) | |
1485 (cond ((equal expr var) 1) | |
1486 ((Math-primp expr) 0) | |
1487 ((memq (car expr) '(+ -)) | |
1488 (let ((p1 (math-polynomial-p (nth 1 expr) var)) | |
1489 p2) | |
1490 (and p1 (setq p2 (math-polynomial-p (nth 2 expr) var)) | |
1491 (max p1 p2)))) | |
1492 ((eq (car expr) '*) | |
1493 (let ((p1 (math-polynomial-p (nth 1 expr) var)) | |
1494 p2) | |
1495 (and p1 (setq p2 (math-polynomial-p (nth 2 expr) var)) | |
1496 (+ p1 p2)))) | |
1497 ((eq (car expr) 'neg) | |
1498 (math-polynomial-p (nth 1 expr) var)) | |
1499 ((and (eq (car expr) '/) | |
1500 (not (math-poly-depends (nth 2 expr) var))) | |
1501 (math-polynomial-p (nth 1 expr) var)) | |
1502 ((and (eq (car expr) '^) | |
1503 (natnump (nth 2 expr))) | |
1504 (let ((p1 (math-polynomial-p (nth 1 expr) var))) | |
1505 (and p1 (* p1 (nth 2 expr))))) | |
1506 ((math-poly-depends expr var) nil) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1507 (t 0))) |
40785 | 1508 |
1509 (defun math-poly-depends (expr var) | |
1510 (if math-poly-base-variable | |
1511 (math-expr-contains expr math-poly-base-variable) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1512 (math-expr-depends expr var))) |
40785 | 1513 |
1514 ;;; Find the variable (or sub-expression) which is the base of polynomial expr. | |
1515 (defun math-polynomial-base (mpb-top-expr &optional mpb-pred) | |
1516 (or mpb-pred | |
1517 (setq mpb-pred (function (lambda (base) (math-polynomial-p | |
1518 mpb-top-expr base))))) | |
1519 (or (let ((const-ok nil)) | |
1520 (math-polynomial-base-rec mpb-top-expr)) | |
1521 (let ((const-ok t)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1522 (math-polynomial-base-rec mpb-top-expr)))) |
40785 | 1523 |
1524 (defun math-polynomial-base-rec (mpb-expr) | |
1525 (and (not (Math-objvecp mpb-expr)) | |
1526 (or (and (memq (car mpb-expr) '(+ - *)) | |
1527 (or (math-polynomial-base-rec (nth 1 mpb-expr)) | |
1528 (math-polynomial-base-rec (nth 2 mpb-expr)))) | |
1529 (and (memq (car mpb-expr) '(/ neg)) | |
1530 (math-polynomial-base-rec (nth 1 mpb-expr))) | |
1531 (and (eq (car mpb-expr) '^) | |
1532 (math-polynomial-base-rec (nth 1 mpb-expr))) | |
1533 (and (eq (car mpb-expr) 'calcFunc-exp) | |
1534 (math-polynomial-base-rec '(var e var-e))) | |
1535 (and (or const-ok (math-expr-contains-vars mpb-expr)) | |
1536 (funcall mpb-pred mpb-expr) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1537 mpb-expr)))) |
40785 | 1538 |
1539 ;;; Return non-nil if expr refers to any variables. | |
1540 (defun math-expr-contains-vars (expr) | |
1541 (or (eq (car-safe expr) 'var) | |
1542 (and (not (Math-primp expr)) | |
1543 (progn | |
1544 (while (and (setq expr (cdr expr)) | |
1545 (not (math-expr-contains-vars (car expr))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1546 expr)))) |
40785 | 1547 |
1548 ;;; Simplify a polynomial in list form by stripping off high-end zeros. | |
1549 ;;; This always leaves the constant part, i.e., nil->nil and nonnil->nonnil. | |
1550 (defun math-poly-simplify (p) | |
1551 (and p | |
1552 (if (Math-zerop (nth (1- (length p)) p)) | |
1553 (let ((pp (copy-sequence p))) | |
1554 (while (and (cdr pp) | |
1555 (Math-zerop (nth (1- (length pp)) pp))) | |
1556 (setcdr (nthcdr (- (length pp) 2) pp) nil)) | |
1557 pp) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1558 p))) |
40785 | 1559 |
1560 ;;; Compute ac*a + bc*b for polynomials in list form a, b and | |
1561 ;;; coefficients ac, bc. Result may be unsimplified. | |
1562 (defun math-poly-mix (a ac b bc) | |
1563 (and (or a b) | |
1564 (cons (math-add (math-mul (or (car a) 0) ac) | |
1565 (math-mul (or (car b) 0) bc)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1566 (math-poly-mix (cdr a) ac (cdr b) bc)))) |
40785 | 1567 |
1568 (defun math-poly-zerop (a) | |
1569 (or (null a) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1570 (and (null (cdr a)) (Math-zerop (car a))))) |
40785 | 1571 |
1572 ;;; Multiply two polynomials in list form. | |
1573 (defun math-poly-mul (a b) | |
1574 (and a b | |
1575 (math-poly-mix b (car a) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1576 (math-poly-mul (cdr a) (cons 0 b)) 1))) |
40785 | 1577 |
1578 ;;; Build an expression from a polynomial list. | |
1579 (defun math-build-polynomial-expr (p var) | |
1580 (if p | |
1581 (if (Math-numberp var) | |
1582 (math-with-extra-prec 1 | |
1583 (let* ((rp (reverse p)) | |
1584 (accum (car rp))) | |
1585 (while (setq rp (cdr rp)) | |
1586 (setq accum (math-add (car rp) (math-mul accum var)))) | |
1587 accum)) | |
1588 (let* ((rp (reverse p)) | |
1589 (n (1- (length rp))) | |
1590 (accum (math-mul (car rp) (math-pow var n))) | |
1591 term) | |
1592 (while (setq rp (cdr rp)) | |
1593 (setq n (1- n)) | |
1594 (or (math-zerop (car rp)) | |
1595 (setq accum (list (if (math-looks-negp (car rp)) '- '+) | |
1596 accum | |
1597 (math-mul (if (math-looks-negp (car rp)) | |
1598 (math-neg (car rp)) | |
1599 (car rp)) | |
1600 (math-pow var n)))))) | |
1601 accum)) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1602 0)) |
40785 | 1603 |
1604 | |
1605 (defun math-to-simple-fraction (f) | |
1606 (or (and (eq (car-safe f) 'float) | |
1607 (or (and (>= (nth 2 f) 0) | |
1608 (math-scale-int (nth 1 f) (nth 2 f))) | |
1609 (and (integerp (nth 1 f)) | |
1610 (> (nth 1 f) -1000) | |
1611 (< (nth 1 f) 1000) | |
1612 (math-make-frac (nth 1 f) | |
1613 (math-scale-int 1 (- (nth 2 f))))))) | |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1614 f)) |
40785 | 1615 |
41040
3e8874c2e70c
(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
1616 ;;; calc-alg.el ends here |