]> code.delx.au - gnu-emacs/blob - lisp/calc/calc-math.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / calc / calc-math.el
1 ;;; calc-math.el --- mathematical functions for Calc
2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com>
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 ;; This file is autoloaded from calc-ext.el.
31
32 (require 'calc-ext)
33 (require 'calc-macs)
34
35
36 ;;; Find out how many 9s in 9.9999... will give distinct Emacs floats,
37 ;;; then back off by one.
38
39 (defvar math-emacs-precision
40 (let* ((n 1)
41 (x 9)
42 (xx (+ x (* 9 (expt 10 (- n))))))
43 (while (/= x xx)
44 (progn
45 (setq n (1+ n))
46 (setq x xx)
47 (setq xx (+ x (* 9 (expt 10 (- n)))))))
48 (1- n))
49 "The number of digits in an Emacs float.")
50
51 ;;; Find the largest power of 10 which is an Emacs float,
52 ;;; then back off by one so that any float d.dddd...eN
53 ;;; is an Emacs float, for acceptable d.dddd....
54
55 (defvar math-largest-emacs-expt
56 (let ((x 1)
57 (pow 1e2))
58 ;; The following loop is for efficiency; it should stop when
59 ;; 10^(2x) is too large. This could be indicated by a range
60 ;; error when computing 10^(2x) or an infinite value for 10^(2x).
61 (while (and
62 pow
63 (< pow 1.0e+INF))
64 (setq x (* 2 x))
65 (setq pow (condition-case nil
66 (expt 10.0 (* 2 x))
67 (error nil))))
68 ;; The following loop should stop when 10^(x+1) is too large.
69 (setq pow (condition-case nil
70 (expt 10.0 (1+ x))
71 (error nil)))
72 (while (and
73 pow
74 (< pow 1.0e+INF))
75 (setq x (1+ x))
76 (setq pow (condition-case nil
77 (expt 10.0 (1+ x))
78 (error nil))))
79 (1- x))
80 "The largest exponent which Calc will convert to an Emacs float.")
81
82 (defvar math-smallest-emacs-expt
83 (let ((x -1))
84 (while (condition-case nil
85 (> (expt 10.0 x) 0.0)
86 (error nil))
87 (setq x (* 2 x)))
88 (setq x (/ x 2))
89 (while (condition-case nil
90 (> (expt 10.0 x) 0.0)
91 (error nil))
92 (setq x (1- x)))
93 (+ x 2))
94 "The smallest exponent which Calc will convert to an Emacs float.")
95
96 (defun math-use-emacs-fn (fn x)
97 "Use the native Emacs function FN to evaluate the Calc number X.
98 If this can't be done, return NIL."
99 (and
100 (<= calc-internal-prec math-emacs-precision)
101 (math-realp x)
102 (let* ((fx (math-float x))
103 (xpon (+ (nth 2 x) (1- (math-numdigs (nth 1 x))))))
104 (and (<= math-smallest-emacs-expt xpon)
105 (<= xpon math-largest-emacs-expt)
106 (condition-case nil
107 (math-read-number
108 (number-to-string
109 (funcall fn
110 (string-to-number (math-format-number (math-float x))))))
111 (error nil))))))
112
113 (defun calc-sqrt (arg)
114 (interactive "P")
115 (calc-slow-wrapper
116 (if (calc-is-inverse)
117 (calc-unary-op "^2" 'calcFunc-sqr arg)
118 (calc-unary-op "sqrt" 'calcFunc-sqrt arg))))
119
120 (defun calc-isqrt (arg)
121 (interactive "P")
122 (calc-slow-wrapper
123 (if (calc-is-inverse)
124 (calc-unary-op "^2" 'calcFunc-sqr arg)
125 (calc-unary-op "isqt" 'calcFunc-isqrt arg))))
126
127
128 (defun calc-hypot (arg)
129 (interactive "P")
130 (calc-slow-wrapper
131 (calc-binary-op "hypt" 'calcFunc-hypot arg)))
132
133 (defun calc-ln (arg)
134 (interactive "P")
135 (calc-invert-func)
136 (calc-exp arg))
137
138 (defun calc-log10 (arg)
139 (interactive "P")
140 (calc-hyperbolic-func)
141 (calc-ln arg))
142
143 (defun calc-log (arg)
144 (interactive "P")
145 (calc-slow-wrapper
146 (if (calc-is-inverse)
147 (calc-binary-op "alog" 'calcFunc-alog arg)
148 (calc-binary-op "log" 'calcFunc-log arg))))
149
150 (defun calc-ilog (arg)
151 (interactive "P")
152 (calc-slow-wrapper
153 (if (calc-is-inverse)
154 (calc-binary-op "alog" 'calcFunc-alog arg)
155 (calc-binary-op "ilog" 'calcFunc-ilog arg))))
156
157 (defun calc-lnp1 (arg)
158 (interactive "P")
159 (calc-invert-func)
160 (calc-expm1 arg))
161
162 (defun calc-exp (arg)
163 (interactive "P")
164 (calc-slow-wrapper
165 (if (calc-is-hyperbolic)
166 (if (calc-is-inverse)
167 (calc-unary-op "lg10" 'calcFunc-log10 arg)
168 (calc-unary-op "10^" 'calcFunc-exp10 arg))
169 (if (calc-is-inverse)
170 (calc-unary-op "ln" 'calcFunc-ln arg)
171 (calc-unary-op "exp" 'calcFunc-exp arg)))))
172
173 (defun calc-expm1 (arg)
174 (interactive "P")
175 (calc-slow-wrapper
176 (if (calc-is-inverse)
177 (calc-unary-op "ln+1" 'calcFunc-lnp1 arg)
178 (calc-unary-op "ex-1" 'calcFunc-expm1 arg))))
179
180 (defun calc-pi ()
181 (interactive)
182 (calc-slow-wrapper
183 (if (calc-is-inverse)
184 (if (calc-is-hyperbolic)
185 (if calc-symbolic-mode
186 (calc-pop-push-record 0 "phi" '(var phi var-phi))
187 (calc-pop-push-record 0 "phi" (math-phi)))
188 (if calc-symbolic-mode
189 (calc-pop-push-record 0 "gmma" '(var gamma var-gamma))
190 (calc-pop-push-record 0 "gmma" (math-gamma-const))))
191 (if (calc-is-hyperbolic)
192 (if calc-symbolic-mode
193 (calc-pop-push-record 0 "e" '(var e var-e))
194 (calc-pop-push-record 0 "e" (math-e)))
195 (if calc-symbolic-mode
196 (calc-pop-push-record 0 "pi" '(var pi var-pi))
197 (calc-pop-push-record 0 "pi" (math-pi)))))))
198
199 (defun calc-sin (arg)
200 (interactive "P")
201 (calc-slow-wrapper
202 (if (calc-is-hyperbolic)
203 (if (calc-is-inverse)
204 (calc-unary-op "asnh" 'calcFunc-arcsinh arg)
205 (calc-unary-op "sinh" 'calcFunc-sinh arg))
206 (if (calc-is-inverse)
207 (calc-unary-op "asin" 'calcFunc-arcsin arg)
208 (calc-unary-op "sin" 'calcFunc-sin arg)))))
209
210 (defun calc-arcsin (arg)
211 (interactive "P")
212 (calc-invert-func)
213 (calc-sin arg))
214
215 (defun calc-sinh (arg)
216 (interactive "P")
217 (calc-hyperbolic-func)
218 (calc-sin arg))
219
220 (defun calc-arcsinh (arg)
221 (interactive "P")
222 (calc-invert-func)
223 (calc-hyperbolic-func)
224 (calc-sin arg))
225
226 (defun calc-sec (arg)
227 (interactive "P")
228 (calc-slow-wrapper
229 (if (calc-is-hyperbolic)
230 (calc-unary-op "sech" 'calcFunc-sech arg)
231 (calc-unary-op "sec" 'calcFunc-sec arg))))
232
233 (defun calc-sech (arg)
234 (interactive "P")
235 (calc-hyperbolic-func)
236 (calc-sec arg))
237
238 (defun calc-cos (arg)
239 (interactive "P")
240 (calc-slow-wrapper
241 (if (calc-is-hyperbolic)
242 (if (calc-is-inverse)
243 (calc-unary-op "acsh" 'calcFunc-arccosh arg)
244 (calc-unary-op "cosh" 'calcFunc-cosh arg))
245 (if (calc-is-inverse)
246 (calc-unary-op "acos" 'calcFunc-arccos arg)
247 (calc-unary-op "cos" 'calcFunc-cos arg)))))
248
249 (defun calc-arccos (arg)
250 (interactive "P")
251 (calc-invert-func)
252 (calc-cos arg))
253
254 (defun calc-cosh (arg)
255 (interactive "P")
256 (calc-hyperbolic-func)
257 (calc-cos arg))
258
259 (defun calc-arccosh (arg)
260 (interactive "P")
261 (calc-invert-func)
262 (calc-hyperbolic-func)
263 (calc-cos arg))
264
265 (defun calc-csc (arg)
266 (interactive "P")
267 (calc-slow-wrapper
268 (if (calc-is-hyperbolic)
269 (calc-unary-op "csch" 'calcFunc-csch arg)
270 (calc-unary-op "csc" 'calcFunc-csc arg))))
271
272 (defun calc-csch (arg)
273 (interactive "P")
274 (calc-hyperbolic-func)
275 (calc-csc arg))
276
277 (defun calc-sincos ()
278 (interactive)
279 (calc-slow-wrapper
280 (if (calc-is-inverse)
281 (calc-enter-result 1 "asnc" (list 'calcFunc-arcsincos (calc-top-n 1)))
282 (calc-enter-result 1 "sncs" (list 'calcFunc-sincos (calc-top-n 1))))))
283
284 (defun calc-tan (arg)
285 (interactive "P")
286 (calc-slow-wrapper
287 (if (calc-is-hyperbolic)
288 (if (calc-is-inverse)
289 (calc-unary-op "atnh" 'calcFunc-arctanh arg)
290 (calc-unary-op "tanh" 'calcFunc-tanh arg))
291 (if (calc-is-inverse)
292 (calc-unary-op "atan" 'calcFunc-arctan arg)
293 (calc-unary-op "tan" 'calcFunc-tan arg)))))
294
295 (defun calc-arctan (arg)
296 (interactive "P")
297 (calc-invert-func)
298 (calc-tan arg))
299
300 (defun calc-tanh (arg)
301 (interactive "P")
302 (calc-hyperbolic-func)
303 (calc-tan arg))
304
305 (defun calc-arctanh (arg)
306 (interactive "P")
307 (calc-invert-func)
308 (calc-hyperbolic-func)
309 (calc-tan arg))
310
311 (defun calc-cot (arg)
312 (interactive "P")
313 (calc-slow-wrapper
314 (if (calc-is-hyperbolic)
315 (calc-unary-op "coth" 'calcFunc-coth arg)
316 (calc-unary-op "cot" 'calcFunc-cot arg))))
317
318 (defun calc-coth (arg)
319 (interactive "P")
320 (calc-hyperbolic-func)
321 (calc-cot arg))
322
323 (defun calc-arctan2 ()
324 (interactive)
325 (calc-slow-wrapper
326 (calc-enter-result 2 "atn2" (cons 'calcFunc-arctan2 (calc-top-list-n 2)))))
327
328 (defun calc-conj (arg)
329 (interactive "P")
330 (calc-wrapper
331 (calc-unary-op "conj" 'calcFunc-conj arg)))
332
333 (defun calc-imaginary ()
334 (interactive)
335 (calc-slow-wrapper
336 (calc-pop-push-record 1 "i*" (math-imaginary (calc-top-n 1)))))
337
338 (defun calc-to-degrees (arg)
339 (interactive "P")
340 (calc-wrapper
341 (calc-unary-op ">deg" 'calcFunc-deg arg)))
342
343 (defun calc-to-radians (arg)
344 (interactive "P")
345 (calc-wrapper
346 (calc-unary-op ">rad" 'calcFunc-rad arg)))
347
348
349 (defun calc-degrees-mode (arg)
350 (interactive "p")
351 (cond ((= arg 1)
352 (calc-wrapper
353 (calc-change-mode 'calc-angle-mode 'deg)
354 (message "Angles measured in degrees")))
355 ((= arg 2) (calc-radians-mode))
356 ((= arg 3) (calc-hms-mode))
357 (t (error "Prefix argument out of range"))))
358
359 (defun calc-radians-mode ()
360 (interactive)
361 (calc-wrapper
362 (calc-change-mode 'calc-angle-mode 'rad)
363 (message "Angles measured in radians")))
364
365
366 ;;; Compute the integer square-root floor(sqrt(A)). A > 0. [I I] [Public]
367 ;;; This method takes advantage of the fact that Newton's method starting
368 ;;; with an overestimate always works, even using truncating integer division!
369 (defun math-isqrt (a)
370 (cond ((Math-zerop a) a)
371 ((not (math-natnump a))
372 (math-reject-arg a 'natnump))
373 ((integerp a)
374 (math-isqrt-small a))
375 (t
376 (math-normalize (cons 'bigpos (cdr (math-isqrt-bignum (cdr a))))))))
377
378 (defun calcFunc-isqrt (a)
379 (if (math-realp a)
380 (math-isqrt (math-floor a))
381 (math-floor (math-sqrt a))))
382
383
384 ;;; This returns (flag . result) where the flag is t if A is a perfect square.
385 (defun math-isqrt-bignum (a) ; [P.l L]
386 (let ((len (length a)))
387 (if (= (% len 2) 0)
388 (let* ((top (nthcdr (- len 2) a)))
389 (math-isqrt-bignum-iter
390 a
391 (math-scale-bignum-digit-size
392 (math-bignum-big
393 (1+ (math-isqrt-small
394 (+ (* (nth 1 top) math-bignum-digit-size) (car top)))))
395 (1- (/ len 2)))))
396 (let* ((top (nth (1- len) a)))
397 (math-isqrt-bignum-iter
398 a
399 (math-scale-bignum-digit-size
400 (list (1+ (math-isqrt-small top)))
401 (/ len 2)))))))
402
403 (defun math-isqrt-bignum-iter (a guess) ; [l L l]
404 (math-working "isqrt" (cons 'bigpos guess))
405 (let* ((q (math-div-bignum a guess))
406 (s (math-add-bignum (car q) guess))
407 (g2 (math-div2-bignum s))
408 (comp (math-compare-bignum g2 guess)))
409 (if (< comp 0)
410 (math-isqrt-bignum-iter a g2)
411 (cons (and (= comp 0)
412 (math-zerop-bignum (cdr q))
413 (= (% (car s) 2) 0))
414 guess))))
415
416 (defun math-zerop-bignum (a)
417 (and (eq (car a) 0)
418 (progn
419 (while (eq (car (setq a (cdr a))) 0))
420 (null a))))
421
422 (defun math-scale-bignum-digit-size (a n) ; [L L S]
423 (while (> n 0)
424 (setq a (cons 0 a)
425 n (1- n)))
426 a)
427
428 (defun math-isqrt-small (a) ; A > 0. [S S]
429 (let ((g (cond ((>= a 1000000) 10000)
430 ((>= a 10000) 1000)
431 ((>= a 100) 100)
432 (t 10)))
433 g2)
434 (while (< (setq g2 (/ (+ g (/ a g)) 2)) g)
435 (setq g g2))
436 g))
437
438
439
440
441 ;;; Compute the square root of a number.
442 ;;; [T N] if possible, else [F N] if possible, else [C N]. [Public]
443 (defun math-sqrt (a)
444 (or
445 (and (Math-zerop a) a)
446 (and (math-known-nonposp a)
447 (math-imaginary (math-sqrt (math-neg a))))
448 (and (integerp a)
449 (let ((sqrt (math-isqrt-small a)))
450 (if (= (* sqrt sqrt) a)
451 sqrt
452 (if calc-symbolic-mode
453 (list 'calcFunc-sqrt a)
454 (math-sqrt-float (math-float a) (math-float sqrt))))))
455 (and (eq (car-safe a) 'bigpos)
456 (let* ((res (math-isqrt-bignum (cdr a)))
457 (sqrt (math-normalize (cons 'bigpos (cdr res)))))
458 (if (car res)
459 sqrt
460 (if calc-symbolic-mode
461 (list 'calcFunc-sqrt a)
462 (math-sqrt-float (math-float a) (math-float sqrt))))))
463 (and (eq (car-safe a) 'frac)
464 (let* ((num-res (math-isqrt-bignum (cdr (Math-bignum-test (nth 1 a)))))
465 (num-sqrt (math-normalize (cons 'bigpos (cdr num-res))))
466 (den-res (math-isqrt-bignum (cdr (Math-bignum-test (nth 2 a)))))
467 (den-sqrt (math-normalize (cons 'bigpos (cdr den-res)))))
468 (if (and (car num-res) (car den-res))
469 (list 'frac num-sqrt den-sqrt)
470 (if calc-symbolic-mode
471 (if (or (car num-res) (car den-res))
472 (math-div (if (car num-res)
473 num-sqrt (list 'calcFunc-sqrt (nth 1 a)))
474 (if (car den-res)
475 den-sqrt (list 'calcFunc-sqrt (nth 2 a))))
476 (list 'calcFunc-sqrt a))
477 (math-sqrt-float (math-float a)
478 (math-div (math-float num-sqrt) den-sqrt))))))
479 (and (eq (car-safe a) 'float)
480 (if calc-symbolic-mode
481 (if (= (% (nth 2 a) 2) 0)
482 (let ((res (math-isqrt-bignum
483 (cdr (Math-bignum-test (nth 1 a))))))
484 (if (car res)
485 (math-make-float (math-normalize
486 (cons 'bigpos (cdr res)))
487 (/ (nth 2 a) 2))
488 (signal 'inexact-result nil)))
489 (signal 'inexact-result nil))
490 (math-sqrt-float a)))
491 (and (eq (car-safe a) 'cplx)
492 (math-with-extra-prec 2
493 (let* ((d (math-abs a))
494 (imag (math-sqrt (math-mul (math-sub d (nth 1 a))
495 '(float 5 -1)))))
496 (list 'cplx
497 (math-sqrt (math-mul (math-add d (nth 1 a)) '(float 5 -1)))
498 (if (math-negp (nth 2 a)) (math-neg imag) imag)))))
499 (and (eq (car-safe a) 'polar)
500 (list 'polar
501 (math-sqrt (nth 1 a))
502 (math-mul (nth 2 a) '(float 5 -1))))
503 (and (eq (car-safe a) 'sdev)
504 (let ((sqrt (math-sqrt (nth 1 a))))
505 (math-make-sdev sqrt
506 (math-div (nth 2 a) (math-mul sqrt 2)))))
507 (and (eq (car-safe a) 'intv)
508 (not (math-negp (nth 2 a)))
509 (math-make-intv (nth 1 a) (math-sqrt (nth 2 a)) (math-sqrt (nth 3 a))))
510 (and (eq (car-safe a) '*)
511 (or (math-known-nonnegp (nth 1 a))
512 (math-known-nonnegp (nth 2 a)))
513 (math-mul (math-sqrt (nth 1 a)) (math-sqrt (nth 2 a))))
514 (and (eq (car-safe a) '/)
515 (or (and (math-known-nonnegp (nth 2 a))
516 (math-div (math-sqrt (nth 1 a)) (math-sqrt (nth 2 a))))
517 (and (math-known-nonnegp (nth 1 a))
518 (not (math-equal-int (nth 1 a) 1))
519 (math-mul (math-sqrt (nth 1 a))
520 (math-sqrt (math-div 1 (nth 2 a)))))))
521 (and (eq (car-safe a) '^)
522 (math-known-evenp (nth 2 a))
523 (math-known-realp (nth 1 a))
524 (math-abs (math-pow (nth 1 a) (math-div (nth 2 a) 2))))
525 (let ((inf (math-infinitep a)))
526 (and inf
527 (math-mul (math-sqrt (math-infinite-dir a inf)) inf)))
528 (progn
529 (calc-record-why 'numberp a)
530 (list 'calcFunc-sqrt a))))
531 (defalias 'calcFunc-sqrt 'math-sqrt)
532
533 (defun math-infinite-dir (a &optional inf)
534 (or inf (setq inf (math-infinitep a)))
535 (math-normalize (math-expr-subst a inf 1)))
536
537 (defun math-sqrt-float (a &optional guess) ; [F F F]
538 (if calc-symbolic-mode
539 (signal 'inexact-result nil)
540 (math-with-extra-prec 1 (math-sqrt-raw a guess))))
541
542 (defun math-sqrt-raw (a &optional guess) ; [F F F]
543 (if (not (Math-posp a))
544 (math-sqrt a)
545 (cond
546 ((math-use-emacs-fn 'sqrt a))
547 (t
548 (if (null guess)
549 (let ((ldiff (- (math-numdigs (nth 1 a)) 6)))
550 (or (= (% (+ (nth 2 a) ldiff) 2) 0) (setq ldiff (1+ ldiff)))
551 (setq guess (math-make-float (math-isqrt-small
552 (math-scale-int (nth 1 a) (- ldiff)))
553 (/ (+ (nth 2 a) ldiff) 2)))))
554 (math-sqrt-float-iter a guess)))))
555
556 (defun math-sqrt-float-iter (a guess) ; [F F F]
557 (math-working "sqrt" guess)
558 (let ((g2 (math-mul-float (math-add-float guess (math-div-float a guess))
559 '(float 5 -1))))
560 (if (math-nearly-equal-float g2 guess)
561 g2
562 (math-sqrt-float-iter a g2))))
563
564 ;;; True if A and B differ only in the last digit of precision. [P F F]
565 (defun math-nearly-equal-float (a b)
566 (let ((ediff (- (nth 2 a) (nth 2 b))))
567 (cond ((= ediff 0) ;; Expanded out for speed
568 (setq ediff (math-add (Math-integer-neg (nth 1 a)) (nth 1 b)))
569 (or (eq ediff 0)
570 (and (not (consp ediff))
571 (< ediff 10)
572 (> ediff -10)
573 (= (math-numdigs (nth 1 a)) calc-internal-prec))))
574 ((= ediff 1)
575 (setq ediff (math-add (Math-integer-neg (nth 1 b))
576 (math-scale-int (nth 1 a) 1)))
577 (and (not (consp ediff))
578 (< ediff 10)
579 (> ediff -10)
580 (= (math-numdigs (nth 1 b)) calc-internal-prec)))
581 ((= ediff -1)
582 (setq ediff (math-add (Math-integer-neg (nth 1 a))
583 (math-scale-int (nth 1 b) 1)))
584 (and (not (consp ediff))
585 (< ediff 10)
586 (> ediff -10)
587 (= (math-numdigs (nth 1 a)) calc-internal-prec))))))
588
589 (defun math-nearly-equal (a b) ; [P N N] [Public]
590 (setq a (math-float a))
591 (setq b (math-float b))
592 (if (eq (car a) 'polar) (setq a (math-complex a)))
593 (if (eq (car b) 'polar) (setq b (math-complex b)))
594 (if (eq (car a) 'cplx)
595 (if (eq (car b) 'cplx)
596 (and (or (math-nearly-equal-float (nth 1 a) (nth 1 b))
597 (and (math-nearly-zerop-float (nth 1 a) (nth 2 a))
598 (math-nearly-zerop-float (nth 1 b) (nth 2 b))))
599 (or (math-nearly-equal-float (nth 2 a) (nth 2 b))
600 (and (math-nearly-zerop-float (nth 2 a) (nth 1 a))
601 (math-nearly-zerop-float (nth 2 b) (nth 1 b)))))
602 (and (math-nearly-equal-float (nth 1 a) b)
603 (math-nearly-zerop-float (nth 2 a) b)))
604 (if (eq (car b) 'cplx)
605 (and (math-nearly-equal-float a (nth 1 b))
606 (math-nearly-zerop-float a (nth 2 b)))
607 (math-nearly-equal-float a b))))
608
609 ;;; True if A is nearly zero compared to B. [P F F]
610 (defun math-nearly-zerop-float (a b)
611 (or (eq (nth 1 a) 0)
612 (<= (+ (math-numdigs (nth 1 a)) (nth 2 a))
613 (1+ (- (+ (math-numdigs (nth 1 b)) (nth 2 b)) calc-internal-prec)))))
614
615 (defun math-nearly-zerop (a b) ; [P N R] [Public]
616 (setq a (math-float a))
617 (setq b (math-float b))
618 (if (eq (car a) 'cplx)
619 (and (math-nearly-zerop-float (nth 1 a) b)
620 (math-nearly-zerop-float (nth 2 a) b))
621 (if (eq (car a) 'polar)
622 (math-nearly-zerop-float (nth 1 a) b)
623 (math-nearly-zerop-float a b))))
624
625 ;;; This implementation could be improved, accuracy-wise.
626 (defun math-hypot (a b)
627 (cond ((Math-zerop a) (math-abs b))
628 ((Math-zerop b) (math-abs a))
629 ((not (Math-scalarp a))
630 (if (math-infinitep a)
631 (if (math-infinitep b)
632 (if (equal a b)
633 a
634 '(var nan var-nan))
635 a)
636 (calc-record-why 'scalarp a)
637 (list 'calcFunc-hypot a b)))
638 ((not (Math-scalarp b))
639 (if (math-infinitep b)
640 b
641 (calc-record-why 'scalarp b)
642 (list 'calcFunc-hypot a b)))
643 ((and (Math-numberp a) (Math-numberp b))
644 (math-with-extra-prec 1
645 (math-sqrt (math-add (calcFunc-abssqr a) (calcFunc-abssqr b)))))
646 ((eq (car-safe a) 'hms)
647 (if (eq (car-safe b) 'hms) ; this helps sdev's of hms forms
648 (math-to-hms (math-hypot (math-from-hms a 'deg)
649 (math-from-hms b 'deg)))
650 (math-to-hms (math-hypot (math-from-hms a 'deg) b))))
651 ((eq (car-safe b) 'hms)
652 (math-to-hms (math-hypot a (math-from-hms b 'deg))))
653 (t nil)))
654 (defalias 'calcFunc-hypot 'math-hypot)
655
656 (defun calcFunc-sqr (x)
657 (math-pow x 2))
658
659
660
661 (defun math-nth-root (a n)
662 (cond ((= n 2) (math-sqrt a))
663 ((Math-zerop a) a)
664 ((Math-negp a) nil)
665 ((Math-integerp a)
666 (let ((root (math-nth-root-integer a n)))
667 (if (car root)
668 (cdr root)
669 (and (not calc-symbolic-mode)
670 (math-nth-root-float (math-float a) n
671 (math-float (cdr root)))))))
672 ((eq (car-safe a) 'frac)
673 (let* ((num-root (math-nth-root-integer (nth 1 a) n))
674 (den-root (math-nth-root-integer (nth 2 a) n)))
675 (if (and (car num-root) (car den-root))
676 (list 'frac (cdr num-root) (cdr den-root))
677 (and (not calc-symbolic-mode)
678 (math-nth-root-float
679 (math-float a) n
680 (math-div-float (math-float (cdr num-root))
681 (math-float (cdr den-root))))))))
682 ((eq (car-safe a) 'float)
683 (and (not calc-symbolic-mode)
684 (math-nth-root-float a n)))
685 ((eq (car-safe a) 'polar)
686 (let ((root (math-nth-root (nth 1 a) n)))
687 (and root (list 'polar root (math-div (nth 2 a) n)))))
688 (t nil)))
689
690 ;; The variables math-nrf-n, math-nrf-nf and math-nrf-nfm1 are local
691 ;; to math-nth-root-float, but are used by math-nth-root-float-iter,
692 ;; which is called by math-nth-root-float.
693 (defvar math-nrf-n)
694 (defvar math-nrf-nf)
695 (defvar math-nrf-nfm1)
696
697 (defun math-nth-root-float (a math-nrf-n &optional guess)
698 (math-inexact-result)
699 (math-with-extra-prec 1
700 (let ((math-nrf-nf (math-float math-nrf-n))
701 (math-nrf-nfm1 (math-float (1- math-nrf-n))))
702 (math-nth-root-float-iter a (or guess
703 (math-make-float
704 1 (/ (+ (math-numdigs (nth 1 a))
705 (nth 2 a)
706 (/ math-nrf-n 2))
707 math-nrf-n)))))))
708
709 (defun math-nth-root-float-iter (a guess)
710 (math-working "root" guess)
711 (let ((g2 (math-div-float (math-add-float (math-mul math-nrf-nfm1 guess)
712 (math-div-float
713 a (math-ipow guess (1- math-nrf-n))))
714 math-nrf-nf)))
715 (if (math-nearly-equal-float g2 guess)
716 g2
717 (math-nth-root-float-iter a g2))))
718
719 ;; The variable math-nri-n is local to math-nth-root-integer, but
720 ;; is used by math-nth-root-int-iter, which is called by
721 ;; math-nth-root-int.
722 (defvar math-nri-n)
723
724 (defun math-nth-root-integer (a math-nri-n &optional guess) ; [I I S]
725 (math-nth-root-int-iter a (or guess
726 (math-scale-int 1 (/ (+ (math-numdigs a)
727 (1- math-nri-n))
728 math-nri-n)))))
729
730 (defun math-nth-root-int-iter (a guess)
731 (math-working "root" guess)
732 (let* ((q (math-idivmod a (math-ipow guess (1- math-nri-n))))
733 (s (math-add (car q) (math-mul (1- math-nri-n) guess)))
734 (g2 (math-idivmod s math-nri-n)))
735 (if (Math-natnum-lessp (car g2) guess)
736 (math-nth-root-int-iter a (car g2))
737 (cons (and (equal (car g2) guess)
738 (eq (cdr q) 0)
739 (eq (cdr g2) 0))
740 guess))))
741
742 (defun calcFunc-nroot (x n)
743 (calcFunc-pow x (if (integerp n)
744 (math-make-frac 1 n)
745 (math-div 1 n))))
746
747
748
749
750 ;;;; Transcendental functions.
751
752 ;;; All of these functions are defined on the complex plane.
753 ;;; (Branch cuts, etc. follow Steele's Common Lisp book.)
754
755 ;;; Most functions increase calc-internal-prec by 2 digits, then round
756 ;;; down afterward. "-raw" functions use the current precision, require
757 ;;; their arguments to be in float (or complex float) format, and always
758 ;;; work in radians (where applicable).
759
760 (defun math-to-radians (a) ; [N N]
761 (cond ((eq (car-safe a) 'hms)
762 (math-from-hms a 'rad))
763 ((memq calc-angle-mode '(deg hms))
764 (math-mul a (math-pi-over-180)))
765 (t a)))
766
767 (defun math-from-radians (a) ; [N N]
768 (cond ((eq calc-angle-mode 'deg)
769 (if (math-constp a)
770 (math-div a (math-pi-over-180))
771 (list 'calcFunc-deg a)))
772 ((eq calc-angle-mode 'hms)
773 (math-to-hms a 'rad))
774 (t a)))
775
776 (defun math-to-radians-2 (a) ; [N N]
777 (cond ((eq (car-safe a) 'hms)
778 (math-from-hms a 'rad))
779 ((memq calc-angle-mode '(deg hms))
780 (if calc-symbolic-mode
781 (math-div (math-mul a '(var pi var-pi)) 180)
782 (math-mul a (math-pi-over-180))))
783 (t a)))
784
785 (defun math-from-radians-2 (a) ; [N N]
786 (cond ((memq calc-angle-mode '(deg hms))
787 (if calc-symbolic-mode
788 (math-div (math-mul 180 a) '(var pi var-pi))
789 (math-div a (math-pi-over-180))))
790 (t a)))
791
792
793
794 ;;; Sine, cosine, and tangent.
795
796 (defun calcFunc-sin (x) ; [N N] [Public]
797 (cond ((and (integerp x)
798 (if (eq calc-angle-mode 'deg)
799 (= (% x 90) 0)
800 (= x 0)))
801 (aref [0 1 0 -1] (math-mod (/ x 90) 4)))
802 ((Math-scalarp x)
803 (math-with-extra-prec 2
804 (math-sin-raw (math-to-radians (math-float x)))))
805 ((eq (car x) 'sdev)
806 (if (math-constp x)
807 (math-with-extra-prec 2
808 (let* ((xx (math-to-radians (math-float (nth 1 x))))
809 (xs (math-to-radians (math-float (nth 2 x))))
810 (sc (math-sin-cos-raw xx)))
811 (math-make-sdev (car sc) (math-mul xs (cdr sc)))))
812 (math-make-sdev (calcFunc-sin (nth 1 x))
813 (math-mul (nth 2 x) (calcFunc-cos (nth 1 x))))))
814 ((and (eq (car x) 'intv) (math-intv-constp x))
815 (calcFunc-cos (math-sub x (math-quarter-circle nil))))
816 ((equal x '(var nan var-nan))
817 x)
818 (t (calc-record-why 'scalarp x)
819 (list 'calcFunc-sin x))))
820
821 (defun calcFunc-cos (x) ; [N N] [Public]
822 (cond ((and (integerp x)
823 (if (eq calc-angle-mode 'deg)
824 (= (% x 90) 0)
825 (= x 0)))
826 (aref [1 0 -1 0] (math-mod (/ x 90) 4)))
827 ((Math-scalarp x)
828 (math-with-extra-prec 2
829 (math-cos-raw (math-to-radians (math-float x)))))
830 ((eq (car x) 'sdev)
831 (if (math-constp x)
832 (math-with-extra-prec 2
833 (let* ((xx (math-to-radians (math-float (nth 1 x))))
834 (xs (math-to-radians (math-float (nth 2 x))))
835 (sc (math-sin-cos-raw xx)))
836 (math-make-sdev (cdr sc) (math-mul xs (car sc)))))
837 (math-make-sdev (calcFunc-cos (nth 1 x))
838 (math-mul (nth 2 x) (calcFunc-sin (nth 1 x))))))
839 ((and (eq (car x) 'intv) (math-intv-constp x))
840 (math-with-extra-prec 2
841 (let* ((xx (math-to-radians (math-float x)))
842 (na (math-floor (math-div (nth 2 xx) (math-pi))))
843 (nb (math-floor (math-div (nth 3 xx) (math-pi))))
844 (span (math-sub nb na)))
845 (if (memq span '(0 1))
846 (let ((int (math-sort-intv (nth 1 x)
847 (math-cos-raw (nth 2 xx))
848 (math-cos-raw (nth 3 xx)))))
849 (if (eq span 1)
850 (if (math-evenp na)
851 (math-make-intv (logior (nth 1 x) 2)
852 -1
853 (nth 3 int))
854 (math-make-intv (logior (nth 1 x) 1)
855 (nth 2 int)
856 1))
857 int))
858 (list 'intv 3 -1 1)))))
859 ((equal x '(var nan var-nan))
860 x)
861 (t (calc-record-why 'scalarp x)
862 (list 'calcFunc-cos x))))
863
864 (defun calcFunc-sincos (x) ; [V N] [Public]
865 (if (Math-scalarp x)
866 (math-with-extra-prec 2
867 (let ((sc (math-sin-cos-raw (math-to-radians (math-float x)))))
868 (list 'vec (cdr sc) (car sc)))) ; the vector [cos, sin]
869 (list 'vec (calcFunc-sin x) (calcFunc-cos x))))
870
871 (defun calcFunc-tan (x) ; [N N] [Public]
872 (cond ((and (integerp x)
873 (if (eq calc-angle-mode 'deg)
874 (= (% x 180) 0)
875 (= x 0)))
876 0)
877 ((Math-scalarp x)
878 (math-with-extra-prec 2
879 (math-tan-raw (math-to-radians (math-float x)))))
880 ((eq (car x) 'sdev)
881 (if (math-constp x)
882 (math-with-extra-prec 2
883 (let* ((xx (math-to-radians (math-float (nth 1 x))))
884 (xs (math-to-radians (math-float (nth 2 x))))
885 (sc (math-sin-cos-raw xx)))
886 (if (and (math-zerop (cdr sc)) (not calc-infinite-mode))
887 (progn
888 (calc-record-why "*Division by zero")
889 (list 'calcFunc-tan x))
890 (math-make-sdev (math-div-float (car sc) (cdr sc))
891 (math-div-float xs (math-sqr (cdr sc)))))))
892 (math-make-sdev (calcFunc-tan (nth 1 x))
893 (math-div (nth 2 x)
894 (math-sqr (calcFunc-cos (nth 1 x)))))))
895 ((and (eq (car x) 'intv) (math-intv-constp x))
896 (or (math-with-extra-prec 2
897 (let* ((xx (math-to-radians (math-float x)))
898 (na (math-floor (math-div (math-sub (nth 2 xx)
899 (math-pi-over-2))
900 (math-pi))))
901 (nb (math-floor (math-div (math-sub (nth 3 xx)
902 (math-pi-over-2))
903 (math-pi)))))
904 (and (equal na nb)
905 (math-sort-intv (nth 1 x)
906 (math-tan-raw (nth 2 xx))
907 (math-tan-raw (nth 3 xx))))))
908 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))))
909 ((equal x '(var nan var-nan))
910 x)
911 (t (calc-record-why 'scalarp x)
912 (list 'calcFunc-tan x))))
913
914 (defun calcFunc-sec (x)
915 (cond ((and (integerp x)
916 (eq calc-angle-mode 'deg)
917 (= (% x 180) 0))
918 (if (= (% x 360) 0)
919 1
920 -1))
921 ((and (integerp x)
922 (eq calc-angle-mode 'rad)
923 (= x 0))
924 1)
925 ((Math-scalarp x)
926 (math-with-extra-prec 2
927 (math-sec-raw (math-to-radians (math-float x)))))
928 ((eq (car x) 'sdev)
929 (if (math-constp x)
930 (math-with-extra-prec 2
931 (let* ((xx (math-to-radians (math-float (nth 1 x))))
932 (xs (math-to-radians (math-float (nth 2 x))))
933 (sc (math-sin-cos-raw xx)))
934 (if (and (math-zerop (cdr sc))
935 (not calc-infinite-mode))
936 (progn
937 (calc-record-why "*Division by zero")
938 (list 'calcFunc-sec x))
939 (math-make-sdev (math-div-float '(float 1 0) (cdr sc))
940 (math-div-float
941 (math-mul xs (car sc))
942 (math-sqr (cdr sc)))))))
943 (math-make-sdev (calcFunc-sec (nth 1 x))
944 (math-div
945 (math-mul (nth 2 x)
946 (calcFunc-sin (nth 1 x)))
947 (math-sqr (calcFunc-cos (nth 1 x)))))))
948 ((and (eq (car x) 'intv)
949 (math-intv-constp x))
950 (math-with-extra-prec 2
951 (let* ((xx (math-to-radians (math-float x)))
952 (na (math-floor (math-div (math-sub (nth 2 xx)
953 (math-pi-over-2))
954 (math-pi))))
955 (nb (math-floor (math-div (math-sub (nth 3 xx)
956 (math-pi-over-2))
957 (math-pi))))
958 (naa (math-floor (math-div (nth 2 xx) (math-pi-over-2))))
959 (nbb (math-floor (math-div (nth 3 xx) (math-pi-over-2))))
960 (span (math-sub nbb naa)))
961 (if (not (equal na nb))
962 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))
963 (let ((int (math-sort-intv (nth 1 x)
964 (math-sec-raw (nth 2 xx))
965 (math-sec-raw (nth 3 xx)))))
966 (if (eq span 1)
967 (if (math-evenp (math-div (math-add naa 1) 2))
968 (math-make-intv (logior (nth 1 int) 2)
969 1
970 (nth 3 int))
971 (math-make-intv (logior (nth 1 int) 1)
972 (nth 2 int)
973 -1))
974 int))))))
975 ((equal x '(var nan var-nan))
976 x)
977 (t (calc-record-why 'scalarp x)
978 (list 'calcFunc-sec x))))
979
980 (defun calcFunc-csc (x)
981 (cond ((and (integerp x)
982 (eq calc-angle-mode 'deg)
983 (= (% (- x 90) 180) 0))
984 (if (= (% (- x 90) 360) 0)
985 1
986 -1))
987 ((Math-scalarp x)
988 (math-with-extra-prec 2
989 (math-csc-raw (math-to-radians (math-float x)))))
990 ((eq (car x) 'sdev)
991 (if (math-constp x)
992 (math-with-extra-prec 2
993 (let* ((xx (math-to-radians (math-float (nth 1 x))))
994 (xs (math-to-radians (math-float (nth 2 x))))
995 (sc (math-sin-cos-raw xx)))
996 (if (and (math-zerop (car sc))
997 (not calc-infinite-mode))
998 (progn
999 (calc-record-why "*Division by zero")
1000 (list 'calcFunc-csc x))
1001 (math-make-sdev (math-div-float '(float 1 0) (car sc))
1002 (math-div-float
1003 (math-mul xs (cdr sc))
1004 (math-sqr (car sc)))))))
1005 (math-make-sdev (calcFunc-csc (nth 1 x))
1006 (math-div
1007 (math-mul (nth 2 x)
1008 (calcFunc-cos (nth 1 x)))
1009 (math-sqr (calcFunc-sin (nth 1 x)))))))
1010 ((and (eq (car x) 'intv)
1011 (math-intv-constp x))
1012 (math-with-extra-prec 2
1013 (let* ((xx (math-to-radians (math-float x)))
1014 (na (math-floor (math-div (nth 2 xx) (math-pi))))
1015 (nb (math-floor (math-div (nth 3 xx) (math-pi))))
1016 (naa (math-floor (math-div (nth 2 xx) (math-pi-over-2))))
1017 (nbb (math-floor (math-div (nth 3 xx) (math-pi-over-2))))
1018 (span (math-sub nbb naa)))
1019 (if (not (equal na nb))
1020 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))
1021 (let ((int (math-sort-intv (nth 1 x)
1022 (math-csc-raw (nth 2 xx))
1023 (math-csc-raw (nth 3 xx)))))
1024 (if (eq span 1)
1025 (if (math-evenp (math-div naa 2))
1026 (math-make-intv (logior (nth 1 int) 2)
1027 1
1028 (nth 3 int))
1029 (math-make-intv (logior (nth 1 int) 1)
1030 (nth 2 int)
1031 -1))
1032 int))))))
1033 ((equal x '(var nan var-nan))
1034 x)
1035 (t (calc-record-why 'scalarp x)
1036 (list 'calcFunc-csc x))))
1037
1038 (defun calcFunc-cot (x) ; [N N] [Public]
1039 (cond ((and (integerp x)
1040 (if (eq calc-angle-mode 'deg)
1041 (= (% (- x 90) 180) 0)
1042 (= x 0)))
1043 0)
1044 ((Math-scalarp x)
1045 (math-with-extra-prec 2
1046 (math-cot-raw (math-to-radians (math-float x)))))
1047 ((eq (car x) 'sdev)
1048 (if (math-constp x)
1049 (math-with-extra-prec 2
1050 (let* ((xx (math-to-radians (math-float (nth 1 x))))
1051 (xs (math-to-radians (math-float (nth 2 x))))
1052 (sc (math-sin-cos-raw xx)))
1053 (if (and (math-zerop (car sc)) (not calc-infinite-mode))
1054 (progn
1055 (calc-record-why "*Division by zero")
1056 (list 'calcFunc-cot x))
1057 (math-make-sdev (math-div-float (cdr sc) (car sc))
1058 (math-div-float xs (math-sqr (car sc)))))))
1059 (math-make-sdev (calcFunc-cot (nth 1 x))
1060 (math-div (nth 2 x)
1061 (math-sqr (calcFunc-sin (nth 1 x)))))))
1062 ((and (eq (car x) 'intv) (math-intv-constp x))
1063 (or (math-with-extra-prec 2
1064 (let* ((xx (math-to-radians (math-float x)))
1065 (na (math-floor (math-div (nth 2 xx) (math-pi))))
1066 (nb (math-floor (math-div (nth 3 xx) (math-pi)))))
1067 (and (equal na nb)
1068 (math-sort-intv (nth 1 x)
1069 (math-cot-raw (nth 2 xx))
1070 (math-cot-raw (nth 3 xx))))))
1071 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))))
1072 ((equal x '(var nan var-nan))
1073 x)
1074 (t (calc-record-why 'scalarp x)
1075 (list 'calcFunc-cot x))))
1076
1077 (defun math-sin-raw (x) ; [N N]
1078 (cond ((eq (car x) 'cplx)
1079 (let* ((expx (math-exp-raw (nth 2 x)))
1080 (expmx (math-div-float '(float 1 0) expx))
1081 (sc (math-sin-cos-raw (nth 1 x))))
1082 (list 'cplx
1083 (math-mul-float (car sc)
1084 (math-mul-float (math-add-float expx expmx)
1085 '(float 5 -1)))
1086 (math-mul-float (cdr sc)
1087 (math-mul-float (math-sub-float expx expmx)
1088 '(float 5 -1))))))
1089 ((eq (car x) 'polar)
1090 (math-polar (math-sin-raw (math-complex x))))
1091 ((Math-integer-negp (nth 1 x))
1092 (math-neg-float (math-sin-raw (math-neg-float x))))
1093 ((math-lessp-float '(float 7 0) x) ; avoid inf loops due to roundoff
1094 (math-sin-raw (math-mod x (math-two-pi))))
1095 (t (math-sin-raw-2 x x))))
1096
1097 (defun math-cos-raw (x) ; [N N]
1098 (if (eq (car-safe x) 'polar)
1099 (math-polar (math-cos-raw (math-complex x)))
1100 (math-sin-raw (math-sub (math-pi-over-2) x))))
1101
1102 (defun math-sec-raw (x) ; [N N]
1103 (cond ((eq (car x) 'cplx)
1104 (let* ((x (math-mul x '(float 1 0)))
1105 (expx (math-exp-raw (nth 2 x)))
1106 (expmx (math-div-float '(float 1 0) expx))
1107 (sh (math-mul-float (math-sub-float expx expmx) '(float 5 -1)))
1108 (ch (math-mul-float (math-add-float expx expmx) '(float 5 -1)))
1109 (sc (math-sin-cos-raw (nth 1 x)))
1110 (d (math-add-float
1111 (math-mul-float (math-sqr (car sc))
1112 (math-sqr sh))
1113 (math-mul-float (math-sqr (cdr sc))
1114 (math-sqr ch)))))
1115 (and (not (eq (nth 1 d) 0))
1116 (list 'cplx
1117 (math-div-float (math-mul-float (cdr sc) ch) d)
1118 (math-div-float (math-mul-float (car sc) sh) d)))))
1119 ((eq (car x) 'polar)
1120 (math-polar (math-sec-raw (math-complex x))))
1121 (t
1122 (let ((cs (math-cos-raw x)))
1123 (if (eq cs 0)
1124 (math-div 1 0)
1125 (math-div-float '(float 1 0) cs))))))
1126
1127 (defun math-csc-raw (x) ; [N N]
1128 (cond ((eq (car x) 'cplx)
1129 (let* ((x (math-mul x '(float 1 0)))
1130 (expx (math-exp-raw (nth 2 x)))
1131 (expmx (math-div-float '(float 1 0) expx))
1132 (sh (math-mul-float (math-sub-float expx expmx) '(float 5 -1)))
1133 (ch (math-mul-float (math-add-float expx expmx) '(float 5 -1)))
1134 (sc (math-sin-cos-raw (nth 1 x)))
1135 (d (math-add-float
1136 (math-mul-float (math-sqr (car sc))
1137 (math-sqr ch))
1138 (math-mul-float (math-sqr (cdr sc))
1139 (math-sqr sh)))))
1140 (and (not (eq (nth 1 d) 0))
1141 (list 'cplx
1142 (math-div-float (math-mul-float (car sc) ch) d)
1143 (math-div-float (math-mul-float (cdr sc) sh) d)))))
1144 ((eq (car x) 'polar)
1145 (math-polar (math-csc-raw (math-complex x))))
1146 (t
1147 (let ((sn (math-sin-raw x)))
1148 (if (eq sn 0)
1149 (math-div 1 0)
1150 (math-div-float '(float 1 0) sn))))))
1151
1152 (defun math-cot-raw (x) ; [N N]
1153 (cond ((eq (car x) 'cplx)
1154 (let* ((x (math-mul x '(float 1 0)))
1155 (expx (math-exp-raw (nth 2 x)))
1156 (expmx (math-div-float '(float 1 0) expx))
1157 (sh (math-mul-float (math-sub-float expx expmx) '(float 5 -1)))
1158 (ch (math-mul-float (math-add-float expx expmx) '(float 5 -1)))
1159 (sc (math-sin-cos-raw (nth 1 x)))
1160 (d (math-add-float
1161 (math-sqr (car sc))
1162 (math-sqr sh))))
1163 (and (not (eq (nth 1 d) 0))
1164 (list 'cplx
1165 (math-div-float
1166 (math-mul-float (car sc) (cdr sc))
1167 d)
1168 (math-neg
1169 (math-div-float
1170 (math-mul-float sh ch)
1171 d))))))
1172 ((eq (car x) 'polar)
1173 (math-polar (math-cot-raw (math-complex x))))
1174 (t
1175 (let ((sc (math-sin-cos-raw x)))
1176 (if (eq (nth 1 (car sc)) 0)
1177 (math-div (cdr sc) 0)
1178 (math-div-float (cdr sc) (car sc)))))))
1179
1180
1181 ;;; This could use a smarter method: Reduce x as in math-sin-raw, then
1182 ;;; compute either sin(x) or cos(x), whichever is smaller, and compute
1183 ;;; the other using the identity sin(x)^2 + cos(x)^2 = 1.
1184 (defun math-sin-cos-raw (x) ; [F.F F] (result is (sin x . cos x))
1185 (cons (math-sin-raw x) (math-cos-raw x)))
1186
1187 (defun math-tan-raw (x) ; [N N]
1188 (cond ((eq (car x) 'cplx)
1189 (let* ((x (math-mul x '(float 2 0)))
1190 (expx (math-exp-raw (nth 2 x)))
1191 (expmx (math-div-float '(float 1 0) expx))
1192 (sc (math-sin-cos-raw (nth 1 x)))
1193 (d (math-add-float (cdr sc)
1194 (math-mul-float (math-add-float expx expmx)
1195 '(float 5 -1)))))
1196 (and (not (eq (nth 1 d) 0))
1197 (list 'cplx
1198 (math-div-float (car sc) d)
1199 (math-div-float (math-mul-float (math-sub-float expx
1200 expmx)
1201 '(float 5 -1)) d)))))
1202 ((eq (car x) 'polar)
1203 (math-polar (math-tan-raw (math-complex x))))
1204 (t
1205 (let ((sc (math-sin-cos-raw x)))
1206 (if (eq (nth 1 (cdr sc)) 0)
1207 (math-div (car sc) 0)
1208 (math-div-float (car sc) (cdr sc)))))))
1209
1210 (defun math-sin-raw-2 (x orgx) ; This avoids poss of inf recursion. [F F]
1211 (let ((xmpo2 (math-sub-float (math-pi-over-2) x)))
1212 (cond ((Math-integer-negp (nth 1 xmpo2))
1213 (math-neg-float (math-sin-raw-2 (math-sub-float x (math-pi))
1214 orgx)))
1215 ((math-lessp-float (math-pi-over-4) x)
1216 (math-cos-raw-2 xmpo2 orgx))
1217 ((math-lessp-float x (math-neg (math-pi-over-4)))
1218 (math-neg (math-cos-raw-2 (math-add (math-pi-over-2) x) orgx)))
1219 ((math-nearly-zerop-float x orgx) '(float 0 0))
1220 ((math-use-emacs-fn 'sin x))
1221 (calc-symbolic-mode (signal 'inexact-result nil))
1222 (t (math-sin-series x 6 4 x (math-neg-float (math-sqr-float x)))))))
1223
1224 (defun math-cos-raw-2 (x orgx) ; [F F]
1225 (cond ((math-nearly-zerop-float x orgx) '(float 1 0))
1226 ((math-use-emacs-fn 'cos x))
1227 (calc-symbolic-mode (signal 'inexact-result nil))
1228 (t (let ((xnegsqr (math-neg-float (math-sqr-float x))))
1229 (math-sin-series
1230 (math-add-float '(float 1 0)
1231 (math-mul-float xnegsqr '(float 5 -1)))
1232 24 5 xnegsqr xnegsqr)))))
1233
1234 (defun math-sin-series (sum nfac n x xnegsqr)
1235 (math-working "sin" sum)
1236 (let* ((nextx (math-mul-float x xnegsqr))
1237 (nextsum (math-add-float sum (math-div-float nextx
1238 (math-float nfac)))))
1239 (if (math-nearly-equal-float sum nextsum)
1240 sum
1241 (math-sin-series nextsum (math-mul nfac (* n (1+ n)))
1242 (+ n 2) nextx xnegsqr))))
1243
1244
1245 ;;; Inverse sine, cosine, tangent.
1246
1247 (defun calcFunc-arcsin (x) ; [N N] [Public]
1248 (cond ((eq x 0) 0)
1249 ((and (eq x 1) (eq calc-angle-mode 'deg)) 90)
1250 ((and (eq x -1) (eq calc-angle-mode 'deg)) -90)
1251 (calc-symbolic-mode (signal 'inexact-result nil))
1252 ((Math-numberp x)
1253 (math-with-extra-prec 2
1254 (math-from-radians (math-arcsin-raw (math-float x)))))
1255 ((eq (car x) 'sdev)
1256 (math-make-sdev (calcFunc-arcsin (nth 1 x))
1257 (math-from-radians
1258 (math-div (nth 2 x)
1259 (math-sqrt
1260 (math-sub 1 (math-sqr (nth 1 x))))))))
1261 ((eq (car x) 'intv)
1262 (math-sort-intv (nth 1 x)
1263 (calcFunc-arcsin (nth 2 x))
1264 (calcFunc-arcsin (nth 3 x))))
1265 ((equal x '(var nan var-nan))
1266 x)
1267 (t (calc-record-why 'numberp x)
1268 (list 'calcFunc-arcsin x))))
1269
1270 (defun calcFunc-arccos (x) ; [N N] [Public]
1271 (cond ((eq x 1) 0)
1272 ((and (eq x 0) (eq calc-angle-mode 'deg)) 90)
1273 ((and (eq x -1) (eq calc-angle-mode 'deg)) 180)
1274 (calc-symbolic-mode (signal 'inexact-result nil))
1275 ((Math-numberp x)
1276 (math-with-extra-prec 2
1277 (math-from-radians (math-arccos-raw (math-float x)))))
1278 ((eq (car x) 'sdev)
1279 (math-make-sdev (calcFunc-arccos (nth 1 x))
1280 (math-from-radians
1281 (math-div (nth 2 x)
1282 (math-sqrt
1283 (math-sub 1 (math-sqr (nth 1 x))))))))
1284 ((eq (car x) 'intv)
1285 (math-sort-intv (nth 1 x)
1286 (calcFunc-arccos (nth 2 x))
1287 (calcFunc-arccos (nth 3 x))))
1288 ((equal x '(var nan var-nan))
1289 x)
1290 (t (calc-record-why 'numberp x)
1291 (list 'calcFunc-arccos x))))
1292
1293 (defun calcFunc-arctan (x) ; [N N] [Public]
1294 (cond ((eq x 0) 0)
1295 ((and (eq x 1) (eq calc-angle-mode 'deg)) 45)
1296 ((and (eq x -1) (eq calc-angle-mode 'deg)) -45)
1297 ((Math-numberp x)
1298 (math-with-extra-prec 2
1299 (math-from-radians (math-arctan-raw (math-float x)))))
1300 ((eq (car x) 'sdev)
1301 (math-make-sdev (calcFunc-arctan (nth 1 x))
1302 (math-from-radians
1303 (math-div (nth 2 x)
1304 (math-add 1 (math-sqr (nth 1 x)))))))
1305 ((eq (car x) 'intv)
1306 (math-sort-intv (nth 1 x)
1307 (calcFunc-arctan (nth 2 x))
1308 (calcFunc-arctan (nth 3 x))))
1309 ((equal x '(var inf var-inf))
1310 (math-quarter-circle t))
1311 ((equal x '(neg (var inf var-inf)))
1312 (math-neg (math-quarter-circle t)))
1313 ((equal x '(var nan var-nan))
1314 x)
1315 (t (calc-record-why 'numberp x)
1316 (list 'calcFunc-arctan x))))
1317
1318 (defun math-arcsin-raw (x) ; [N N]
1319 (let ((a (math-sqrt-raw (math-sub '(float 1 0) (math-sqr x)))))
1320 (if (or (memq (car x) '(cplx polar))
1321 (memq (car a) '(cplx polar)))
1322 (math-with-extra-prec 2 ; use extra precision for difficult case
1323 (math-mul '(cplx 0 -1)
1324 (math-ln-raw (math-add (math-mul '(cplx 0 1) x) a))))
1325 (math-arctan2-raw x a))))
1326
1327 (defun math-arccos-raw (x) ; [N N]
1328 (math-sub (math-pi-over-2) (math-arcsin-raw x)))
1329
1330 (defun math-arctan-raw (x) ; [N N]
1331 (cond ((memq (car x) '(cplx polar))
1332 (math-with-extra-prec 2 ; extra-extra
1333 (math-div (math-sub
1334 (math-ln-raw (math-add 1 (math-mul '(cplx 0 1) x)))
1335 (math-ln-raw (math-add 1 (math-mul '(cplx 0 -1) x))))
1336 '(cplx 0 2))))
1337 ((Math-integer-negp (nth 1 x))
1338 (math-neg-float (math-arctan-raw (math-neg-float x))))
1339 ((math-zerop x) x)
1340 ((math-use-emacs-fn 'atan x))
1341 (calc-symbolic-mode (signal 'inexact-result nil))
1342 ((math-equal-int x 1) (math-pi-over-4))
1343 ((math-equal-int x -1) (math-neg (math-pi-over-4)))
1344 ((math-lessp-float '(float 414214 -6) x) ; if x > sqrt(2) - 1, reduce
1345 (if (math-lessp-float '(float 1 0) x)
1346 (math-sub-float (math-mul-float (math-pi) '(float 5 -1))
1347 (math-arctan-raw (math-div-float '(float 1 0) x)))
1348 (math-sub-float (math-mul-float (math-pi) '(float 25 -2))
1349 (math-arctan-raw (math-div-float
1350 (math-sub-float '(float 1 0) x)
1351 (math-add-float '(float 1 0)
1352 x))))))
1353 (t (math-arctan-series x 3 x (math-neg-float (math-sqr-float x))))))
1354
1355 (defun math-arctan-series (sum n x xnegsqr)
1356 (math-working "arctan" sum)
1357 (let* ((nextx (math-mul-float x xnegsqr))
1358 (nextsum (math-add-float sum (math-div-float nextx (math-float n)))))
1359 (if (math-nearly-equal-float sum nextsum)
1360 sum
1361 (math-arctan-series nextsum (+ n 2) nextx xnegsqr))))
1362
1363 (defun calcFunc-arctan2 (y x) ; [F R R] [Public]
1364 (if (Math-anglep y)
1365 (if (Math-anglep x)
1366 (math-with-extra-prec 2
1367 (math-from-radians (math-arctan2-raw (math-float y)
1368 (math-float x))))
1369 (calc-record-why 'anglep x)
1370 (list 'calcFunc-arctan2 y x))
1371 (if (and (or (math-infinitep x) (math-anglep x))
1372 (or (math-infinitep y) (math-anglep y)))
1373 (progn
1374 (if (math-posp x)
1375 (setq x 1)
1376 (if (math-negp x)
1377 (setq x -1)
1378 (or (math-zerop x)
1379 (setq x nil))))
1380 (if (math-posp y)
1381 (setq y 1)
1382 (if (math-negp y)
1383 (setq y -1)
1384 (or (math-zerop y)
1385 (setq y nil))))
1386 (if (and y x)
1387 (calcFunc-arctan2 y x)
1388 '(var nan var-nan)))
1389 (calc-record-why 'anglep y)
1390 (list 'calcFunc-arctan2 y x))))
1391
1392 (defun math-arctan2-raw (y x) ; [F R R]
1393 (cond ((math-zerop y)
1394 (if (math-negp x) (math-pi)
1395 (if (or (math-floatp x) (math-floatp y)) '(float 0 0) 0)))
1396 ((math-zerop x)
1397 (if (math-posp y)
1398 (math-pi-over-2)
1399 (math-neg (math-pi-over-2))))
1400 ((math-posp x)
1401 (math-arctan-raw (math-div-float y x)))
1402 ((math-posp y)
1403 (math-add-float (math-arctan-raw (math-div-float y x))
1404 (math-pi)))
1405 (t
1406 (math-sub-float (math-arctan-raw (math-div-float y x))
1407 (math-pi)))))
1408
1409 (defun calcFunc-arcsincos (x) ; [V N] [Public]
1410 (if (and (Math-vectorp x)
1411 (= (length x) 3))
1412 (calcFunc-arctan2 (nth 2 x) (nth 1 x))
1413 (math-reject-arg x "*Two-element vector expected")))
1414
1415
1416
1417 ;;; Exponential function.
1418
1419 (defun calcFunc-exp (x) ; [N N] [Public]
1420 (cond ((eq x 0) 1)
1421 ((and (memq x '(1 -1)) calc-symbolic-mode)
1422 (if (eq x 1) '(var e var-e) (math-div 1 '(var e var-e))))
1423 ((Math-numberp x)
1424 (math-with-extra-prec 2 (math-exp-raw (math-float x))))
1425 ((eq (car-safe x) 'sdev)
1426 (let ((ex (calcFunc-exp (nth 1 x))))
1427 (math-make-sdev ex (math-mul (nth 2 x) ex))))
1428 ((eq (car-safe x) 'intv)
1429 (math-make-intv (nth 1 x) (calcFunc-exp (nth 2 x))
1430 (calcFunc-exp (nth 3 x))))
1431 ((equal x '(var inf var-inf))
1432 x)
1433 ((equal x '(neg (var inf var-inf)))
1434 0)
1435 ((equal x '(var nan var-nan))
1436 x)
1437 (t (calc-record-why 'numberp x)
1438 (list 'calcFunc-exp x))))
1439
1440 (defun calcFunc-expm1 (x) ; [N N] [Public]
1441 (cond ((eq x 0) 0)
1442 ((math-zerop x) '(float 0 0))
1443 (calc-symbolic-mode (signal 'inexact-result nil))
1444 ((Math-numberp x)
1445 (math-with-extra-prec 2
1446 (let ((x (math-float x)))
1447 (if (and (eq (car x) 'float)
1448 (math-lessp-float x '(float 1 0))
1449 (math-lessp-float '(float -1 0) x))
1450 (math-exp-minus-1-raw x)
1451 (math-add (math-exp-raw x) -1)))))
1452 ((eq (car-safe x) 'sdev)
1453 (if (math-constp x)
1454 (let ((ex (calcFunc-expm1 (nth 1 x))))
1455 (math-make-sdev ex (math-mul (nth 2 x) (math-add ex 1))))
1456 (math-make-sdev (calcFunc-expm1 (nth 1 x))
1457 (math-mul (nth 2 x) (calcFunc-exp (nth 1 x))))))
1458 ((eq (car-safe x) 'intv)
1459 (math-make-intv (nth 1 x)
1460 (calcFunc-expm1 (nth 2 x))
1461 (calcFunc-expm1 (nth 3 x))))
1462 ((equal x '(var inf var-inf))
1463 x)
1464 ((equal x '(neg (var inf var-inf)))
1465 -1)
1466 ((equal x '(var nan var-nan))
1467 x)
1468 (t (calc-record-why 'numberp x)
1469 (list 'calcFunc-expm1 x))))
1470
1471 (defun calcFunc-exp10 (x) ; [N N] [Public]
1472 (if (eq x 0)
1473 1
1474 (math-pow '(float 1 1) x)))
1475
1476 (defun math-exp-raw (x) ; [N N]
1477 (cond ((math-zerop x) '(float 1 0))
1478 (calc-symbolic-mode (signal 'inexact-result nil))
1479 ((eq (car x) 'cplx)
1480 (let ((expx (math-exp-raw (nth 1 x)))
1481 (sc (math-sin-cos-raw (nth 2 x))))
1482 (list 'cplx
1483 (math-mul-float expx (cdr sc))
1484 (math-mul-float expx (car sc)))))
1485 ((eq (car x) 'polar)
1486 (let ((xc (math-complex x)))
1487 (list 'polar
1488 (math-exp-raw (nth 1 xc))
1489 (math-from-radians (nth 2 xc)))))
1490 ((math-use-emacs-fn 'exp x))
1491 ((or (math-lessp-float '(float 5 -1) x)
1492 (math-lessp-float x '(float -5 -1)))
1493 (if (math-lessp-float '(float 921035 1) x)
1494 (math-overflow)
1495 (if (math-lessp-float x '(float -921035 1))
1496 (math-underflow)))
1497 (let* ((two-x (math-mul-float x '(float 2 0)))
1498 (hint (math-scale-int (nth 1 two-x) (nth 2 two-x)))
1499 (hfrac (math-sub-float x (math-mul-float (math-float hint)
1500 '(float 5 -1)))))
1501 (math-mul-float (math-ipow (math-sqrt-e) hint)
1502 (math-add-float '(float 1 0)
1503 (math-exp-minus-1-raw hfrac)))))
1504 (t (math-add-float '(float 1 0) (math-exp-minus-1-raw x)))))
1505
1506 (defun math-exp-minus-1-raw (x) ; [F F]
1507 (math-exp-series x 2 3 x x))
1508
1509 (defun math-exp-series (sum nfac n xpow x)
1510 (math-working "exp" sum)
1511 (let* ((nextx (math-mul-float xpow x))
1512 (nextsum (math-add-float sum (math-div-float nextx
1513 (math-float nfac)))))
1514 (if (math-nearly-equal-float sum nextsum)
1515 sum
1516 (math-exp-series nextsum (math-mul nfac n) (1+ n) nextx x))))
1517
1518
1519
1520 ;;; Logarithms.
1521
1522 (defun calcFunc-ln (x) ; [N N] [Public]
1523 (cond ((math-zerop x)
1524 (if calc-infinite-mode
1525 '(neg (var inf var-inf))
1526 (math-reject-arg x "*Logarithm of zero")))
1527 ((eq x 1) 0)
1528 ((Math-numberp x)
1529 (math-with-extra-prec 2 (math-ln-raw (math-float x))))
1530 ((eq (car-safe x) 'sdev)
1531 (math-make-sdev (calcFunc-ln (nth 1 x))
1532 (math-div (nth 2 x) (nth 1 x))))
1533 ((and (eq (car-safe x) 'intv) (or (Math-posp (nth 2 x))
1534 (Math-zerop (nth 2 x))
1535 (not (math-intv-constp x))))
1536 (let ((calc-infinite-mode t))
1537 (math-make-intv (nth 1 x) (calcFunc-ln (nth 2 x))
1538 (calcFunc-ln (nth 3 x)))))
1539 ((equal x '(var e var-e))
1540 1)
1541 ((and (eq (car-safe x) '^)
1542 (equal (nth 1 x) '(var e var-e))
1543 (math-known-realp (nth 2 x)))
1544 (nth 2 x))
1545 ((math-infinitep x)
1546 (if (equal x '(var nan var-nan))
1547 x
1548 '(var inf var-inf)))
1549 (t (calc-record-why 'numberp x)
1550 (list 'calcFunc-ln x))))
1551
1552 (defun calcFunc-log10 (x) ; [N N] [Public]
1553 (cond ((math-equal-int x 1)
1554 (if (math-floatp x) '(float 0 0) 0))
1555 ((and (Math-integerp x)
1556 (math-posp x)
1557 (let ((res (math-integer-log x 10)))
1558 (and (car res)
1559 (setq x (cdr res)))))
1560 x)
1561 ((and (eq (car-safe x) 'frac)
1562 (eq (nth 1 x) 1)
1563 (let ((res (math-integer-log (nth 2 x) 10)))
1564 (and (car res)
1565 (setq x (- (cdr res))))))
1566 x)
1567 ((math-zerop x)
1568 (if calc-infinite-mode
1569 '(neg (var inf var-inf))
1570 (math-reject-arg x "*Logarithm of zero")))
1571 (calc-symbolic-mode (signal 'inexact-result nil))
1572 ((Math-numberp x)
1573 (math-with-extra-prec 2
1574 (let ((xf (math-float x)))
1575 (if (eq (nth 1 xf) 0)
1576 (math-reject-arg x "*Logarithm of zero"))
1577 (if (Math-integer-posp (nth 1 xf))
1578 (if (eq (nth 1 xf) 1) ; log10(1*10^n) = n
1579 (math-float (nth 2 xf))
1580 (let ((xdigs (1- (math-numdigs (nth 1 xf)))))
1581 (math-add-float
1582 (math-div-float (math-ln-raw-2
1583 (list 'float (nth 1 xf) (- xdigs)))
1584 (math-ln-10))
1585 (math-float (+ (nth 2 xf) xdigs)))))
1586 (math-div (calcFunc-ln xf) (math-ln-10))))))
1587 ((eq (car-safe x) 'sdev)
1588 (math-make-sdev (calcFunc-log10 (nth 1 x))
1589 (math-div (nth 2 x)
1590 (math-mul (nth 1 x) (math-ln-10)))))
1591 ((and (eq (car-safe x) 'intv) (or (Math-posp (nth 2 x))
1592 (not (math-intv-constp x))))
1593 (math-make-intv (nth 1 x)
1594 (calcFunc-log10 (nth 2 x))
1595 (calcFunc-log10 (nth 3 x))))
1596 ((math-infinitep x)
1597 (if (equal x '(var nan var-nan))
1598 x
1599 '(var inf var-inf)))
1600 (t (calc-record-why 'numberp x)
1601 (list 'calcFunc-log10 x))))
1602
1603 (defun calcFunc-log (x &optional b) ; [N N N] [Public]
1604 (cond ((or (null b) (equal b '(var e var-e)))
1605 (math-normalize (list 'calcFunc-ln x)))
1606 ((or (eq b 10) (equal b '(float 1 1)))
1607 (math-normalize (list 'calcFunc-log10 x)))
1608 ((math-zerop x)
1609 (if calc-infinite-mode
1610 (math-div (calcFunc-ln x) (calcFunc-ln b))
1611 (math-reject-arg x "*Logarithm of zero")))
1612 ((math-zerop b)
1613 (if calc-infinite-mode
1614 (math-div (calcFunc-ln x) (calcFunc-ln b))
1615 (math-reject-arg b "*Logarithm of zero")))
1616 ((math-equal-int b 1)
1617 (if calc-infinite-mode
1618 (math-div (calcFunc-ln x) 0)
1619 (math-reject-arg b "*Logarithm base one")))
1620 ((math-equal-int x 1)
1621 (if (math-floatp b) '(float 0 0) 0))
1622 ((and (Math-ratp x) (Math-ratp b)
1623 (math-posp x) (math-posp b)
1624 (let* ((sign 1) (inv nil)
1625 (xx (if (Math-lessp 1 x)
1626 x
1627 (setq sign -1)
1628 (math-div 1 x)))
1629 (bb (if (Math-lessp 1 b)
1630 b
1631 (setq sign (- sign))
1632 (math-div 1 b)))
1633 (res (if (Math-lessp xx bb)
1634 (setq inv (math-integer-log bb xx))
1635 (math-integer-log xx bb))))
1636 (and (car res)
1637 (setq x (if inv
1638 (math-div 1 (* sign (cdr res)))
1639 (* sign (cdr res)))))))
1640 x)
1641 (calc-symbolic-mode (signal 'inexact-result nil))
1642 ((and (Math-numberp x) (Math-numberp b))
1643 (math-with-extra-prec 2
1644 (math-div (math-ln-raw (math-float x))
1645 (math-log-base-raw b))))
1646 ((and (eq (car-safe x) 'sdev)
1647 (Math-numberp b))
1648 (math-make-sdev (calcFunc-log (nth 1 x) b)
1649 (math-div (nth 2 x)
1650 (math-mul (nth 1 x)
1651 (math-log-base-raw b)))))
1652 ((and (eq (car-safe x) 'intv) (or (Math-posp (nth 2 x))
1653 (not (math-intv-constp x)))
1654 (math-realp b))
1655 (math-make-intv (nth 1 x)
1656 (calcFunc-log (nth 2 x) b)
1657 (calcFunc-log (nth 3 x) b)))
1658 ((or (eq (car-safe x) 'intv) (eq (car-safe b) 'intv))
1659 (math-div (calcFunc-ln x) (calcFunc-ln b)))
1660 ((or (math-infinitep x)
1661 (math-infinitep b))
1662 (math-div (calcFunc-ln x) (calcFunc-ln b)))
1663 (t (if (Math-numberp b)
1664 (calc-record-why 'numberp x)
1665 (calc-record-why 'numberp b))
1666 (list 'calcFunc-log x b))))
1667
1668 (defun calcFunc-alog (x &optional b)
1669 (cond ((or (null b) (equal b '(var e var-e)))
1670 (math-normalize (list 'calcFunc-exp x)))
1671 (t (math-pow b x))))
1672
1673 (defun calcFunc-ilog (x b)
1674 (if (and (math-natnump x) (not (eq x 0))
1675 (math-natnump b) (not (eq b 0)))
1676 (if (eq b 1)
1677 (math-reject-arg x "*Logarithm base one")
1678 (if (Math-natnum-lessp x b)
1679 0
1680 (cdr (math-integer-log x b))))
1681 (math-floor (calcFunc-log x b))))
1682
1683 (defun math-integer-log (x b)
1684 (let ((pows (list b))
1685 (pow (math-sqr b))
1686 next
1687 sum n)
1688 (while (not (Math-lessp x pow))
1689 (setq pows (cons pow pows)
1690 pow (math-sqr pow)))
1691 (setq n (lsh 1 (1- (length pows)))
1692 sum n
1693 pow (car pows))
1694 (while (and (setq pows (cdr pows))
1695 (Math-lessp pow x))
1696 (setq n (/ n 2)
1697 next (math-mul pow (car pows)))
1698 (or (Math-lessp x next)
1699 (setq pow next
1700 sum (+ sum n))))
1701 (cons (equal pow x) sum)))
1702
1703
1704 (defvar math-log-base-cache nil)
1705 (defun math-log-base-raw (b) ; [N N]
1706 (if (not (and (equal (car math-log-base-cache) b)
1707 (eq (nth 1 math-log-base-cache) calc-internal-prec)))
1708 (setq math-log-base-cache (list b calc-internal-prec
1709 (math-ln-raw (math-float b)))))
1710 (nth 2 math-log-base-cache))
1711
1712 (defun calcFunc-lnp1 (x) ; [N N] [Public]
1713 (cond ((Math-equal-int x -1)
1714 (if calc-infinite-mode
1715 '(neg (var inf var-inf))
1716 (math-reject-arg x "*Logarithm of zero")))
1717 ((eq x 0) 0)
1718 ((math-zerop x) '(float 0 0))
1719 (calc-symbolic-mode (signal 'inexact-result nil))
1720 ((Math-numberp x)
1721 (math-with-extra-prec 2
1722 (let ((x (math-float x)))
1723 (if (and (eq (car x) 'float)
1724 (math-lessp-float x '(float 5 -1))
1725 (math-lessp-float '(float -5 -1) x))
1726 (math-ln-plus-1-raw x)
1727 (math-ln-raw (math-add-float x '(float 1 0)))))))
1728 ((eq (car-safe x) 'sdev)
1729 (math-make-sdev (calcFunc-lnp1 (nth 1 x))
1730 (math-div (nth 2 x) (math-add (nth 1 x) 1))))
1731 ((and (eq (car-safe x) 'intv) (or (Math-posp (nth 2 x))
1732 (not (math-intv-constp x))))
1733 (math-make-intv (nth 1 x)
1734 (calcFunc-lnp1 (nth 2 x))
1735 (calcFunc-lnp1 (nth 3 x))))
1736 ((math-infinitep x)
1737 (if (equal x '(var nan var-nan))
1738 x
1739 '(var inf var-inf)))
1740 (t (calc-record-why 'numberp x)
1741 (list 'calcFunc-lnp1 x))))
1742
1743 (defun math-ln-raw (x) ; [N N] --- must be float format!
1744 (cond ((eq (car-safe x) 'cplx)
1745 (list 'cplx
1746 (math-mul-float (math-ln-raw
1747 (math-add-float (math-sqr-float (nth 1 x))
1748 (math-sqr-float (nth 2 x))))
1749 '(float 5 -1))
1750 (math-arctan2-raw (nth 2 x) (nth 1 x))))
1751 ((eq (car x) 'polar)
1752 (math-polar (list 'cplx
1753 (math-ln-raw (nth 1 x))
1754 (math-to-radians (nth 2 x)))))
1755 ((Math-equal-int x 1)
1756 '(float 0 0))
1757 (calc-symbolic-mode (signal 'inexact-result nil))
1758 ((math-posp (nth 1 x)) ; positive and real
1759 (cond
1760 ((math-use-emacs-fn 'log x))
1761 (t
1762 (let ((xdigs (1- (math-numdigs (nth 1 x)))))
1763 (math-add-float (math-ln-raw-2 (list 'float (nth 1 x) (- xdigs)))
1764 (math-mul-float (math-float (+ (nth 2 x) xdigs))
1765 (math-ln-10)))))))
1766 ((math-zerop x)
1767 (math-reject-arg x "*Logarithm of zero"))
1768 ((eq calc-complex-mode 'polar) ; negative and real
1769 (math-polar
1770 (list 'cplx ; negative and real
1771 (math-ln-raw (math-neg-float x))
1772 (math-pi))))
1773 (t (list 'cplx ; negative and real
1774 (math-ln-raw (math-neg-float x))
1775 (math-pi)))))
1776
1777 (defun math-ln-raw-2 (x) ; [F F]
1778 (cond ((math-lessp-float '(float 14 -1) x)
1779 (math-add-float (math-ln-raw-2 (math-mul-float x '(float 5 -1)))
1780 (math-ln-2)))
1781 (t ; now .7 < x <= 1.4
1782 (math-ln-raw-3 (math-div-float (math-sub-float x '(float 1 0))
1783 (math-add-float x '(float 1 0)))))))
1784
1785 (defun math-ln-raw-3 (x) ; [F F]
1786 (math-mul-float (math-ln-raw-series x 3 x (math-sqr-float x))
1787 '(float 2 0)))
1788
1789 ;;; Compute ln((1+x)/(1-x))
1790 (defun math-ln-raw-series (sum n x xsqr)
1791 (math-working "log" sum)
1792 (let* ((nextx (math-mul-float x xsqr))
1793 (nextsum (math-add-float sum (math-div-float nextx (math-float n)))))
1794 (if (math-nearly-equal-float sum nextsum)
1795 sum
1796 (math-ln-raw-series nextsum (+ n 2) nextx xsqr))))
1797
1798 (defun math-ln-plus-1-raw (x)
1799 (math-lnp1-series x 2 x (math-neg x)))
1800
1801 (defun math-lnp1-series (sum n xpow x)
1802 (math-working "lnp1" sum)
1803 (let* ((nextx (math-mul-float xpow x))
1804 (nextsum (math-add-float sum (math-div-float nextx (math-float n)))))
1805 (if (math-nearly-equal-float sum nextsum)
1806 sum
1807 (math-lnp1-series nextsum (1+ n) nextx x))))
1808
1809 (defconst math-approx-ln-10
1810 (math-read-number-simple "2.302585092994045684018")
1811 "An approximation for ln(10).")
1812
1813 (math-defcache math-ln-10 math-approx-ln-10
1814 (math-ln-raw-2 '(float 1 1)))
1815
1816 (defconst math-approx-ln-2
1817 (math-read-number-simple "0.693147180559945309417")
1818 "An approximation for ln(2).")
1819
1820 (math-defcache math-ln-2 math-approx-ln-2
1821 (math-ln-raw-3 (math-float '(frac 1 3))))
1822
1823
1824
1825 ;;; Hyperbolic functions.
1826
1827 (defun calcFunc-sinh (x) ; [N N] [Public]
1828 (cond ((eq x 0) 0)
1829 (math-expand-formulas
1830 (math-normalize
1831 (list '/ (list '- (list 'calcFunc-exp x)
1832 (list 'calcFunc-exp (list 'neg x))) 2)))
1833 ((Math-numberp x)
1834 (if calc-symbolic-mode (signal 'inexact-result nil))
1835 (math-with-extra-prec 2
1836 (let ((expx (math-exp-raw (math-float x))))
1837 (math-mul (math-add expx (math-div -1 expx)) '(float 5 -1)))))
1838 ((eq (car-safe x) 'sdev)
1839 (math-make-sdev (calcFunc-sinh (nth 1 x))
1840 (math-mul (nth 2 x) (calcFunc-cosh (nth 1 x)))))
1841 ((eq (car x) 'intv)
1842 (math-sort-intv (nth 1 x)
1843 (calcFunc-sinh (nth 2 x))
1844 (calcFunc-sinh (nth 3 x))))
1845 ((or (equal x '(var inf var-inf))
1846 (equal x '(neg (var inf var-inf)))
1847 (equal x '(var nan var-nan)))
1848 x)
1849 (t (calc-record-why 'numberp x)
1850 (list 'calcFunc-sinh x))))
1851 (put 'calcFunc-sinh 'math-expandable t)
1852
1853 (defun calcFunc-cosh (x) ; [N N] [Public]
1854 (cond ((eq x 0) 1)
1855 (math-expand-formulas
1856 (math-normalize
1857 (list '/ (list '+ (list 'calcFunc-exp x)
1858 (list 'calcFunc-exp (list 'neg x))) 2)))
1859 ((Math-numberp x)
1860 (if calc-symbolic-mode (signal 'inexact-result nil))
1861 (math-with-extra-prec 2
1862 (let ((expx (math-exp-raw (math-float x))))
1863 (math-mul (math-add expx (math-div 1 expx)) '(float 5 -1)))))
1864 ((eq (car-safe x) 'sdev)
1865 (math-make-sdev (calcFunc-cosh (nth 1 x))
1866 (math-mul (nth 2 x)
1867 (calcFunc-sinh (nth 1 x)))))
1868 ((and (eq (car x) 'intv) (math-intv-constp x))
1869 (setq x (math-abs x))
1870 (math-sort-intv (nth 1 x)
1871 (calcFunc-cosh (nth 2 x))
1872 (calcFunc-cosh (nth 3 x))))
1873 ((or (equal x '(var inf var-inf))
1874 (equal x '(neg (var inf var-inf)))
1875 (equal x '(var nan var-nan)))
1876 (math-abs x))
1877 (t (calc-record-why 'numberp x)
1878 (list 'calcFunc-cosh x))))
1879 (put 'calcFunc-cosh 'math-expandable t)
1880
1881 (defun calcFunc-tanh (x) ; [N N] [Public]
1882 (cond ((eq x 0) 0)
1883 (math-expand-formulas
1884 (math-normalize
1885 (let ((expx (list 'calcFunc-exp x))
1886 (expmx (list 'calcFunc-exp (list 'neg x))))
1887 (math-normalize
1888 (list '/ (list '- expx expmx) (list '+ expx expmx))))))
1889 ((Math-numberp x)
1890 (if calc-symbolic-mode (signal 'inexact-result nil))
1891 (math-with-extra-prec 2
1892 (let* ((expx (calcFunc-exp (math-float x)))
1893 (expmx (math-div 1 expx)))
1894 (math-div (math-sub expx expmx)
1895 (math-add expx expmx)))))
1896 ((eq (car-safe x) 'sdev)
1897 (math-make-sdev (calcFunc-tanh (nth 1 x))
1898 (math-div (nth 2 x)
1899 (math-sqr (calcFunc-cosh (nth 1 x))))))
1900 ((eq (car x) 'intv)
1901 (math-sort-intv (nth 1 x)
1902 (calcFunc-tanh (nth 2 x))
1903 (calcFunc-tanh (nth 3 x))))
1904 ((equal x '(var inf var-inf))
1905 1)
1906 ((equal x '(neg (var inf var-inf)))
1907 -1)
1908 ((equal x '(var nan var-nan))
1909 x)
1910 (t (calc-record-why 'numberp x)
1911 (list 'calcFunc-tanh x))))
1912 (put 'calcFunc-tanh 'math-expandable t)
1913
1914 (defun calcFunc-sech (x) ; [N N] [Public]
1915 (cond ((eq x 0) 1)
1916 (math-expand-formulas
1917 (math-normalize
1918 (list '/ 2 (list '+ (list 'calcFunc-exp x)
1919 (list 'calcFunc-exp (list 'neg x))))))
1920 ((Math-numberp x)
1921 (if calc-symbolic-mode (signal 'inexact-result nil))
1922 (math-with-extra-prec 2
1923 (let ((expx (math-exp-raw (math-float x))))
1924 (math-div '(float 2 0) (math-add expx (math-div 1 expx))))))
1925 ((eq (car-safe x) 'sdev)
1926 (math-make-sdev (calcFunc-sech (nth 1 x))
1927 (math-mul (nth 2 x)
1928 (math-mul (calcFunc-sech (nth 1 x))
1929 (calcFunc-tanh (nth 1 x))))))
1930 ((and (eq (car x) 'intv) (math-intv-constp x))
1931 (setq x (math-abs x))
1932 (math-sort-intv (nth 1 x)
1933 (calcFunc-sech (nth 2 x))
1934 (calcFunc-sech (nth 3 x))))
1935 ((or (equal x '(var inf var-inf))
1936 (equal x '(neg (var inf var-inf))))
1937 0)
1938 ((equal x '(var nan var-nan))
1939 x)
1940 (t (calc-record-why 'numberp x)
1941 (list 'calcFunc-sech x))))
1942 (put 'calcFunc-sech 'math-expandable t)
1943
1944 (defun calcFunc-csch (x) ; [N N] [Public]
1945 (cond ((eq x 0) (math-div 1 0))
1946 (math-expand-formulas
1947 (math-normalize
1948 (list '/ 2 (list '- (list 'calcFunc-exp x)
1949 (list 'calcFunc-exp (list 'neg x))))))
1950 ((Math-numberp x)
1951 (if calc-symbolic-mode (signal 'inexact-result nil))
1952 (math-with-extra-prec 2
1953 (let ((expx (math-exp-raw (math-float x))))
1954 (math-div '(float 2 0) (math-add expx (math-div -1 expx))))))
1955 ((eq (car-safe x) 'sdev)
1956 (math-make-sdev (calcFunc-csch (nth 1 x))
1957 (math-mul (nth 2 x)
1958 (math-mul (calcFunc-csch (nth 1 x))
1959 (calcFunc-coth (nth 1 x))))))
1960 ((eq (car x) 'intv)
1961 (if (and (Math-negp (nth 2 x))
1962 (Math-posp (nth 3 x)))
1963 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))
1964 (math-sort-intv (nth 1 x)
1965 (calcFunc-csch (nth 2 x))
1966 (calcFunc-csch (nth 3 x)))))
1967 ((or (equal x '(var inf var-inf))
1968 (equal x '(neg (var inf var-inf))))
1969 0)
1970 ((equal x '(var nan var-nan))
1971 x)
1972 (t (calc-record-why 'numberp x)
1973 (list 'calcFunc-csch x))))
1974 (put 'calcFunc-csch 'math-expandable t)
1975
1976 (defun calcFunc-coth (x) ; [N N] [Public]
1977 (cond ((eq x 0) (math-div 1 0))
1978 (math-expand-formulas
1979 (math-normalize
1980 (let ((expx (list 'calcFunc-exp x))
1981 (expmx (list 'calcFunc-exp (list 'neg x))))
1982 (math-normalize
1983 (list '/ (list '+ expx expmx) (list '- expx expmx))))))
1984 ((Math-numberp x)
1985 (if calc-symbolic-mode (signal 'inexact-result nil))
1986 (math-with-extra-prec 2
1987 (let* ((expx (calcFunc-exp (math-float x)))
1988 (expmx (math-div 1 expx)))
1989 (math-div (math-add expx expmx)
1990 (math-sub expx expmx)))))
1991 ((eq (car-safe x) 'sdev)
1992 (math-make-sdev (calcFunc-coth (nth 1 x))
1993 (math-div (nth 2 x)
1994 (math-sqr (calcFunc-sinh (nth 1 x))))))
1995 ((eq (car x) 'intv)
1996 (if (and (Math-negp (nth 2 x))
1997 (Math-posp (nth 3 x)))
1998 '(intv 3 (neg (var inf var-inf)) (var inf var-inf))
1999 (math-sort-intv (nth 1 x)
2000 (calcFunc-coth (nth 2 x))
2001 (calcFunc-coth (nth 3 x)))))
2002 ((equal x '(var inf var-inf))
2003 1)
2004 ((equal x '(neg (var inf var-inf)))
2005 -1)
2006 ((equal x '(var nan var-nan))
2007 x)
2008 (t (calc-record-why 'numberp x)
2009 (list 'calcFunc-coth x))))
2010 (put 'calcFunc-coth 'math-expandable t)
2011
2012 (defun calcFunc-arcsinh (x) ; [N N] [Public]
2013 (cond ((eq x 0) 0)
2014 (math-expand-formulas
2015 (math-normalize
2016 (list 'calcFunc-ln (list '+ x (list 'calcFunc-sqrt
2017 (list '+ (list '^ x 2) 1))))))
2018 ((Math-numberp x)
2019 (if calc-symbolic-mode (signal 'inexact-result nil))
2020 (math-with-extra-prec 2
2021 (math-ln-raw (math-add x (math-sqrt-raw (math-add (math-sqr x)
2022 '(float 1 0)))))))
2023 ((eq (car-safe x) 'sdev)
2024 (math-make-sdev (calcFunc-arcsinh (nth 1 x))
2025 (math-div (nth 2 x)
2026 (math-sqrt
2027 (math-add (math-sqr (nth 1 x)) 1)))))
2028 ((eq (car x) 'intv)
2029 (math-sort-intv (nth 1 x)
2030 (calcFunc-arcsinh (nth 2 x))
2031 (calcFunc-arcsinh (nth 3 x))))
2032 ((or (equal x '(var inf var-inf))
2033 (equal x '(neg (var inf var-inf)))
2034 (equal x '(var nan var-nan)))
2035 x)
2036 (t (calc-record-why 'numberp x)
2037 (list 'calcFunc-arcsinh x))))
2038 (put 'calcFunc-arcsinh 'math-expandable t)
2039
2040 (defun calcFunc-arccosh (x) ; [N N] [Public]
2041 (cond ((eq x 1) 0)
2042 ((and (eq x -1) calc-symbolic-mode)
2043 '(var pi var-pi))
2044 ((and (eq x 0) calc-symbolic-mode)
2045 (math-div (math-mul '(var pi var-pi) '(var i var-i)) 2))
2046 (math-expand-formulas
2047 (math-normalize
2048 (list 'calcFunc-ln (list '+ x (list 'calcFunc-sqrt
2049 (list '- (list '^ x 2) 1))))))
2050 ((Math-numberp x)
2051 (if calc-symbolic-mode (signal 'inexact-result nil))
2052 (if (Math-equal-int x -1)
2053 (math-imaginary (math-pi))
2054 (math-with-extra-prec 2
2055 (if (or t ; need to do this even in the real case!
2056 (memq (car-safe x) '(cplx polar)))
2057 (let ((xp1 (math-add 1 x))) ; this gets the branch cuts right
2058 (math-ln-raw
2059 (math-add x (math-mul xp1
2060 (math-sqrt-raw
2061 (math-div (math-sub
2062 x
2063 '(float 1 0))
2064 xp1))))))
2065 (math-ln-raw
2066 (math-add x (math-sqrt-raw (math-add (math-sqr x)
2067 '(float -1 0)))))))))
2068 ((eq (car-safe x) 'sdev)
2069 (math-make-sdev (calcFunc-arccosh (nth 1 x))
2070 (math-div (nth 2 x)
2071 (math-sqrt
2072 (math-add (math-sqr (nth 1 x)) -1)))))
2073 ((eq (car x) 'intv)
2074 (math-sort-intv (nth 1 x)
2075 (calcFunc-arccosh (nth 2 x))
2076 (calcFunc-arccosh (nth 3 x))))
2077 ((or (equal x '(var inf var-inf))
2078 (equal x '(neg (var inf var-inf)))
2079 (equal x '(var nan var-nan)))
2080 x)
2081 (t (calc-record-why 'numberp x)
2082 (list 'calcFunc-arccosh x))))
2083 (put 'calcFunc-arccosh 'math-expandable t)
2084
2085 (defun calcFunc-arctanh (x) ; [N N] [Public]
2086 (cond ((eq x 0) 0)
2087 ((and (Math-equal-int x 1) calc-infinite-mode)
2088 '(var inf var-inf))
2089 ((and (Math-equal-int x -1) calc-infinite-mode)
2090 '(neg (var inf var-inf)))
2091 (math-expand-formulas
2092 (list '/ (list '-
2093 (list 'calcFunc-ln (list '+ 1 x))
2094 (list 'calcFunc-ln (list '- 1 x))) 2))
2095 ((Math-numberp x)
2096 (if calc-symbolic-mode (signal 'inexact-result nil))
2097 (math-with-extra-prec 2
2098 (if (or (memq (car-safe x) '(cplx polar))
2099 (Math-lessp 1 x))
2100 (math-mul (math-sub (math-ln-raw (math-add '(float 1 0) x))
2101 (math-ln-raw (math-sub '(float 1 0) x)))
2102 '(float 5 -1))
2103 (if (and (math-equal-int x 1) calc-infinite-mode)
2104 '(var inf var-inf)
2105 (if (and (math-equal-int x -1) calc-infinite-mode)
2106 '(neg (var inf var-inf))
2107 (math-mul (math-ln-raw (math-div (math-add '(float 1 0) x)
2108 (math-sub 1 x)))
2109 '(float 5 -1)))))))
2110 ((eq (car-safe x) 'sdev)
2111 (math-make-sdev (calcFunc-arctanh (nth 1 x))
2112 (math-div (nth 2 x)
2113 (math-sub 1 (math-sqr (nth 1 x))))))
2114 ((eq (car x) 'intv)
2115 (math-sort-intv (nth 1 x)
2116 (calcFunc-arctanh (nth 2 x))
2117 (calcFunc-arctanh (nth 3 x))))
2118 ((equal x '(var nan var-nan))
2119 x)
2120 (t (calc-record-why 'numberp x)
2121 (list 'calcFunc-arctanh x))))
2122 (put 'calcFunc-arctanh 'math-expandable t)
2123
2124
2125 ;;; Convert A from HMS or degrees to radians.
2126 (defun calcFunc-rad (a) ; [R R] [Public]
2127 (cond ((or (Math-numberp a)
2128 (eq (car a) 'intv))
2129 (math-with-extra-prec 2
2130 (math-mul a (math-pi-over-180))))
2131 ((eq (car a) 'hms)
2132 (math-from-hms a 'rad))
2133 ((eq (car a) 'sdev)
2134 (math-make-sdev (calcFunc-rad (nth 1 a))
2135 (calcFunc-rad (nth 2 a))))
2136 (math-expand-formulas
2137 (math-div (math-mul a '(var pi var-pi)) 180))
2138 ((math-infinitep a) a)
2139 (t (list 'calcFunc-rad a))))
2140 (put 'calcFunc-rad 'math-expandable t)
2141
2142 ;;; Convert A from HMS or radians to degrees.
2143 (defun calcFunc-deg (a) ; [R R] [Public]
2144 (cond ((or (Math-numberp a)
2145 (eq (car a) 'intv))
2146 (math-with-extra-prec 2
2147 (math-div a (math-pi-over-180))))
2148 ((eq (car a) 'hms)
2149 (math-from-hms a 'deg))
2150 ((eq (car a) 'sdev)
2151 (math-make-sdev (calcFunc-deg (nth 1 a))
2152 (calcFunc-deg (nth 2 a))))
2153 (math-expand-formulas
2154 (math-div (math-mul 180 a) '(var pi var-pi)))
2155 ((math-infinitep a) a)
2156 (t (list 'calcFunc-deg a))))
2157 (put 'calcFunc-deg 'math-expandable t)
2158
2159 (provide 'calc-math)
2160
2161 ;;; arch-tag: c7367e8e-d0b8-4f70-8577-2fb3f31dbb4c
2162 ;;; calc-math.el ends here