1 ;;; calc-math.el --- mathematical functions for Calc
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <belanger@truman.edu>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY. No author or distributor
13 ;; accepts responsibility to anyone for the consequences of using it
14 ;; or for whether it serves any particular purpose or works at all,
15 ;; unless he says so in writing. Refer to the GNU Emacs General Public
16 ;; License for full details.
18 ;; Everyone is granted permission to copy, modify and redistribute
19 ;; GNU Emacs, but only under the conditions described in the
20 ;; GNU Emacs General Public License. A copy of this license is
21 ;; supposed to have been given to you along with GNU Emacs so you
22 ;; can know your rights and responsibilities. It should be in a
23 ;; file named COPYING. Among other things, the copyright notice
24 ;; and this notice must be preserved on all copies.
30 ;; This file is autoloaded from calc-ext.el.
35 (defun calc-sqrt (arg)
39 (calc-unary-op "^2" 'calcFunc-sqr arg
)
40 (calc-unary-op "sqrt" 'calcFunc-sqrt arg
))))
42 (defun calc-isqrt (arg)
46 (calc-unary-op "^2" 'calcFunc-sqr arg
)
47 (calc-unary-op "isqt" 'calcFunc-isqrt arg
))))
50 (defun calc-hypot (arg)
53 (calc-binary-op "hypt" 'calcFunc-hypot arg
)))
60 (defun calc-log10 (arg)
62 (calc-hyperbolic-func)
69 (calc-binary-op "alog" 'calcFunc-alog arg
)
70 (calc-binary-op "log" 'calcFunc-log arg
))))
72 (defun calc-ilog (arg)
76 (calc-binary-op "alog" 'calcFunc-alog arg
)
77 (calc-binary-op "ilog" 'calcFunc-ilog arg
))))
79 (defun calc-lnp1 (arg)
87 (if (calc-is-hyperbolic)
89 (calc-unary-op "lg10" 'calcFunc-log10 arg
)
90 (calc-unary-op "10^" 'calcFunc-exp10 arg
))
92 (calc-unary-op "ln" 'calcFunc-ln arg
)
93 (calc-unary-op "exp" 'calcFunc-exp arg
)))))
95 (defun calc-expm1 (arg)
99 (calc-unary-op "ln+1" 'calcFunc-lnp1 arg
)
100 (calc-unary-op "ex-1" 'calcFunc-expm1 arg
))))
105 (if (calc-is-inverse)
106 (if (calc-is-hyperbolic)
107 (if calc-symbolic-mode
108 (calc-pop-push-record 0 "phi" '(var phi var-phi
))
109 (calc-pop-push-record 0 "phi" (math-phi)))
110 (if calc-symbolic-mode
111 (calc-pop-push-record 0 "gmma" '(var gamma var-gamma
))
112 (calc-pop-push-record 0 "gmma" (math-gamma-const))))
113 (if (calc-is-hyperbolic)
114 (if calc-symbolic-mode
115 (calc-pop-push-record 0 "e" '(var e var-e
))
116 (calc-pop-push-record 0 "e" (math-e)))
117 (if calc-symbolic-mode
118 (calc-pop-push-record 0 "pi" '(var pi var-pi
))
119 (calc-pop-push-record 0 "pi" (math-pi)))))))
121 (defun calc-sin (arg)
124 (if (calc-is-hyperbolic)
125 (if (calc-is-inverse)
126 (calc-unary-op "asnh" 'calcFunc-arcsinh arg
)
127 (calc-unary-op "sinh" 'calcFunc-sinh arg
))
128 (if (calc-is-inverse)
129 (calc-unary-op "asin" 'calcFunc-arcsin arg
)
130 (calc-unary-op "sin" 'calcFunc-sin arg
)))))
132 (defun calc-arcsin (arg)
137 (defun calc-sinh (arg)
139 (calc-hyperbolic-func)
142 (defun calc-arcsinh (arg)
145 (calc-hyperbolic-func)
148 (defun calc-sec (arg)
151 (if (calc-is-hyperbolic)
152 (calc-unary-op "sech" 'calcFunc-sech arg
)
153 (calc-unary-op "sec" 'calcFunc-sec arg
))))
155 (defun calc-sech (arg)
157 (calc-hyperbolic-func)
160 (defun calc-cos (arg)
163 (if (calc-is-hyperbolic)
164 (if (calc-is-inverse)
165 (calc-unary-op "acsh" 'calcFunc-arccosh arg
)
166 (calc-unary-op "cosh" 'calcFunc-cosh arg
))
167 (if (calc-is-inverse)
168 (calc-unary-op "acos" 'calcFunc-arccos arg
)
169 (calc-unary-op "cos" 'calcFunc-cos arg
)))))
171 (defun calc-arccos (arg)
176 (defun calc-cosh (arg)
178 (calc-hyperbolic-func)
181 (defun calc-arccosh (arg)
184 (calc-hyperbolic-func)
187 (defun calc-csc (arg)
190 (if (calc-is-hyperbolic)
191 (calc-unary-op "csch" 'calcFunc-csch arg
)
192 (calc-unary-op "csc" 'calcFunc-csc arg
))))
194 (defun calc-csch (arg)
196 (calc-hyperbolic-func)
199 (defun calc-sincos ()
202 (if (calc-is-inverse)
203 (calc-enter-result 1 "asnc" (list 'calcFunc-arcsincos
(calc-top-n 1)))
204 (calc-enter-result 1 "sncs" (list 'calcFunc-sincos
(calc-top-n 1))))))
206 (defun calc-tan (arg)
209 (if (calc-is-hyperbolic)
210 (if (calc-is-inverse)
211 (calc-unary-op "atnh" 'calcFunc-arctanh arg
)
212 (calc-unary-op "tanh" 'calcFunc-tanh arg
))
213 (if (calc-is-inverse)
214 (calc-unary-op "atan" 'calcFunc-arctan arg
)
215 (calc-unary-op "tan" 'calcFunc-tan arg
)))))
217 (defun calc-arctan (arg)
222 (defun calc-tanh (arg)
224 (calc-hyperbolic-func)
227 (defun calc-arctanh (arg)
230 (calc-hyperbolic-func)
233 (defun calc-cot (arg)
236 (if (calc-is-hyperbolic)
237 (calc-unary-op "coth" 'calcFunc-coth arg
)
238 (calc-unary-op "cot" 'calcFunc-cot arg
))))
240 (defun calc-coth (arg)
242 (calc-hyperbolic-func)
245 (defun calc-arctan2 ()
248 (calc-enter-result 2 "atn2" (cons 'calcFunc-arctan2
(calc-top-list-n 2)))))
250 (defun calc-conj (arg)
253 (calc-unary-op "conj" 'calcFunc-conj arg
)))
255 (defun calc-imaginary ()
258 (calc-pop-push-record 1 "i*" (math-imaginary (calc-top-n 1)))))
260 (defun calc-to-degrees (arg)
263 (calc-unary-op ">deg" 'calcFunc-deg arg
)))
265 (defun calc-to-radians (arg)
268 (calc-unary-op ">rad" 'calcFunc-rad arg
)))
271 (defun calc-degrees-mode (arg)
275 (calc-change-mode 'calc-angle-mode
'deg
)
276 (message "Angles measured in degrees")))
277 ((= arg
2) (calc-radians-mode))
278 ((= arg
3) (calc-hms-mode))
279 (t (error "Prefix argument out of range"))))
281 (defun calc-radians-mode ()
284 (calc-change-mode 'calc-angle-mode
'rad
)
285 (message "Angles measured in radians")))
288 ;;; Compute the integer square-root floor(sqrt(A)). A > 0. [I I] [Public]
289 ;;; This method takes advantage of the fact that Newton's method starting
290 ;;; with an overestimate always works, even using truncating integer division!
291 (defun math-isqrt (a)
292 (cond ((Math-zerop a
) a
)
293 ((not (math-natnump a
))
294 (math-reject-arg a
'natnump
))
296 (math-isqrt-small a
))
298 (math-normalize (cons 'bigpos
(cdr (math-isqrt-bignum (cdr a
))))))))
300 (defun calcFunc-isqrt (a)
302 (math-isqrt (math-floor a
))
303 (math-floor (math-sqrt a
))))
306 ;;; This returns (flag . result) where the flag is t if A is a perfect square.
307 (defun math-isqrt-bignum (a) ; [P.l L]
308 (let ((len (length a
)))
310 (let* ((top (nthcdr (- len
2) a
)))
311 (math-isqrt-bignum-iter
315 (1+ (math-isqrt-small
316 (+ (* (nth 1 top
) 1000) (car top
)))))
318 (let* ((top (nth (1- len
) a
)))
319 (math-isqrt-bignum-iter
322 (list (1+ (math-isqrt-small top
)))
325 (defun math-isqrt-bignum-iter (a guess
) ; [l L l]
326 (math-working "isqrt" (cons 'bigpos guess
))
327 (let* ((q (math-div-bignum a guess
))
328 (s (math-add-bignum (car q
) guess
))
329 (g2 (math-div2-bignum s
))
330 (comp (math-compare-bignum g2 guess
)))
332 (math-isqrt-bignum-iter a g2
)
333 (cons (and (= comp
0)
334 (math-zerop-bignum (cdr q
))
338 (defun math-zerop-bignum (a)
341 (while (eq (car (setq a
(cdr a
))) 0))
344 (defun math-scale-bignum-3 (a n
) ; [L L S]
350 (defun math-isqrt-small (a) ; A > 0. [S S]
351 (let ((g (cond ((>= a
10000) 1000)
355 (while (< (setq g2
(/ (+ g
(/ a g
)) 2)) g
)
362 ;;; Compute the square root of a number.
363 ;;; [T N] if possible, else [F N] if possible, else [C N]. [Public]
366 (and (Math-zerop a
) a
)
367 (and (math-known-nonposp a
)
368 (math-imaginary (math-sqrt (math-neg a
))))
370 (let ((sqrt (math-isqrt-small a
)))
371 (if (= (* sqrt sqrt
) a
)
373 (if calc-symbolic-mode
374 (list 'calcFunc-sqrt a
)
375 (math-sqrt-float (math-float a
) (math-float sqrt
))))))
376 (and (eq (car-safe a
) 'bigpos
)
377 (let* ((res (math-isqrt-bignum (cdr a
)))
378 (sqrt (math-normalize (cons 'bigpos
(cdr res
)))))
381 (if calc-symbolic-mode
382 (list 'calcFunc-sqrt a
)
383 (math-sqrt-float (math-float a
) (math-float sqrt
))))))
384 (and (eq (car-safe a
) 'frac
)
385 (let* ((num-res (math-isqrt-bignum (cdr (Math-bignum-test (nth 1 a
)))))
386 (num-sqrt (math-normalize (cons 'bigpos
(cdr num-res
))))
387 (den-res (math-isqrt-bignum (cdr (Math-bignum-test (nth 2 a
)))))
388 (den-sqrt (math-normalize (cons 'bigpos
(cdr den-res
)))))
389 (if (and (car num-res
) (car den-res
))
390 (list 'frac num-sqrt den-sqrt
)
391 (if calc-symbolic-mode
392 (if (or (car num-res
) (car den-res
))
393 (math-div (if (car num-res
)
394 num-sqrt
(list 'calcFunc-sqrt
(nth 1 a
)))
396 den-sqrt
(list 'calcFunc-sqrt
(nth 2 a
))))
397 (list 'calcFunc-sqrt a
))
398 (math-sqrt-float (math-float a
)
399 (math-div (math-float num-sqrt
) den-sqrt
))))))
400 (and (eq (car-safe a
) 'float
)
401 (if calc-symbolic-mode
402 (if (= (%
(nth 2 a
) 2) 0)
403 (let ((res (math-isqrt-bignum
404 (cdr (Math-bignum-test (nth 1 a
))))))
406 (math-make-float (math-normalize
407 (cons 'bigpos
(cdr res
)))
409 (signal 'inexact-result nil
)))
410 (signal 'inexact-result nil
))
411 (math-sqrt-float a
)))
412 (and (eq (car-safe a
) 'cplx
)
413 (math-with-extra-prec 2
414 (let* ((d (math-abs a
))
415 (imag (math-sqrt (math-mul (math-sub d
(nth 1 a
))
418 (math-sqrt (math-mul (math-add d
(nth 1 a
)) '(float 5 -
1)))
419 (if (math-negp (nth 2 a
)) (math-neg imag
) imag
)))))
420 (and (eq (car-safe a
) 'polar
)
422 (math-sqrt (nth 1 a
))
423 (math-mul (nth 2 a
) '(float 5 -
1))))
424 (and (eq (car-safe a
) 'sdev
)
425 (let ((sqrt (math-sqrt (nth 1 a
))))
427 (math-div (nth 2 a
) (math-mul sqrt
2)))))
428 (and (eq (car-safe a
) 'intv
)
429 (not (math-negp (nth 2 a
)))
430 (math-make-intv (nth 1 a
) (math-sqrt (nth 2 a
)) (math-sqrt (nth 3 a
))))
431 (and (eq (car-safe a
) '*)
432 (or (math-known-nonnegp (nth 1 a
))
433 (math-known-nonnegp (nth 2 a
)))
434 (math-mul (math-sqrt (nth 1 a
)) (math-sqrt (nth 2 a
))))
435 (and (eq (car-safe a
) '/)
436 (or (and (math-known-nonnegp (nth 2 a
))
437 (math-div (math-sqrt (nth 1 a
)) (math-sqrt (nth 2 a
))))
438 (and (math-known-nonnegp (nth 1 a
))
439 (not (math-equal-int (nth 1 a
) 1))
440 (math-mul (math-sqrt (nth 1 a
))
441 (math-sqrt (math-div 1 (nth 2 a
)))))))
442 (and (eq (car-safe a
) '^
)
443 (math-known-evenp (nth 2 a
))
444 (math-known-realp (nth 1 a
))
445 (math-abs (math-pow (nth 1 a
) (math-div (nth 2 a
) 2))))
446 (let ((inf (math-infinitep a
)))
448 (math-mul (math-sqrt (math-infinite-dir a inf
)) inf
)))
450 (calc-record-why 'numberp a
)
451 (list 'calcFunc-sqrt a
))))
452 (defalias 'calcFunc-sqrt
'math-sqrt
)
454 (defun math-infinite-dir (a &optional inf
)
455 (or inf
(setq inf
(math-infinitep a
)))
456 (math-normalize (math-expr-subst a inf
1)))
458 (defun math-sqrt-float (a &optional guess
) ; [F F F]
459 (if calc-symbolic-mode
460 (signal 'inexact-result nil
)
461 (math-with-extra-prec 1 (math-sqrt-raw a guess
))))
463 (defun math-sqrt-raw (a &optional guess
) ; [F F F]
464 (if (not (Math-posp a
))
467 (let ((ldiff (- (math-numdigs (nth 1 a
)) 6)))
468 (or (= (%
(+ (nth 2 a
) ldiff
) 2) 0) (setq ldiff
(1+ ldiff
)))
469 (setq guess
(math-make-float (math-isqrt-small
470 (math-scale-int (nth 1 a
) (- ldiff
)))
471 (/ (+ (nth 2 a
) ldiff
) 2)))))
472 (math-sqrt-float-iter a guess
)))
474 (defun math-sqrt-float-iter (a guess
) ; [F F F]
475 (math-working "sqrt" guess
)
476 (let ((g2 (math-mul-float (math-add-float guess
(math-div-float a guess
))
478 (if (math-nearly-equal-float g2 guess
)
480 (math-sqrt-float-iter a g2
))))
482 ;;; True if A and B differ only in the last digit of precision. [P F F]
483 (defun math-nearly-equal-float (a b
)
484 (let ((ediff (- (nth 2 a
) (nth 2 b
))))
485 (cond ((= ediff
0) ;; Expanded out for speed
486 (setq ediff
(math-add (Math-integer-neg (nth 1 a
)) (nth 1 b
)))
488 (and (not (consp ediff
))
491 (= (math-numdigs (nth 1 a
)) calc-internal-prec
))))
493 (setq ediff
(math-add (Math-integer-neg (nth 1 b
))
494 (math-scale-int (nth 1 a
) 1)))
495 (and (not (consp ediff
))
498 (= (math-numdigs (nth 1 b
)) calc-internal-prec
)))
500 (setq ediff
(math-add (Math-integer-neg (nth 1 a
))
501 (math-scale-int (nth 1 b
) 1)))
502 (and (not (consp ediff
))
505 (= (math-numdigs (nth 1 a
)) calc-internal-prec
))))))
507 (defun math-nearly-equal (a b
) ; [P N N] [Public]
508 (setq a
(math-float a
))
509 (setq b
(math-float b
))
510 (if (eq (car a
) 'polar
) (setq a
(math-complex a
)))
511 (if (eq (car b
) 'polar
) (setq b
(math-complex b
)))
512 (if (eq (car a
) 'cplx
)
513 (if (eq (car b
) 'cplx
)
514 (and (or (math-nearly-equal-float (nth 1 a
) (nth 1 b
))
515 (and (math-nearly-zerop-float (nth 1 a
) (nth 2 a
))
516 (math-nearly-zerop-float (nth 1 b
) (nth 2 b
))))
517 (or (math-nearly-equal-float (nth 2 a
) (nth 2 b
))
518 (and (math-nearly-zerop-float (nth 2 a
) (nth 1 a
))
519 (math-nearly-zerop-float (nth 2 b
) (nth 1 b
)))))
520 (and (math-nearly-equal-float (nth 1 a
) b
)
521 (math-nearly-zerop-float (nth 2 a
) b
)))
522 (if (eq (car b
) 'cplx
)
523 (and (math-nearly-equal-float a
(nth 1 b
))
524 (math-nearly-zerop-float a
(nth 2 b
)))
525 (math-nearly-equal-float a b
))))
527 ;;; True if A is nearly zero compared to B. [P F F]
528 (defun math-nearly-zerop-float (a b
)
530 (<= (+ (math-numdigs (nth 1 a
)) (nth 2 a
))
531 (1+ (- (+ (math-numdigs (nth 1 b
)) (nth 2 b
)) calc-internal-prec
)))))
533 (defun math-nearly-zerop (a b
) ; [P N R] [Public]
534 (setq a
(math-float a
))
535 (setq b
(math-float b
))
536 (if (eq (car a
) 'cplx
)
537 (and (math-nearly-zerop-float (nth 1 a
) b
)
538 (math-nearly-zerop-float (nth 2 a
) b
))
539 (if (eq (car a
) 'polar
)
540 (math-nearly-zerop-float (nth 1 a
) b
)
541 (math-nearly-zerop-float a b
))))
543 ;;; This implementation could be improved, accuracy-wise.
544 (defun math-hypot (a b
)
545 (cond ((Math-zerop a
) (math-abs b
))
546 ((Math-zerop b
) (math-abs a
))
547 ((not (Math-scalarp a
))
548 (if (math-infinitep a
)
549 (if (math-infinitep b
)
554 (calc-record-why 'scalarp a
)
555 (list 'calcFunc-hypot a b
)))
556 ((not (Math-scalarp b
))
557 (if (math-infinitep b
)
559 (calc-record-why 'scalarp b
)
560 (list 'calcFunc-hypot a b
)))
561 ((and (Math-numberp a
) (Math-numberp b
))
562 (math-with-extra-prec 1
563 (math-sqrt (math-add (calcFunc-abssqr a
) (calcFunc-abssqr b
)))))
564 ((eq (car-safe a
) 'hms
)
565 (if (eq (car-safe b
) 'hms
) ; this helps sdev's of hms forms
566 (math-to-hms (math-hypot (math-from-hms a
'deg
)
567 (math-from-hms b
'deg
)))
568 (math-to-hms (math-hypot (math-from-hms a
'deg
) b
))))
569 ((eq (car-safe b
) 'hms
)
570 (math-to-hms (math-hypot a
(math-from-hms b
'deg
))))
572 (defalias 'calcFunc-hypot
'math-hypot
)
574 (defun calcFunc-sqr (x)
579 (defun math-nth-root (a n
)
580 (cond ((= n
2) (math-sqrt a
))
584 (let ((root (math-nth-root-integer a n
)))
587 (and (not calc-symbolic-mode
)
588 (math-nth-root-float (math-float a
) n
589 (math-float (cdr root
)))))))
590 ((eq (car-safe a
) 'frac
)
591 (let* ((num-root (math-nth-root-integer (nth 1 a
) n
))
592 (den-root (math-nth-root-integer (nth 2 a
) n
)))
593 (if (and (car num-root
) (car den-root
))
594 (list 'frac
(cdr num-root
) (cdr den-root
))
595 (and (not calc-symbolic-mode
)
598 (math-div-float (math-float (cdr num-root
))
599 (math-float (cdr den-root
))))))))
600 ((eq (car-safe a
) 'float
)
601 (and (not calc-symbolic-mode
)
602 (math-nth-root-float a n
)))
603 ((eq (car-safe a
) 'polar
)
604 (let ((root (math-nth-root (nth 1 a
) n
)))
605 (and root
(list 'polar root
(math-div (nth 2 a
) n
)))))
608 ;; The variables math-nrf-n, math-nrf-nf and math-nrf-nfm1 are local
609 ;; to math-nth-root-float, but are used by math-nth-root-float-iter,
610 ;; which is called by math-nth-root-float.
613 (defvar math-nrf-nfm1
)
615 (defun math-nth-root-float (a math-nrf-n
&optional guess
)
616 (math-inexact-result)
617 (math-with-extra-prec 1
618 (let ((math-nrf-nf (math-float math-nrf-n
))
619 (math-nrf-nfm1 (math-float (1- math-nrf-n
))))
620 (math-nth-root-float-iter a
(or guess
622 1 (/ (+ (math-numdigs (nth 1 a
))
627 (defun math-nth-root-float-iter (a guess
)
628 (math-working "root" guess
)
629 (let ((g2 (math-div-float (math-add-float (math-mul math-nrf-nfm1 guess
)
631 a
(math-ipow guess
(1- math-nrf-n
))))
633 (if (math-nearly-equal-float g2 guess
)
635 (math-nth-root-float-iter a g2
))))
637 ;; The variable math-nri-n is local to math-nth-root-integer, but
638 ;; is used by math-nth-root-int-iter, which is called by
639 ;; math-nth-root-int.
642 (defun math-nth-root-integer (a math-nri-n
&optional guess
) ; [I I S]
643 (math-nth-root-int-iter a
(or guess
644 (math-scale-int 1 (/ (+ (math-numdigs a
)
648 (defun math-nth-root-int-iter (a guess
)
649 (math-working "root" guess
)
650 (let* ((q (math-idivmod a
(math-ipow guess
(1- math-nri-n
))))
651 (s (math-add (car q
) (math-mul (1- math-nri-n
) guess
)))
652 (g2 (math-idivmod s math-nri-n
)))
653 (if (Math-natnum-lessp (car g2
) guess
)
654 (math-nth-root-int-iter a
(car g2
))
655 (cons (and (equal (car g2
) guess
)
660 (defun calcFunc-nroot (x n
)
661 (calcFunc-pow x
(if (integerp n
)
668 ;;;; Transcendental functions.
670 ;;; All of these functions are defined on the complex plane.
671 ;;; (Branch cuts, etc. follow Steele's Common Lisp book.)
673 ;;; Most functions increase calc-internal-prec by 2 digits, then round
674 ;;; down afterward. "-raw" functions use the current precision, require
675 ;;; their arguments to be in float (or complex float) format, and always
676 ;;; work in radians (where applicable).
678 (defun math-to-radians (a) ; [N N]
679 (cond ((eq (car-safe a
) 'hms
)
680 (math-from-hms a
'rad
))
681 ((memq calc-angle-mode
'(deg hms
))
682 (math-mul a
(math-pi-over-180)))
685 (defun math-from-radians (a) ; [N N]
686 (cond ((eq calc-angle-mode
'deg
)
688 (math-div a
(math-pi-over-180))
689 (list 'calcFunc-deg a
)))
690 ((eq calc-angle-mode
'hms
)
691 (math-to-hms a
'rad
))
694 (defun math-to-radians-2 (a) ; [N N]
695 (cond ((eq (car-safe a
) 'hms
)
696 (math-from-hms a
'rad
))
697 ((memq calc-angle-mode
'(deg hms
))
698 (if calc-symbolic-mode
699 (math-div (math-mul a
'(var pi var-pi
)) 180)
700 (math-mul a
(math-pi-over-180))))
703 (defun math-from-radians-2 (a) ; [N N]
704 (cond ((memq calc-angle-mode
'(deg hms
))
705 (if calc-symbolic-mode
706 (math-div (math-mul 180 a
) '(var pi var-pi
))
707 (math-div a
(math-pi-over-180))))
712 ;;; Sine, cosine, and tangent.
714 (defun calcFunc-sin (x) ; [N N] [Public]
715 (cond ((and (integerp x
)
716 (if (eq calc-angle-mode
'deg
)
719 (aref [0 1 0 -
1] (math-mod (/ x
90) 4)))
721 (math-with-extra-prec 2
722 (math-sin-raw (math-to-radians (math-float x
)))))
725 (math-with-extra-prec 2
726 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
727 (xs (math-to-radians (math-float (nth 2 x
))))
728 (sc (math-sin-cos-raw xx
)))
729 (math-make-sdev (car sc
) (math-mul xs
(cdr sc
)))))
730 (math-make-sdev (calcFunc-sin (nth 1 x
))
731 (math-mul (nth 2 x
) (calcFunc-cos (nth 1 x
))))))
732 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
733 (calcFunc-cos (math-sub x
(math-quarter-circle nil
))))
734 ((equal x
'(var nan var-nan
))
736 (t (calc-record-why 'scalarp x
)
737 (list 'calcFunc-sin x
))))
739 (defun calcFunc-cos (x) ; [N N] [Public]
740 (cond ((and (integerp x
)
741 (if (eq calc-angle-mode
'deg
)
744 (aref [1 0 -
1 0] (math-mod (/ x
90) 4)))
746 (math-with-extra-prec 2
747 (math-cos-raw (math-to-radians (math-float x
)))))
750 (math-with-extra-prec 2
751 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
752 (xs (math-to-radians (math-float (nth 2 x
))))
753 (sc (math-sin-cos-raw xx
)))
754 (math-make-sdev (cdr sc
) (math-mul xs
(car sc
)))))
755 (math-make-sdev (calcFunc-cos (nth 1 x
))
756 (math-mul (nth 2 x
) (calcFunc-sin (nth 1 x
))))))
757 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
758 (math-with-extra-prec 2
759 (let* ((xx (math-to-radians (math-float x
)))
760 (na (math-floor (math-div (nth 2 xx
) (math-pi))))
761 (nb (math-floor (math-div (nth 3 xx
) (math-pi))))
762 (span (math-sub nb na
)))
763 (if (memq span
'(0 1))
764 (let ((int (math-sort-intv (nth 1 x
)
765 (math-cos-raw (nth 2 xx
))
766 (math-cos-raw (nth 3 xx
)))))
769 (math-make-intv (logior (nth 1 x
) 2)
772 (math-make-intv (logior (nth 1 x
) 1)
776 (list 'intv
3 -
1 1)))))
777 ((equal x
'(var nan var-nan
))
779 (t (calc-record-why 'scalarp x
)
780 (list 'calcFunc-cos x
))))
782 (defun calcFunc-sincos (x) ; [V N] [Public]
784 (math-with-extra-prec 2
785 (let ((sc (math-sin-cos-raw (math-to-radians (math-float x
)))))
786 (list 'vec
(cdr sc
) (car sc
)))) ; the vector [cos, sin]
787 (list 'vec
(calcFunc-sin x
) (calcFunc-cos x
))))
789 (defun calcFunc-tan (x) ; [N N] [Public]
790 (cond ((and (integerp x
)
791 (if (eq calc-angle-mode
'deg
)
796 (math-with-extra-prec 2
797 (math-tan-raw (math-to-radians (math-float x
)))))
800 (math-with-extra-prec 2
801 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
802 (xs (math-to-radians (math-float (nth 2 x
))))
803 (sc (math-sin-cos-raw xx
)))
804 (if (and (math-zerop (cdr sc
)) (not calc-infinite-mode
))
806 (calc-record-why "*Division by zero")
807 (list 'calcFunc-tan x
))
808 (math-make-sdev (math-div-float (car sc
) (cdr sc
))
809 (math-div-float xs
(math-sqr (cdr sc
)))))))
810 (math-make-sdev (calcFunc-tan (nth 1 x
))
812 (math-sqr (calcFunc-cos (nth 1 x
)))))))
813 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
814 (or (math-with-extra-prec 2
815 (let* ((xx (math-to-radians (math-float x
)))
816 (na (math-floor (math-div (math-sub (nth 2 xx
)
819 (nb (math-floor (math-div (math-sub (nth 3 xx
)
823 (math-sort-intv (nth 1 x
)
824 (math-tan-raw (nth 2 xx
))
825 (math-tan-raw (nth 3 xx
))))))
826 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))))
827 ((equal x
'(var nan var-nan
))
829 (t (calc-record-why 'scalarp x
)
830 (list 'calcFunc-tan x
))))
832 (defun calcFunc-sec (x)
833 (cond ((and (integerp x
)
834 (eq calc-angle-mode
'deg
)
840 (eq calc-angle-mode
'rad
)
844 (math-with-extra-prec 2
845 (math-sec-raw (math-to-radians (math-float x
)))))
848 (math-with-extra-prec 2
849 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
850 (xs (math-to-radians (math-float (nth 2 x
))))
851 (sc (math-sin-cos-raw xx
)))
852 (if (and (math-zerop (cdr sc
))
853 (not calc-infinite-mode
))
855 (calc-record-why "*Division by zero")
856 (list 'calcFunc-sec x
))
857 (math-make-sdev (math-div-float '(float 1 0) (cdr sc
))
859 (math-mul xs
(car sc
))
860 (math-sqr (cdr sc
)))))))
861 (math-make-sdev (calcFunc-sec (nth 1 x
))
864 (calcFunc-sin (nth 1 x
)))
865 (math-sqr (calcFunc-cos (nth 1 x
)))))))
866 ((and (eq (car x
) 'intv
)
867 (math-intv-constp x
))
868 (math-with-extra-prec 2
869 (let* ((xx (math-to-radians (math-float x
)))
870 (na (math-floor (math-div (math-sub (nth 2 xx
)
873 (nb (math-floor (math-div (math-sub (nth 3 xx
)
876 (naa (math-floor (math-div (nth 2 xx
) (math-pi-over-2))))
877 (nbb (math-floor (math-div (nth 3 xx
) (math-pi-over-2))))
878 (span (math-sub nbb naa
)))
879 (if (not (equal na nb
))
880 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))
881 (let ((int (math-sort-intv (nth 1 x
)
882 (math-sec-raw (nth 2 xx
))
883 (math-sec-raw (nth 3 xx
)))))
885 (if (math-evenp (math-div (math-add naa
1) 2))
886 (math-make-intv (logior (nth 1 int
) 2)
889 (math-make-intv (logior (nth 1 int
) 1)
893 ((equal x
'(var nan var-nan
))
895 (t (calc-record-why 'scalarp x
)
896 (list 'calcFunc-sec x
))))
898 (defun calcFunc-csc (x)
899 (cond ((and (integerp x
)
900 (eq calc-angle-mode
'deg
)
901 (= (%
(- x
90) 180) 0))
902 (if (= (%
(- x
90) 360) 0)
906 (math-with-extra-prec 2
907 (math-csc-raw (math-to-radians (math-float x
)))))
910 (math-with-extra-prec 2
911 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
912 (xs (math-to-radians (math-float (nth 2 x
))))
913 (sc (math-sin-cos-raw xx
)))
914 (if (and (math-zerop (car sc
))
915 (not calc-infinite-mode
))
917 (calc-record-why "*Division by zero")
918 (list 'calcFunc-csc x
))
919 (math-make-sdev (math-div-float '(float 1 0) (car sc
))
921 (math-mul xs
(cdr sc
))
922 (math-sqr (car sc
)))))))
923 (math-make-sdev (calcFunc-csc (nth 1 x
))
926 (calcFunc-cos (nth 1 x
)))
927 (math-sqr (calcFunc-sin (nth 1 x
)))))))
928 ((and (eq (car x
) 'intv
)
929 (math-intv-constp x
))
930 (math-with-extra-prec 2
931 (let* ((xx (math-to-radians (math-float x
)))
932 (na (math-floor (math-div (nth 2 xx
) (math-pi))))
933 (nb (math-floor (math-div (nth 3 xx
) (math-pi))))
934 (naa (math-floor (math-div (nth 2 xx
) (math-pi-over-2))))
935 (nbb (math-floor (math-div (nth 3 xx
) (math-pi-over-2))))
936 (span (math-sub nbb naa
)))
937 (if (not (equal na nb
))
938 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))
939 (let ((int (math-sort-intv (nth 1 x
)
940 (math-csc-raw (nth 2 xx
))
941 (math-csc-raw (nth 3 xx
)))))
943 (if (math-evenp (math-div naa
2))
944 (math-make-intv (logior (nth 1 int
) 2)
947 (math-make-intv (logior (nth 1 int
) 1)
951 ((equal x
'(var nan var-nan
))
953 (t (calc-record-why 'scalarp x
)
954 (list 'calcFunc-csc x
))))
956 (defun calcFunc-cot (x) ; [N N] [Public]
957 (cond ((and (integerp x
)
958 (if (eq calc-angle-mode
'deg
)
959 (= (%
(- x
90) 180) 0)
963 (math-with-extra-prec 2
964 (math-cot-raw (math-to-radians (math-float x
)))))
967 (math-with-extra-prec 2
968 (let* ((xx (math-to-radians (math-float (nth 1 x
))))
969 (xs (math-to-radians (math-float (nth 2 x
))))
970 (sc (math-sin-cos-raw xx
)))
971 (if (and (math-zerop (car sc
)) (not calc-infinite-mode
))
973 (calc-record-why "*Division by zero")
974 (list 'calcFunc-cot x
))
975 (math-make-sdev (math-div-float (cdr sc
) (car sc
))
976 (math-div-float xs
(math-sqr (car sc
)))))))
977 (math-make-sdev (calcFunc-cot (nth 1 x
))
979 (math-sqr (calcFunc-sin (nth 1 x
)))))))
980 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
981 (or (math-with-extra-prec 2
982 (let* ((xx (math-to-radians (math-float x
)))
983 (na (math-floor (math-div (nth 2 xx
) (math-pi))))
984 (nb (math-floor (math-div (nth 3 xx
) (math-pi)))))
986 (math-sort-intv (nth 1 x
)
987 (math-cot-raw (nth 2 xx
))
988 (math-cot-raw (nth 3 xx
))))))
989 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))))
990 ((equal x
'(var nan var-nan
))
992 (t (calc-record-why 'scalarp x
)
993 (list 'calcFunc-cot x
))))
995 (defun math-sin-raw (x) ; [N N]
996 (cond ((eq (car x
) 'cplx
)
997 (let* ((expx (math-exp-raw (nth 2 x
)))
998 (expmx (math-div-float '(float 1 0) expx
))
999 (sc (math-sin-cos-raw (nth 1 x
))))
1001 (math-mul-float (car sc
)
1002 (math-mul-float (math-add-float expx expmx
)
1004 (math-mul-float (cdr sc
)
1005 (math-mul-float (math-sub-float expx expmx
)
1007 ((eq (car x
) 'polar
)
1008 (math-polar (math-sin-raw (math-complex x
))))
1009 ((Math-integer-negp (nth 1 x
))
1010 (math-neg-float (math-sin-raw (math-neg-float x
))))
1011 ((math-lessp-float '(float 7 0) x
) ; avoid inf loops due to roundoff
1012 (math-sin-raw (math-mod x
(math-two-pi))))
1013 (t (math-sin-raw-2 x x
))))
1015 (defun math-cos-raw (x) ; [N N]
1016 (if (eq (car-safe x
) 'polar
)
1017 (math-polar (math-cos-raw (math-complex x
)))
1018 (math-sin-raw (math-sub (math-pi-over-2) x
))))
1020 (defun math-sec-raw (x) ; [N N]
1021 (cond ((eq (car x
) 'cplx
)
1022 (let* ((x (math-mul x
'(float 1 0)))
1023 (expx (math-exp-raw (nth 2 x
)))
1024 (expmx (math-div-float '(float 1 0) expx
))
1025 (sh (math-mul-float (math-sub-float expx expmx
) '(float 5 -
1)))
1026 (ch (math-mul-float (math-add-float expx expmx
) '(float 5 -
1)))
1027 (sc (math-sin-cos-raw (nth 1 x
)))
1029 (math-mul-float (math-sqr (car sc
))
1031 (math-mul-float (math-sqr (cdr sc
))
1033 (and (not (eq (nth 1 d
) 0))
1035 (math-div-float (math-mul-float (cdr sc
) ch
) d
)
1036 (math-div-float (math-mul-float (car sc
) sh
) d
)))))
1037 ((eq (car x
) 'polar
)
1038 (math-polar (math-sec-raw (math-complex x
))))
1040 (let ((cs (math-cos-raw x
)))
1043 (math-div-float '(float 1 0) cs
))))))
1045 (defun math-csc-raw (x) ; [N N]
1046 (cond ((eq (car x
) 'cplx
)
1047 (let* ((x (math-mul x
'(float 1 0)))
1048 (expx (math-exp-raw (nth 2 x
)))
1049 (expmx (math-div-float '(float 1 0) expx
))
1050 (sh (math-mul-float (math-sub-float expx expmx
) '(float 5 -
1)))
1051 (ch (math-mul-float (math-add-float expx expmx
) '(float 5 -
1)))
1052 (sc (math-sin-cos-raw (nth 1 x
)))
1054 (math-mul-float (math-sqr (car sc
))
1056 (math-mul-float (math-sqr (cdr sc
))
1058 (and (not (eq (nth 1 d
) 0))
1060 (math-div-float (math-mul-float (car sc
) ch
) d
)
1061 (math-div-float (math-mul-float (cdr sc
) sh
) d
)))))
1062 ((eq (car x
) 'polar
)
1063 (math-polar (math-csc-raw (math-complex x
))))
1065 (let ((sn (math-sin-raw x
)))
1068 (math-div-float '(float 1 0) sn
))))))
1070 (defun math-cot-raw (x) ; [N N]
1071 (cond ((eq (car x
) 'cplx
)
1072 (let* ((x (math-mul x
'(float 1 0)))
1073 (expx (math-exp-raw (nth 2 x
)))
1074 (expmx (math-div-float '(float 1 0) expx
))
1075 (sh (math-mul-float (math-sub-float expx expmx
) '(float 5 -
1)))
1076 (ch (math-mul-float (math-add-float expx expmx
) '(float 5 -
1)))
1077 (sc (math-sin-cos-raw (nth 1 x
)))
1081 (and (not (eq (nth 1 d
) 0))
1084 (math-mul-float (car sc
) (cdr sc
))
1088 (math-mul-float sh ch
)
1090 ((eq (car x
) 'polar
)
1091 (math-polar (math-cot-raw (math-complex x
))))
1093 (let ((sc (math-sin-cos-raw x
)))
1094 (if (eq (nth 1 (car sc
)) 0)
1095 (math-div (cdr sc
) 0)
1096 (math-div-float (cdr sc
) (car sc
)))))))
1099 ;;; This could use a smarter method: Reduce x as in math-sin-raw, then
1100 ;;; compute either sin(x) or cos(x), whichever is smaller, and compute
1101 ;;; the other using the identity sin(x)^2 + cos(x)^2 = 1.
1102 (defun math-sin-cos-raw (x) ; [F.F F] (result is (sin x . cos x))
1103 (cons (math-sin-raw x
) (math-cos-raw x
)))
1105 (defun math-tan-raw (x) ; [N N]
1106 (cond ((eq (car x
) 'cplx
)
1107 (let* ((x (math-mul x
'(float 2 0)))
1108 (expx (math-exp-raw (nth 2 x
)))
1109 (expmx (math-div-float '(float 1 0) expx
))
1110 (sc (math-sin-cos-raw (nth 1 x
)))
1111 (d (math-add-float (cdr sc
)
1112 (math-mul-float (math-add-float expx expmx
)
1114 (and (not (eq (nth 1 d
) 0))
1116 (math-div-float (car sc
) d
)
1117 (math-div-float (math-mul-float (math-sub-float expx
1119 '(float 5 -
1)) d
)))))
1120 ((eq (car x
) 'polar
)
1121 (math-polar (math-tan-raw (math-complex x
))))
1123 (let ((sc (math-sin-cos-raw x
)))
1124 (if (eq (nth 1 (cdr sc
)) 0)
1125 (math-div (car sc
) 0)
1126 (math-div-float (car sc
) (cdr sc
)))))))
1128 (defun math-sin-raw-2 (x orgx
) ; This avoids poss of inf recursion. [F F]
1129 (let ((xmpo2 (math-sub-float (math-pi-over-2) x
)))
1130 (cond ((Math-integer-negp (nth 1 xmpo2
))
1131 (math-neg-float (math-sin-raw-2 (math-sub-float x
(math-pi))
1133 ((math-lessp-float (math-pi-over-4) x
)
1134 (math-cos-raw-2 xmpo2 orgx
))
1135 ((math-lessp-float x
(math-neg (math-pi-over-4)))
1136 (math-neg (math-cos-raw-2 (math-add (math-pi-over-2) x
) orgx
)))
1137 ((math-nearly-zerop-float x orgx
) '(float 0 0))
1138 (calc-symbolic-mode (signal 'inexact-result nil
))
1139 (t (math-sin-series x
6 4 x
(math-neg-float (math-sqr-float x
)))))))
1141 (defun math-cos-raw-2 (x orgx
) ; [F F]
1142 (cond ((math-nearly-zerop-float x orgx
) '(float 1 0))
1143 (calc-symbolic-mode (signal 'inexact-result nil
))
1144 (t (let ((xnegsqr (math-neg-float (math-sqr-float x
))))
1146 (math-add-float '(float 1 0)
1147 (math-mul-float xnegsqr
'(float 5 -
1)))
1148 24 5 xnegsqr xnegsqr
)))))
1150 (defun math-sin-series (sum nfac n x xnegsqr
)
1151 (math-working "sin" sum
)
1152 (let* ((nextx (math-mul-float x xnegsqr
))
1153 (nextsum (math-add-float sum
(math-div-float nextx
1154 (math-float nfac
)))))
1155 (if (math-nearly-equal-float sum nextsum
)
1157 (math-sin-series nextsum
(math-mul nfac
(* n
(1+ n
)))
1158 (+ n
2) nextx xnegsqr
))))
1161 ;;; Inverse sine, cosine, tangent.
1163 (defun calcFunc-arcsin (x) ; [N N] [Public]
1165 ((and (eq x
1) (eq calc-angle-mode
'deg
)) 90)
1166 ((and (eq x -
1) (eq calc-angle-mode
'deg
)) -
90)
1167 (calc-symbolic-mode (signal 'inexact-result nil
))
1169 (math-with-extra-prec 2
1170 (math-from-radians (math-arcsin-raw (math-float x
)))))
1172 (math-make-sdev (calcFunc-arcsin (nth 1 x
))
1176 (math-sub 1 (math-sqr (nth 1 x
))))))))
1178 (math-sort-intv (nth 1 x
)
1179 (calcFunc-arcsin (nth 2 x
))
1180 (calcFunc-arcsin (nth 3 x
))))
1181 ((equal x
'(var nan var-nan
))
1183 (t (calc-record-why 'numberp x
)
1184 (list 'calcFunc-arcsin x
))))
1186 (defun calcFunc-arccos (x) ; [N N] [Public]
1188 ((and (eq x
0) (eq calc-angle-mode
'deg
)) 90)
1189 ((and (eq x -
1) (eq calc-angle-mode
'deg
)) 180)
1190 (calc-symbolic-mode (signal 'inexact-result nil
))
1192 (math-with-extra-prec 2
1193 (math-from-radians (math-arccos-raw (math-float x
)))))
1195 (math-make-sdev (calcFunc-arccos (nth 1 x
))
1199 (math-sub 1 (math-sqr (nth 1 x
))))))))
1201 (math-sort-intv (nth 1 x
)
1202 (calcFunc-arccos (nth 2 x
))
1203 (calcFunc-arccos (nth 3 x
))))
1204 ((equal x
'(var nan var-nan
))
1206 (t (calc-record-why 'numberp x
)
1207 (list 'calcFunc-arccos x
))))
1209 (defun calcFunc-arctan (x) ; [N N] [Public]
1211 ((and (eq x
1) (eq calc-angle-mode
'deg
)) 45)
1212 ((and (eq x -
1) (eq calc-angle-mode
'deg
)) -
45)
1214 (math-with-extra-prec 2
1215 (math-from-radians (math-arctan-raw (math-float x
)))))
1217 (math-make-sdev (calcFunc-arctan (nth 1 x
))
1220 (math-add 1 (math-sqr (nth 1 x
)))))))
1222 (math-sort-intv (nth 1 x
)
1223 (calcFunc-arctan (nth 2 x
))
1224 (calcFunc-arctan (nth 3 x
))))
1225 ((equal x
'(var inf var-inf
))
1226 (math-quarter-circle t
))
1227 ((equal x
'(neg (var inf var-inf
)))
1228 (math-neg (math-quarter-circle t
)))
1229 ((equal x
'(var nan var-nan
))
1231 (t (calc-record-why 'numberp x
)
1232 (list 'calcFunc-arctan x
))))
1234 (defun math-arcsin-raw (x) ; [N N]
1235 (let ((a (math-sqrt-raw (math-sub '(float 1 0) (math-sqr x
)))))
1236 (if (or (memq (car x
) '(cplx polar
))
1237 (memq (car a
) '(cplx polar
)))
1238 (math-with-extra-prec 2 ; use extra precision for difficult case
1239 (math-mul '(cplx 0 -
1)
1240 (math-ln-raw (math-add (math-mul '(cplx 0 1) x
) a
))))
1241 (math-arctan2-raw x a
))))
1243 (defun math-arccos-raw (x) ; [N N]
1244 (math-sub (math-pi-over-2) (math-arcsin-raw x
)))
1246 (defun math-arctan-raw (x) ; [N N]
1247 (cond ((memq (car x
) '(cplx polar
))
1248 (math-with-extra-prec 2 ; extra-extra
1250 (math-ln-raw (math-add 1 (math-mul '(cplx 0 1) x
)))
1251 (math-ln-raw (math-add 1 (math-mul '(cplx 0 -
1) x
))))
1253 ((Math-integer-negp (nth 1 x
))
1254 (math-neg-float (math-arctan-raw (math-neg-float x
))))
1256 (calc-symbolic-mode (signal 'inexact-result nil
))
1257 ((math-equal-int x
1) (math-pi-over-4))
1258 ((math-equal-int x -
1) (math-neg (math-pi-over-4)))
1259 ((math-lessp-float '(float 414214 -
6) x
) ; if x > sqrt(2) - 1, reduce
1260 (if (math-lessp-float '(float 1 0) x
)
1261 (math-sub-float (math-mul-float (math-pi) '(float 5 -
1))
1262 (math-arctan-raw (math-div-float '(float 1 0) x
)))
1263 (math-sub-float (math-mul-float (math-pi) '(float 25 -
2))
1264 (math-arctan-raw (math-div-float
1265 (math-sub-float '(float 1 0) x
)
1266 (math-add-float '(float 1 0)
1268 (t (math-arctan-series x
3 x
(math-neg-float (math-sqr-float x
))))))
1270 (defun math-arctan-series (sum n x xnegsqr
)
1271 (math-working "arctan" sum
)
1272 (let* ((nextx (math-mul-float x xnegsqr
))
1273 (nextsum (math-add-float sum
(math-div-float nextx
(math-float n
)))))
1274 (if (math-nearly-equal-float sum nextsum
)
1276 (math-arctan-series nextsum
(+ n
2) nextx xnegsqr
))))
1278 (defun calcFunc-arctan2 (y x
) ; [F R R] [Public]
1281 (math-with-extra-prec 2
1282 (math-from-radians (math-arctan2-raw (math-float y
)
1284 (calc-record-why 'anglep x
)
1285 (list 'calcFunc-arctan2 y x
))
1286 (if (and (or (math-infinitep x
) (math-anglep x
))
1287 (or (math-infinitep y
) (math-anglep y
)))
1302 (calcFunc-arctan2 y x
)
1303 '(var nan var-nan
)))
1304 (calc-record-why 'anglep y
)
1305 (list 'calcFunc-arctan2 y x
))))
1307 (defun math-arctan2-raw (y x
) ; [F R R]
1308 (cond ((math-zerop y
)
1309 (if (math-negp x
) (math-pi)
1310 (if (or (math-floatp x
) (math-floatp y
)) '(float 0 0) 0)))
1314 (math-neg (math-pi-over-2))))
1316 (math-arctan-raw (math-div-float y x
)))
1318 (math-add-float (math-arctan-raw (math-div-float y x
))
1321 (math-sub-float (math-arctan-raw (math-div-float y x
))
1324 (defun calcFunc-arcsincos (x) ; [V N] [Public]
1325 (if (and (Math-vectorp x
)
1327 (calcFunc-arctan2 (nth 2 x
) (nth 1 x
))
1328 (math-reject-arg x
"*Two-element vector expected")))
1332 ;;; Exponential function.
1334 (defun calcFunc-exp (x) ; [N N] [Public]
1336 ((and (memq x
'(1 -
1)) calc-symbolic-mode
)
1337 (if (eq x
1) '(var e var-e
) (math-div 1 '(var e var-e
))))
1339 (math-with-extra-prec 2 (math-exp-raw (math-float x
))))
1340 ((eq (car-safe x
) 'sdev
)
1341 (let ((ex (calcFunc-exp (nth 1 x
))))
1342 (math-make-sdev ex
(math-mul (nth 2 x
) ex
))))
1343 ((eq (car-safe x
) 'intv
)
1344 (math-make-intv (nth 1 x
) (calcFunc-exp (nth 2 x
))
1345 (calcFunc-exp (nth 3 x
))))
1346 ((equal x
'(var inf var-inf
))
1348 ((equal x
'(neg (var inf var-inf
)))
1350 ((equal x
'(var nan var-nan
))
1352 (t (calc-record-why 'numberp x
)
1353 (list 'calcFunc-exp x
))))
1355 (defun calcFunc-expm1 (x) ; [N N] [Public]
1357 ((math-zerop x
) '(float 0 0))
1358 (calc-symbolic-mode (signal 'inexact-result nil
))
1360 (math-with-extra-prec 2
1361 (let ((x (math-float x
)))
1362 (if (and (eq (car x
) 'float
)
1363 (math-lessp-float x
'(float 1 0))
1364 (math-lessp-float '(float -
1 0) x
))
1365 (math-exp-minus-1-raw x
)
1366 (math-add (math-exp-raw x
) -
1)))))
1367 ((eq (car-safe x
) 'sdev
)
1369 (let ((ex (calcFunc-expm1 (nth 1 x
))))
1370 (math-make-sdev ex
(math-mul (nth 2 x
) (math-add ex
1))))
1371 (math-make-sdev (calcFunc-expm1 (nth 1 x
))
1372 (math-mul (nth 2 x
) (calcFunc-exp (nth 1 x
))))))
1373 ((eq (car-safe x
) 'intv
)
1374 (math-make-intv (nth 1 x
)
1375 (calcFunc-expm1 (nth 2 x
))
1376 (calcFunc-expm1 (nth 3 x
))))
1377 ((equal x
'(var inf var-inf
))
1379 ((equal x
'(neg (var inf var-inf
)))
1381 ((equal x
'(var nan var-nan
))
1383 (t (calc-record-why 'numberp x
)
1384 (list 'calcFunc-expm1 x
))))
1386 (defun calcFunc-exp10 (x) ; [N N] [Public]
1389 (math-pow '(float 1 1) x
)))
1391 (defun math-exp-raw (x) ; [N N]
1392 (cond ((math-zerop x
) '(float 1 0))
1393 (calc-symbolic-mode (signal 'inexact-result nil
))
1395 (let ((expx (math-exp-raw (nth 1 x
)))
1396 (sc (math-sin-cos-raw (nth 2 x
))))
1398 (math-mul-float expx
(cdr sc
))
1399 (math-mul-float expx
(car sc
)))))
1400 ((eq (car x
) 'polar
)
1401 (let ((xc (math-complex x
)))
1403 (math-exp-raw (nth 1 xc
))
1404 (math-from-radians (nth 2 xc
)))))
1405 ((or (math-lessp-float '(float 5 -
1) x
)
1406 (math-lessp-float x
'(float -
5 -
1)))
1407 (if (math-lessp-float '(float 921035 1) x
)
1409 (if (math-lessp-float x
'(float -
921035 1))
1411 (let* ((two-x (math-mul-float x
'(float 2 0)))
1412 (hint (math-scale-int (nth 1 two-x
) (nth 2 two-x
)))
1413 (hfrac (math-sub-float x
(math-mul-float (math-float hint
)
1415 (math-mul-float (math-ipow (math-sqrt-e) hint
)
1416 (math-add-float '(float 1 0)
1417 (math-exp-minus-1-raw hfrac
)))))
1418 (t (math-add-float '(float 1 0) (math-exp-minus-1-raw x
)))))
1420 (defun math-exp-minus-1-raw (x) ; [F F]
1421 (math-exp-series x
2 3 x x
))
1423 (defun math-exp-series (sum nfac n xpow x
)
1424 (math-working "exp" sum
)
1425 (let* ((nextx (math-mul-float xpow x
))
1426 (nextsum (math-add-float sum
(math-div-float nextx
1427 (math-float nfac
)))))
1428 (if (math-nearly-equal-float sum nextsum
)
1430 (math-exp-series nextsum
(math-mul nfac n
) (1+ n
) nextx x
))))
1436 (defun calcFunc-ln (x) ; [N N] [Public]
1437 (cond ((math-zerop x
)
1438 (if calc-infinite-mode
1439 '(neg (var inf var-inf
))
1440 (math-reject-arg x
"*Logarithm of zero")))
1443 (math-with-extra-prec 2 (math-ln-raw (math-float x
))))
1444 ((eq (car-safe x
) 'sdev
)
1445 (math-make-sdev (calcFunc-ln (nth 1 x
))
1446 (math-div (nth 2 x
) (nth 1 x
))))
1447 ((and (eq (car-safe x
) 'intv
) (or (Math-posp (nth 2 x
))
1448 (Math-zerop (nth 2 x
))
1449 (not (math-intv-constp x
))))
1450 (let ((calc-infinite-mode t
))
1451 (math-make-intv (nth 1 x
) (calcFunc-ln (nth 2 x
))
1452 (calcFunc-ln (nth 3 x
)))))
1453 ((equal x
'(var e var-e
))
1455 ((and (eq (car-safe x
) '^
)
1456 (equal (nth 1 x
) '(var e var-e
))
1457 (math-known-realp (nth 2 x
)))
1460 (if (equal x
'(var nan var-nan
))
1462 '(var inf var-inf
)))
1463 (t (calc-record-why 'numberp x
)
1464 (list 'calcFunc-ln x
))))
1466 (defun calcFunc-log10 (x) ; [N N] [Public]
1467 (cond ((math-equal-int x
1)
1468 (if (math-floatp x
) '(float 0 0) 0))
1469 ((and (Math-integerp x
)
1471 (let ((res (math-integer-log x
10)))
1473 (setq x
(cdr res
)))))
1475 ((and (eq (car-safe x
) 'frac
)
1477 (let ((res (math-integer-log (nth 2 x
) 10)))
1479 (setq x
(- (cdr res
))))))
1482 (if calc-infinite-mode
1483 '(neg (var inf var-inf
))
1484 (math-reject-arg x
"*Logarithm of zero")))
1485 (calc-symbolic-mode (signal 'inexact-result nil
))
1487 (math-with-extra-prec 2
1488 (let ((xf (math-float x
)))
1489 (if (eq (nth 1 xf
) 0)
1490 (math-reject-arg x
"*Logarithm of zero"))
1491 (if (Math-integer-posp (nth 1 xf
))
1492 (if (eq (nth 1 xf
) 1) ; log10(1*10^n) = n
1493 (math-float (nth 2 xf
))
1494 (let ((xdigs (1- (math-numdigs (nth 1 xf
)))))
1496 (math-div-float (math-ln-raw-2
1497 (list 'float
(nth 1 xf
) (- xdigs
)))
1499 (math-float (+ (nth 2 xf
) xdigs
)))))
1500 (math-div (calcFunc-ln xf
) (math-ln-10))))))
1501 ((eq (car-safe x
) 'sdev
)
1502 (math-make-sdev (calcFunc-log10 (nth 1 x
))
1504 (math-mul (nth 1 x
) (math-ln-10)))))
1505 ((and (eq (car-safe x
) 'intv
) (or (Math-posp (nth 2 x
))
1506 (not (math-intv-constp x
))))
1507 (math-make-intv (nth 1 x
)
1508 (calcFunc-log10 (nth 2 x
))
1509 (calcFunc-log10 (nth 3 x
))))
1511 (if (equal x
'(var nan var-nan
))
1513 '(var inf var-inf
)))
1514 (t (calc-record-why 'numberp x
)
1515 (list 'calcFunc-log10 x
))))
1517 (defun calcFunc-log (x &optional b
) ; [N N N] [Public]
1518 (cond ((or (null b
) (equal b
'(var e var-e
)))
1519 (math-normalize (list 'calcFunc-ln x
)))
1520 ((or (eq b
10) (equal b
'(float 1 1)))
1521 (math-normalize (list 'calcFunc-log10 x
)))
1523 (if calc-infinite-mode
1524 (math-div (calcFunc-ln x
) (calcFunc-ln b
))
1525 (math-reject-arg x
"*Logarithm of zero")))
1527 (if calc-infinite-mode
1528 (math-div (calcFunc-ln x
) (calcFunc-ln b
))
1529 (math-reject-arg b
"*Logarithm of zero")))
1530 ((math-equal-int b
1)
1531 (if calc-infinite-mode
1532 (math-div (calcFunc-ln x
) 0)
1533 (math-reject-arg b
"*Logarithm base one")))
1534 ((math-equal-int x
1)
1535 (if (math-floatp b
) '(float 0 0) 0))
1536 ((and (Math-ratp x
) (Math-ratp b
)
1537 (math-posp x
) (math-posp b
)
1538 (let* ((sign 1) (inv nil
)
1539 (xx (if (Math-lessp 1 x
)
1543 (bb (if (Math-lessp 1 b
)
1545 (setq sign
(- sign
))
1547 (res (if (Math-lessp xx bb
)
1548 (setq inv
(math-integer-log bb xx
))
1549 (math-integer-log xx bb
))))
1552 (math-div 1 (* sign
(cdr res
)))
1553 (* sign
(cdr res
)))))))
1555 (calc-symbolic-mode (signal 'inexact-result nil
))
1556 ((and (Math-numberp x
) (Math-numberp b
))
1557 (math-with-extra-prec 2
1558 (math-div (math-ln-raw (math-float x
))
1559 (math-log-base-raw b
))))
1560 ((and (eq (car-safe x
) 'sdev
)
1562 (math-make-sdev (calcFunc-log (nth 1 x
) b
)
1565 (math-log-base-raw b
)))))
1566 ((and (eq (car-safe x
) 'intv
) (or (Math-posp (nth 2 x
))
1567 (not (math-intv-constp x
)))
1569 (math-make-intv (nth 1 x
)
1570 (calcFunc-log (nth 2 x
) b
)
1571 (calcFunc-log (nth 3 x
) b
)))
1572 ((or (eq (car-safe x
) 'intv
) (eq (car-safe b
) 'intv
))
1573 (math-div (calcFunc-ln x
) (calcFunc-ln b
)))
1574 ((or (math-infinitep x
)
1576 (math-div (calcFunc-ln x
) (calcFunc-ln b
)))
1577 (t (if (Math-numberp b
)
1578 (calc-record-why 'numberp x
)
1579 (calc-record-why 'numberp b
))
1580 (list 'calcFunc-log x b
))))
1582 (defun calcFunc-alog (x &optional b
)
1583 (cond ((or (null b
) (equal b
'(var e var-e
)))
1584 (math-normalize (list 'calcFunc-exp x
)))
1585 (t (math-pow b x
))))
1587 (defun calcFunc-ilog (x b
)
1588 (if (and (math-natnump x
) (not (eq x
0))
1589 (math-natnump b
) (not (eq b
0)))
1591 (math-reject-arg x
"*Logarithm base one")
1592 (if (Math-natnum-lessp x b
)
1594 (cdr (math-integer-log x b
))))
1595 (math-floor (calcFunc-log x b
))))
1597 (defun math-integer-log (x b
)
1598 (let ((pows (list b
))
1602 (while (not (Math-lessp x pow
))
1603 (setq pows
(cons pow pows
)
1604 pow
(math-sqr pow
)))
1605 (setq n
(lsh 1 (1- (length pows
)))
1608 (while (and (setq pows
(cdr pows
))
1611 next
(math-mul pow
(car pows
)))
1612 (or (Math-lessp x next
)
1615 (cons (equal pow x
) sum
)))
1618 (defvar math-log-base-cache nil
)
1619 (defun math-log-base-raw (b) ; [N N]
1620 (if (not (and (equal (car math-log-base-cache
) b
)
1621 (eq (nth 1 math-log-base-cache
) calc-internal-prec
)))
1622 (setq math-log-base-cache
(list b calc-internal-prec
1623 (math-ln-raw (math-float b
)))))
1624 (nth 2 math-log-base-cache
))
1626 (defun calcFunc-lnp1 (x) ; [N N] [Public]
1627 (cond ((Math-equal-int x -
1)
1628 (if calc-infinite-mode
1629 '(neg (var inf var-inf
))
1630 (math-reject-arg x
"*Logarithm of zero")))
1632 ((math-zerop x
) '(float 0 0))
1633 (calc-symbolic-mode (signal 'inexact-result nil
))
1635 (math-with-extra-prec 2
1636 (let ((x (math-float x
)))
1637 (if (and (eq (car x
) 'float
)
1638 (math-lessp-float x
'(float 5 -
1))
1639 (math-lessp-float '(float -
5 -
1) x
))
1640 (math-ln-plus-1-raw x
)
1641 (math-ln-raw (math-add-float x
'(float 1 0)))))))
1642 ((eq (car-safe x
) 'sdev
)
1643 (math-make-sdev (calcFunc-lnp1 (nth 1 x
))
1644 (math-div (nth 2 x
) (math-add (nth 1 x
) 1))))
1645 ((and (eq (car-safe x
) 'intv
) (or (Math-posp (nth 2 x
))
1646 (not (math-intv-constp x
))))
1647 (math-make-intv (nth 1 x
)
1648 (calcFunc-lnp1 (nth 2 x
))
1649 (calcFunc-lnp1 (nth 3 x
))))
1651 (if (equal x
'(var nan var-nan
))
1653 '(var inf var-inf
)))
1654 (t (calc-record-why 'numberp x
)
1655 (list 'calcFunc-lnp1 x
))))
1657 (defun math-ln-raw (x) ; [N N] --- must be float format!
1658 (cond ((eq (car-safe x
) 'cplx
)
1660 (math-mul-float (math-ln-raw
1661 (math-add-float (math-sqr-float (nth 1 x
))
1662 (math-sqr-float (nth 2 x
))))
1664 (math-arctan2-raw (nth 2 x
) (nth 1 x
))))
1665 ((eq (car x
) 'polar
)
1666 (math-polar (list 'cplx
1667 (math-ln-raw (nth 1 x
))
1668 (math-to-radians (nth 2 x
)))))
1669 ((Math-equal-int x
1)
1671 (calc-symbolic-mode (signal 'inexact-result nil
))
1672 ((math-posp (nth 1 x
)) ; positive and real
1673 (let ((xdigs (1- (math-numdigs (nth 1 x
)))))
1674 (math-add-float (math-ln-raw-2 (list 'float
(nth 1 x
) (- xdigs
)))
1675 (math-mul-float (math-float (+ (nth 2 x
) xdigs
))
1678 (math-reject-arg x
"*Logarithm of zero"))
1679 ((eq calc-complex-mode
'polar
) ; negative and real
1681 (list 'cplx
; negative and real
1682 (math-ln-raw (math-neg-float x
))
1684 (t (list 'cplx
; negative and real
1685 (math-ln-raw (math-neg-float x
))
1688 (defun math-ln-raw-2 (x) ; [F F]
1689 (cond ((math-lessp-float '(float 14 -
1) x
)
1690 (math-add-float (math-ln-raw-2 (math-mul-float x
'(float 5 -
1)))
1692 (t ; now .7 < x <= 1.4
1693 (math-ln-raw-3 (math-div-float (math-sub-float x
'(float 1 0))
1694 (math-add-float x
'(float 1 0)))))))
1696 (defun math-ln-raw-3 (x) ; [F F]
1697 (math-mul-float (math-ln-raw-series x
3 x
(math-sqr-float x
))
1700 ;;; Compute ln((1+x)/(1-x))
1701 (defun math-ln-raw-series (sum n x xsqr
)
1702 (math-working "log" sum
)
1703 (let* ((nextx (math-mul-float x xsqr
))
1704 (nextsum (math-add-float sum
(math-div-float nextx
(math-float n
)))))
1705 (if (math-nearly-equal-float sum nextsum
)
1707 (math-ln-raw-series nextsum
(+ n
2) nextx xsqr
))))
1709 (defun math-ln-plus-1-raw (x)
1710 (math-lnp1-series x
2 x
(math-neg x
)))
1712 (defun math-lnp1-series (sum n xpow x
)
1713 (math-working "lnp1" sum
)
1714 (let* ((nextx (math-mul-float xpow x
))
1715 (nextsum (math-add-float sum
(math-div-float nextx
(math-float n
)))))
1716 (if (math-nearly-equal-float sum nextsum
)
1718 (math-lnp1-series nextsum
(1+ n
) nextx x
))))
1720 (math-defcache math-ln-10
(float (bigpos 018 684 045 994 092 585 302 2) -
21)
1721 (math-ln-raw-2 '(float 1 1)))
1723 (math-defcache math-ln-2
(float (bigpos 417 309 945 559 180 147 693) -
21)
1724 (math-ln-raw-3 (math-float '(frac 1 3))))
1728 ;;; Hyperbolic functions.
1730 (defun calcFunc-sinh (x) ; [N N] [Public]
1732 (math-expand-formulas
1734 (list '/ (list '-
(list 'calcFunc-exp x
)
1735 (list 'calcFunc-exp
(list 'neg x
))) 2)))
1737 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1738 (math-with-extra-prec 2
1739 (let ((expx (math-exp-raw (math-float x
))))
1740 (math-mul (math-add expx
(math-div -
1 expx
)) '(float 5 -
1)))))
1741 ((eq (car-safe x
) 'sdev
)
1742 (math-make-sdev (calcFunc-sinh (nth 1 x
))
1743 (math-mul (nth 2 x
) (calcFunc-cosh (nth 1 x
)))))
1745 (math-sort-intv (nth 1 x
)
1746 (calcFunc-sinh (nth 2 x
))
1747 (calcFunc-sinh (nth 3 x
))))
1748 ((or (equal x
'(var inf var-inf
))
1749 (equal x
'(neg (var inf var-inf
)))
1750 (equal x
'(var nan var-nan
)))
1752 (t (calc-record-why 'numberp x
)
1753 (list 'calcFunc-sinh x
))))
1754 (put 'calcFunc-sinh
'math-expandable t
)
1756 (defun calcFunc-cosh (x) ; [N N] [Public]
1758 (math-expand-formulas
1760 (list '/ (list '+ (list 'calcFunc-exp x
)
1761 (list 'calcFunc-exp
(list 'neg x
))) 2)))
1763 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1764 (math-with-extra-prec 2
1765 (let ((expx (math-exp-raw (math-float x
))))
1766 (math-mul (math-add expx
(math-div 1 expx
)) '(float 5 -
1)))))
1767 ((eq (car-safe x
) 'sdev
)
1768 (math-make-sdev (calcFunc-cosh (nth 1 x
))
1770 (calcFunc-sinh (nth 1 x
)))))
1771 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
1772 (setq x
(math-abs x
))
1773 (math-sort-intv (nth 1 x
)
1774 (calcFunc-cosh (nth 2 x
))
1775 (calcFunc-cosh (nth 3 x
))))
1776 ((or (equal x
'(var inf var-inf
))
1777 (equal x
'(neg (var inf var-inf
)))
1778 (equal x
'(var nan var-nan
)))
1780 (t (calc-record-why 'numberp x
)
1781 (list 'calcFunc-cosh x
))))
1782 (put 'calcFunc-cosh
'math-expandable t
)
1784 (defun calcFunc-tanh (x) ; [N N] [Public]
1786 (math-expand-formulas
1788 (let ((expx (list 'calcFunc-exp x
))
1789 (expmx (list 'calcFunc-exp
(list 'neg x
))))
1791 (list '/ (list '- expx expmx
) (list '+ expx expmx
))))))
1793 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1794 (math-with-extra-prec 2
1795 (let* ((expx (calcFunc-exp (math-float x
)))
1796 (expmx (math-div 1 expx
)))
1797 (math-div (math-sub expx expmx
)
1798 (math-add expx expmx
)))))
1799 ((eq (car-safe x
) 'sdev
)
1800 (math-make-sdev (calcFunc-tanh (nth 1 x
))
1802 (math-sqr (calcFunc-cosh (nth 1 x
))))))
1804 (math-sort-intv (nth 1 x
)
1805 (calcFunc-tanh (nth 2 x
))
1806 (calcFunc-tanh (nth 3 x
))))
1807 ((equal x
'(var inf var-inf
))
1809 ((equal x
'(neg (var inf var-inf
)))
1811 ((equal x
'(var nan var-nan
))
1813 (t (calc-record-why 'numberp x
)
1814 (list 'calcFunc-tanh x
))))
1815 (put 'calcFunc-tanh
'math-expandable t
)
1817 (defun calcFunc-sech (x) ; [N N] [Public]
1819 (math-expand-formulas
1821 (list '/ 2 (list '+ (list 'calcFunc-exp x
)
1822 (list 'calcFunc-exp
(list 'neg x
))))))
1824 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1825 (math-with-extra-prec 2
1826 (let ((expx (math-exp-raw (math-float x
))))
1827 (math-div '(float 2 0) (math-add expx
(math-div 1 expx
))))))
1828 ((eq (car-safe x
) 'sdev
)
1829 (math-make-sdev (calcFunc-sech (nth 1 x
))
1831 (math-mul (calcFunc-sech (nth 1 x
))
1832 (calcFunc-tanh (nth 1 x
))))))
1833 ((and (eq (car x
) 'intv
) (math-intv-constp x
))
1834 (setq x
(math-abs x
))
1835 (math-sort-intv (nth 1 x
)
1836 (calcFunc-sech (nth 2 x
))
1837 (calcFunc-sech (nth 3 x
))))
1838 ((or (equal x
'(var inf var-inf
))
1839 (equal x
'(neg (var inf var-inf
))))
1841 ((equal x
'(var nan var-nan
))
1843 (t (calc-record-why 'numberp x
)
1844 (list 'calcFunc-sech x
))))
1845 (put 'calcFunc-sech
'math-expandable t
)
1847 (defun calcFunc-csch (x) ; [N N] [Public]
1848 (cond ((eq x
0) (math-div 1 0))
1849 (math-expand-formulas
1851 (list '/ 2 (list '-
(list 'calcFunc-exp x
)
1852 (list 'calcFunc-exp
(list 'neg x
))))))
1854 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1855 (math-with-extra-prec 2
1856 (let ((expx (math-exp-raw (math-float x
))))
1857 (math-div '(float 2 0) (math-add expx
(math-div -
1 expx
))))))
1858 ((eq (car-safe x
) 'sdev
)
1859 (math-make-sdev (calcFunc-csch (nth 1 x
))
1861 (math-mul (calcFunc-csch (nth 1 x
))
1862 (calcFunc-coth (nth 1 x
))))))
1864 (if (and (Math-negp (nth 2 x
))
1865 (Math-posp (nth 3 x
)))
1866 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))
1867 (math-sort-intv (nth 1 x
)
1868 (calcFunc-csch (nth 2 x
))
1869 (calcFunc-csch (nth 3 x
)))))
1870 ((or (equal x
'(var inf var-inf
))
1871 (equal x
'(neg (var inf var-inf
))))
1873 ((equal x
'(var nan var-nan
))
1875 (t (calc-record-why 'numberp x
)
1876 (list 'calcFunc-csch x
))))
1877 (put 'calcFunc-csch
'math-expandable t
)
1879 (defun calcFunc-coth (x) ; [N N] [Public]
1880 (cond ((eq x
0) (math-div 1 0))
1881 (math-expand-formulas
1883 (let ((expx (list 'calcFunc-exp x
))
1884 (expmx (list 'calcFunc-exp
(list 'neg x
))))
1886 (list '/ (list '+ expx expmx
) (list '- expx expmx
))))))
1888 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1889 (math-with-extra-prec 2
1890 (let* ((expx (calcFunc-exp (math-float x
)))
1891 (expmx (math-div 1 expx
)))
1892 (math-div (math-add expx expmx
)
1893 (math-sub expx expmx
)))))
1894 ((eq (car-safe x
) 'sdev
)
1895 (math-make-sdev (calcFunc-coth (nth 1 x
))
1897 (math-sqr (calcFunc-sinh (nth 1 x
))))))
1899 (if (and (Math-negp (nth 2 x
))
1900 (Math-posp (nth 3 x
)))
1901 '(intv 3 (neg (var inf var-inf
)) (var inf var-inf
))
1902 (math-sort-intv (nth 1 x
)
1903 (calcFunc-coth (nth 2 x
))
1904 (calcFunc-coth (nth 3 x
)))))
1905 ((equal x
'(var inf var-inf
))
1907 ((equal x
'(neg (var inf var-inf
)))
1909 ((equal x
'(var nan var-nan
))
1911 (t (calc-record-why 'numberp x
)
1912 (list 'calcFunc-coth x
))))
1913 (put 'calcFunc-coth
'math-expandable t
)
1915 (defun calcFunc-arcsinh (x) ; [N N] [Public]
1917 (math-expand-formulas
1919 (list 'calcFunc-ln
(list '+ x
(list 'calcFunc-sqrt
1920 (list '+ (list '^ x
2) 1))))))
1922 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1923 (math-with-extra-prec 2
1924 (math-ln-raw (math-add x
(math-sqrt-raw (math-add (math-sqr x
)
1926 ((eq (car-safe x
) 'sdev
)
1927 (math-make-sdev (calcFunc-arcsinh (nth 1 x
))
1930 (math-add (math-sqr (nth 1 x
)) 1)))))
1932 (math-sort-intv (nth 1 x
)
1933 (calcFunc-arcsinh (nth 2 x
))
1934 (calcFunc-arcsinh (nth 3 x
))))
1935 ((or (equal x
'(var inf var-inf
))
1936 (equal x
'(neg (var inf var-inf
)))
1937 (equal x
'(var nan var-nan
)))
1939 (t (calc-record-why 'numberp x
)
1940 (list 'calcFunc-arcsinh x
))))
1941 (put 'calcFunc-arcsinh
'math-expandable t
)
1943 (defun calcFunc-arccosh (x) ; [N N] [Public]
1945 ((and (eq x -
1) calc-symbolic-mode
)
1947 ((and (eq x
0) calc-symbolic-mode
)
1948 (math-div (math-mul '(var pi var-pi
) '(var i var-i
)) 2))
1949 (math-expand-formulas
1951 (list 'calcFunc-ln
(list '+ x
(list 'calcFunc-sqrt
1952 (list '-
(list '^ x
2) 1))))))
1954 (if calc-symbolic-mode
(signal 'inexact-result nil
))
1955 (if (Math-equal-int x -
1)
1956 (math-imaginary (math-pi))
1957 (math-with-extra-prec 2
1958 (if (or t
; need to do this even in the real case!
1959 (memq (car-safe x
) '(cplx polar
)))
1960 (let ((xp1 (math-add 1 x
))) ; this gets the branch cuts right
1962 (math-add x
(math-mul xp1
1969 (math-add x
(math-sqrt-raw (math-add (math-sqr x
)
1970 '(float -
1 0)))))))))
1971 ((eq (car-safe x
) 'sdev
)
1972 (math-make-sdev (calcFunc-arccosh (nth 1 x
))
1975 (math-add (math-sqr (nth 1 x
)) -
1)))))
1977 (math-sort-intv (nth 1 x
)
1978 (calcFunc-arccosh (nth 2 x
))
1979 (calcFunc-arccosh (nth 3 x
))))
1980 ((or (equal x
'(var inf var-inf
))
1981 (equal x
'(neg (var inf var-inf
)))
1982 (equal x
'(var nan var-nan
)))
1984 (t (calc-record-why 'numberp x
)
1985 (list 'calcFunc-arccosh x
))))
1986 (put 'calcFunc-arccosh
'math-expandable t
)
1988 (defun calcFunc-arctanh (x) ; [N N] [Public]
1990 ((and (Math-equal-int x
1) calc-infinite-mode
)
1992 ((and (Math-equal-int x -
1) calc-infinite-mode
)
1993 '(neg (var inf var-inf
)))
1994 (math-expand-formulas
1996 (list 'calcFunc-ln
(list '+ 1 x
))
1997 (list 'calcFunc-ln
(list '-
1 x
))) 2))
1999 (if calc-symbolic-mode
(signal 'inexact-result nil
))
2000 (math-with-extra-prec 2
2001 (if (or (memq (car-safe x
) '(cplx polar
))
2003 (math-mul (math-sub (math-ln-raw (math-add '(float 1 0) x
))
2004 (math-ln-raw (math-sub '(float 1 0) x
)))
2006 (if (and (math-equal-int x
1) calc-infinite-mode
)
2008 (if (and (math-equal-int x -
1) calc-infinite-mode
)
2009 '(neg (var inf var-inf
))
2010 (math-mul (math-ln-raw (math-div (math-add '(float 1 0) x
)
2013 ((eq (car-safe x
) 'sdev
)
2014 (math-make-sdev (calcFunc-arctanh (nth 1 x
))
2016 (math-sub 1 (math-sqr (nth 1 x
))))))
2018 (math-sort-intv (nth 1 x
)
2019 (calcFunc-arctanh (nth 2 x
))
2020 (calcFunc-arctanh (nth 3 x
))))
2021 ((equal x
'(var nan var-nan
))
2023 (t (calc-record-why 'numberp x
)
2024 (list 'calcFunc-arctanh x
))))
2025 (put 'calcFunc-arctanh
'math-expandable t
)
2028 ;;; Convert A from HMS or degrees to radians.
2029 (defun calcFunc-rad (a) ; [R R] [Public]
2030 (cond ((or (Math-numberp a
)
2032 (math-with-extra-prec 2
2033 (math-mul a
(math-pi-over-180))))
2035 (math-from-hms a
'rad
))
2037 (math-make-sdev (calcFunc-rad (nth 1 a
))
2038 (calcFunc-rad (nth 2 a
))))
2039 (math-expand-formulas
2040 (math-div (math-mul a
'(var pi var-pi
)) 180))
2041 ((math-infinitep a
) a
)
2042 (t (list 'calcFunc-rad a
))))
2043 (put 'calcFunc-rad
'math-expandable t
)
2045 ;;; Convert A from HMS or radians to degrees.
2046 (defun calcFunc-deg (a) ; [R R] [Public]
2047 (cond ((or (Math-numberp a
)
2049 (math-with-extra-prec 2
2050 (math-div a
(math-pi-over-180))))
2052 (math-from-hms a
'deg
))
2054 (math-make-sdev (calcFunc-deg (nth 1 a
))
2055 (calcFunc-deg (nth 2 a
))))
2056 (math-expand-formulas
2057 (math-div (math-mul 180 a
) '(var pi var-pi
)))
2058 ((math-infinitep a
) a
)
2059 (t (list 'calcFunc-deg a
))))
2060 (put 'calcFunc-deg
'math-expandable t
)
2062 (provide 'calc-math
)
2064 ;;; arch-tag: c7367e8e-d0b8-4f70-8577-2fb3f31dbb4c
2065 ;;; calc-math.el ends here