(clear) ; 10.6.1.1 (defglobal ?*pi1/4* = (* (pi) 0.25) ?*pi1/2* = (* (pi) 0.50) ?*pi3/4* = (* (pi) 0.75) ?*pi5/4* = (* (pi) 1.25) ?*pi3/2* = (* (pi) 1.50) ?*pi7/4* = (* (pi) 1.75) ?*pi2* = (* (pi) 2.00) ?*pi7* = (* (pi) 7.00) ?*pi-9/2* = (* (pi) -4.50)) (reset) (+) ; 10.6.1.1 (+ 1) ; 10.6.1.1 (+ a) ; 10.6.1.1 (+ 2 [a]) ; 10.6.1.1 (+ 1 2) ; 10.6.1.1 : 3 (+ 4 5.0 8) ; 10.6.1.1 : 17.0 (+ 2.3 3.2) ; 10.6.1.1 : 5.5 (+ 12 3.5) ; 10.6.1.1 : 15.5 (+ 7.5 123) ; 10.6.1.1 : 130.5 (+ -10 5) ; 10.6.1.1 : -5 (+ 13.5 -26) ; 10.6.1.1 : -12.5 (+ -26 14.5) ; 10.6.1.1 : -11.5 (-) ; 10.6.1.2 (- 1) ; 10.6.1.2 (- a) ; 10.6.1.2 (- 2 "a") ; 10.6.1.2 (- 1 2) ; 10.6.1.2 : -1 (- 24 5.0 8) ; 10.6.1.2 : 11.0 (format nil "%0.6f" (- 2.3 3.2)) ; 10.6.1.2 : -0.9 (- 12 3.5) ; 10.6.1.2 : 8.5 (- 7.5 123) ; 10.6.1.2 : - 115.5 (- -10 5) ; 10.6.1.2 : -15 (- 13.5 -26) ; 10.6.1.2 : 39.5 (- -26 14.5) ; 10.6.1.2 : -40.5 (*) ; 10.6.1.3 (* 1) ; 10.6.1.3 (* (create$)) ; 10.6.1.3 (* 2 [b]) ; 10.6.1.3 (* 2 3) ; 10.6.1.3 : 6 (format nil "%0.6f" (* -3.5 8.6)) ; 10.6.1.3 : -30.1 (format nil "%0.6f" (* 4 11.1)) ; 10.6.1.3 : 44.4 (format nil "%0.6f" (* -13.2 -6)) ; 10.6.1.3 : 79.2 (format nil "%0.6f" (* 2 3.7 1.2)) ; 10.6.1.3 : 8.88 (/) ; 10.6.1.4 (/ 1) ; 10.6.1.4 (/ c) ; 10.6.1.4 (/ 2 a) ; 10.6.1.4 (/ 4 0) ; 10.6.1.4 (/ 4 0.0) ; 10.6.1.4 (format nil "%0.6f" (/ 2 3)) ; 10.6.1.3 : 0.666667 (format nil "%0.6f" (/ -3.5 8.6)) ; 10.6.1.3 : -0.406977 (format nil "%0.6f" (/ 4 11.1)) ; 10.6.1.3 : 0.360360 (format nil "%0.6f" (/ -13.2 -6)) ; 10.6.1.3 : 2.2 (format nil "%0.6f" (/ 2 3.7 1.2)) ; 10.6.1.3 : 0.450450 (div) ; 10.6.1.5 (div 1) ; 10.6.1.5 (div a) ; 10.6.1.5 (div 1 0.0) ; 10.6.1.5 (div 1 0) ; 10.6.1.5 (div 1 0.4) ; 10.6.1.5 (div 5 2) ; 10.6.1.5 : 2 (div 19 2 2) ; 10.6.1.5 : 4 (div 7.5 1.5) ; 10.6.1.5 : 7 (max) ; 10.6.1.6 (max a) ; 10.6.1.7 (max 1) ; 10.6.1.7 (max 1 2.0) ; 10.6.1.7 : 2.0 (max 2.0 1) ; 10.6.1.7 : 2.0 (max 1.0 1) ; 10.6.1.7 : 1.0 (max 1 1.0) ; 10.6.1.7 : 1 (max -3.0 2.0 4.0) ; 10.6.1.7 : 4.0 (max 2.0 4 3.0) ; 10.6.1.7 : 4 (max 3.0 4.0 -2.0) ; 10.6.1.7 : 4.0 (max 4 -2.0 -3.0) ; 10.6.1.7 : 4 (max 4.0 -3.0 2.0) ; 10.6.1.7 : 4.0 (max 2.0 3.0 4.0) ; 10.6.1.6 : 4.0 (min) ; 10.6.1.7 (min a) ; 10.6.1.7 (min 1) ; 10.6.1.7 (min 1 2.0) ; 10.6.1.7 : 1 (min 2.0 1) ; 10.6.1.7 : 1 (min 1.0 1) ; 10.6.1.7 : 1.0 (min 1 1.0) ; 10.6.1.7 : 1 (min -3.0 2.0 4.0) ; 10.6.1.7 : -3.0 (min 2.0 4.0 3.0) ; 10.6.1.7 : 2.0 (min 3.0 4.0 -2.0) ; 10.6.1.7 : -2.0 (min 4.0 -2.0 -3.0) ; 10.6.1.7 : -3.0 (min 4.0 -3.0 2.0) ; 10.6.1.7 : -3.0 (min 2.0 3.0 4.0) ; 10.6.1.7 : 2.0 (abs) ; 10.6.1.8 (abs 1 2) ; 10.6.1.8 (abs a) ; 10.6.1.8 (abs 10) ; 10.6.1.8 : 10 (abs 0) ; 10.6.1.8 : 0 (abs -13) ; 10.6.1.8 : 13 (abs -3.5) ; 10.6.1.8 : 3.5 (abs 7.5) ; 10.6.1.8 : 7.5 (abs 4.0) ; 10.6.1.8 : 4.0 (abs -2) ; 10.6.1.8 : 2 (abs -4128.2) ; 10.6.1.8 : 4128.2 (float) ; 10.6.1.9 (float 1 2) ; 10.6.1.9 (float a) ; 10.6.1.9 (float 10) ; 10.6.1.9 : 10.0 (float 0) ; 10.6.1.9 : 0.0 (float -13) ; 10.6.1.9 : -13.0 (float -3.5) ; 10.6.1.9 : -3.5 (float 7.5) ; 10.6.1.9 : 7.5 (float 4.0) ; 10.6.1.9 : 4.0 (float -2) ; 10.6.1.9 : -2.0 (integer) ; 10.6.1.10 (integer 1 2) ; 10.6.1.10 (integer a) ; 10.6.1.10 (integer 10) ; 10.6.1.10 : 10 (integer 0) ; 10.6.1.10 : 0 (integer -13) ; 10.6.1.10 : -13 (integer -3.5) ; 10.6.1.10 : -3 (integer 7.5) ; 10.6.1.10 : 7 (integer 4.0) ; 10.6.1.10 : 4 (integer -2) ; 10.6.1.10 : -2 (acos) ; 10.6.2.1 (acos a) ; 10.6.2.1 (acos 1 [b]) ; 10.6.2.1 (acos -1.1) ; 10.6.2.1 : Error (acos 1.1) ; 10.6.2.1 : Error (format nil "%0.6f" (acos 1.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (acos -1.0)) ; 10.6.2.1 : 3.141593 (format nil "%0.6f" (acos 0.5)) ; 10.6.2.1 : 1.047198 (acosh) ; 10.6.2.1 (acosh a) ; 10.6.2.1 (acosh 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (acosh 1.1)) ; 10.6.2.1 : 0.443568 (format nil "%0.6f" (acosh 1.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (acosh 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acosh -1.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acosh 2.0)) ; 10.6.2.1 : 1.316958 (acot) ; 10.6.2.1 (acot a) ; 10.6.2.1 (acot 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (acot -11)) ; 10.6.2.1 : -0.090660 (format nil "%0.6f" (acot 11)) ; 10.6.2.1 : 0.090660 (format nil "%0.6f" (acot 1.0)) ; 10.6.2.1 : 0.785398 (format nil "%0.6f" (acot 0)) ; 10.6.2.1 : 1.570796 (format nil "%0.6f" (acot -1.0)) ; 10.6.2.1 : -0.785398 (format nil "%0.6f" (acot 0.5)) ; 10.6.2.1 : 1.107149 (acoth) ; 10.6.2.1 (acoth a) ; 10.6.2.1 (acoth 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (acoth -1.1)) ; 10.6.2.1 : -1.522261 (format nil "%0.6f" (acoth 1.1)) ; 10.6.2.1 : 1.522261 (format nil "%0.6f" (acoth 1.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acoth 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acoth -1.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acoth 2)) ; 10.6.2.1 : 0.549306 (acsc) ; 10.6.2.1 (acsc a) ; 10.6.2.1 (acsc 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (acsc -1.1)) ; 10.6.2.1 : -1.141097 (format nil "%0.6f" (acsc 1.1)) ; 10.6.2.1 : 1.141097 (format nil "%0.6f" (acsc 1.0)) ; 10.6.2.1 : 1.570796 (format nil "%0.6f" (acsc 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acsc -1.0)) ; 10.6.2.1 : -1.570796 (format nil "%0.6f" (acsc 2.0)) ; 10.6.2.1 : 0.523599 (acsch) ; 10.6.2.1 (acsch a) ; 10.6.2.1 (acsch 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (acsch 1.0)) ; 10.6.2.1 : 0.881374 (format nil "%0.6f" (acsch 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (acsch -1.0)) ; 10.6.2.1 : -0.881374 (format nil "%0.6f" (acsch 2.0)) ; 10.6.2.1 : 0.481212 (asec) ; 10.6.2.1 (asec a) ; 10.6.2.1 (asec 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (asec -1.1)) ; 10.6.2.1 : 2.711893 (format nil "%0.6f" (asec 1.1)) ; 10.6.2.1 : 0.429700 (format nil "%0.6f" (asec 1.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (asec 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (asec -1.0)) ; 10.6.2.1 : 3.141593 (format nil "%0.6f" (asec 2.0)) ; 10.6.2.1 : 1.047198 (asech) ; 10.6.2.1 (asech a) ; 10.6.2.1 (asech 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (asech -1)) ; 10.6.2.1 : Error (format nil "%0.6f" (asech 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (asech 1.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (asech 1.5)) ; 10.6.2.1 : Error (format nil "%0.6f" (asech 0.5)) ; 10.6.2.1 : 1.316958 (asin) ; 10.6.2.1 (asin a) ; 10.6.2.1 (asin 1 [b]) ; 10.6.2.1 (asin -1.1) ; 10.6.2.1 : Error (asin 1.1) ; 10.6.2.1 : Error (format nil "%0.6f" (asin 1.0)) ; 10.6.2.1 : 1.570796 (format nil "%0.6f" (asin -1.0)) ; 10.6.2.1 : -1.570796 (format nil "%0.6f" (asin 0.5)) ; 10.6.2.1 : 0.523599 (asinh) ; 10.6.2.1 (asinh a) ; 10.6.2.1 (asinh 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (asinh -1)) ; 10.6.2.1 : -0.881374 (format nil "%0.6f" (asinh 0.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (asinh 1.0)) ; 10.6.2.1 : 0.881374 (format nil "%0.6f" (asinh 2.0)) ; 10.6.2.1 : 1.443635 (atan) ; 10.6.2.1 (atan a) ; 10.6.2.1 (atan 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (atan -11)) ; 10.6.2.1 : -1.480136 (format nil "%0.6f" (atan 11)) ; 10.6.2.1 : 1.480136 (format nil "%0.6f" (atan 1.0)) ; 10.6.2.1 : 0.785398 (format nil "%0.6f" (atan 0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (atan -1.0)) ; 10.6.2.1 : -0.785398 (format nil "%0.6f" (atan 0.5)) ; 10.6.2.1 : 0.463648 (atan2) (atan2 a) (atan2 1 [b]) (atan2 1 2 3) (atan2 0 0) (atan2 0.0 0.0) (format nil "%0.6f" (atan2 -11 1)) ; -1.480136 (format nil "%0.6f" (atan2 11 1)) ; 1.480136 (format nil "%0.6f" (atan2 1 1)) ; 0.785398 (format nil "%0.6f" (atan2 1 -1)) ; 2.356194 (format nil "%0.6f" (atan2 -1 -1)) ; -2.356194 (format nil "%0.6f" (atan2 -1 1)) ; -0.785398 (format nil "%0.6f" (atan2 1 0)) ; 1.570796 (format nil "%0.6f" (atan2 -1 0)) ; -1.570796 (format nil "%0.6f" (atan2 0.5 1)) ; 0.463648 (atanh) ; 10.6.2.1 (atanh a) ; 10.6.2.1 (atanh 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (atanh -1)) ; 10.6.2.1 : -Infinity (format nil "%0.6f" (atanh 0.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (atanh 1.0)) ; 10.6.2.1 : +Infinity (format nil "%0.6f" (atanh 0.5)) ; 10.6.2.1 : 0.549306 (cos) ; 10.6.2.1 (cos a) ; 10.6.2.1 (cos 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (cos 0.0)) ; 10.6.2.1 : 1.0 (format nil "%0.6f" (cos ?*pi7*)) ; 10.6.2.1 : -1.0 (format nil "%0.6f" (cos ?*pi5/4*)); 10.6.2.1 : -0.707107 (format nil "%0.6f" (cos 1)) ; 10.6.2.1 : 0.540302 (cosh) ; 10.6.2.1 (cosh a) ; 10.6.2.1 (cosh 1 [b]) ; 10.6.2.1 (cosh 0) ; 10.6.2.1 : 1.0 (format nil "%0.6f" (cosh 1.0)) ; 10.6.2.1 : 1.543081 (format nil "%0.6f" (cosh -1.0)) ; 10.6.2.1 : 1.543081 (format nil "%0.6f" (cosh 0.5)) ; 10.6.2.1 : 1.127626 (cot) ; 10.6.2.1 (cot a) ; 10.6.2.1 (cot 1 [b]) ; 10.6.2.1 (cot 0) ; 10.6.2.1 : Error (format nil "%0.6f" (cot ?*pi1/2*)); 10.6.2.1 : 0.0 (format nil "%0.6f" (cot ?*pi3/4*)); 10.6.2.1 : -1.0 (format nil "%0.6f" (cot ?*pi7*)) ; 10.6.2.1 : Error (format nil "%0.6f" (cot 1)) ; 10.6.2.1 : 0.642093 (coth) ; 10.6.2.1 (coth a) ; 10.6.2.1 (coth 1 [b]) ; 10.6.2.1 (coth 0) ; 10.6.2.1 : Error (format nil "%0.6f" (coth 1.0)) ; 10.6.2.1 : 1.313035 (format nil "%0.6f" (coth -1.0)) ; 10.6.2.1 : -1.313035 (format nil "%0.6f" (coth 0.5)) ; 10.6.2.1 : 2.163953 (csc) ; 10.6.2.1 (csc a) ; 10.6.2.1 (csc 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (csc (pi))) ; 10.6.2.1 : Error (format nil "%0.6f" (csc 0.0)) ; 10.6.2.1 : Error (format nil "%0.6f" (csc ?*pi1/2*)); 10.6.2.1 : 1.0 (format nil "%0.6f" (csc 1.0)) ; 10.6.2.1 : 1.188395 (csch) ; 10.6.2.1 (csch a) ; 10.6.2.1 (csch 1 [b]) ; 10.6.2.10 (csch 0) ; 10.6.2.1 : Error (format nil "%0.6f" (csch 1.0)) ; 10.6.2.1 : 0.850918 (format nil "%0.6f" (csch -1.0)) ; 10.6.2.1 : -0.850918 (format nil "%0.6f" (csch 0.5)) ; 10.6.2.1 : 1.919035 (sec) ; 10.6.2.1 (sec a) ; 10.6.2.1 (sec 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (sec ?*pi-9/2*)); 10.6.2.1 : Error (format nil "%0.6f" (sec 0.0)) ; 10.6.2.1 : 1.0 (format nil "%0.6f" (sec ?*pi1/2*)); 10.6.2.1 : Error (format nil "%0.6f" (sec 1.0)) ; 10.6.2.1 : 1.850816 (sech) ; 10.6.2.1 (sech a) ; 10.6.2.1 (sech 1 [b]) ; 10.6.2.1 (sech 0) ; 10.6.2.1 : 1.0 (format nil "%0.6f" (sech 1.0)) ; 10.6.2.1 : 0.648054 (format nil "%0.6f" (sech -1.0)) ; 10.6.2.1 : 0.648054 (format nil "%0.6f" (sech 0.5)) ; 10.6.2.1 : 0.886819 (sin) ; 10.6.2.1 (sin a) ; 10.6.2.1 (sin 1 [b]) ; 10.6.2.1 (format nil "%0.6f" (sin 0.0)) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (sin ?*pi3/2*)); 10.6.2.1 : -1.0 (format nil "%0.6f" (sin ?*pi5/4*)); 10.6.2.1 : -0.707107 (format nil "%0.6f" (sin 2)) ; 10.6.2.1 : 0.909297 (sinh) ; 10.6.2.1 (sinh a) ; 10.6.2.1 (sinh 1 [b]) ; 10.6.2.1 (sinh 0) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (sinh 1.0)) ; 10.6.2.1 : 1.175201 (format nil "%0.6f" (sinh -1.0)) ; 10.6.2.1 : -1.175201 (format nil "%0.6f" (sinh 0.5)) ; 10.6.2.1 : 0.521095 (tan) ; 10.6.2.1 (tan a) ; 10.6.2.1 (tan 1 [b]) ; 10.6.2.1 (tan 0) ; 10.6.2.1 : 0.0 (tan ?*pi1/2*) ; 10.6.2.1 : Error (format nil "%0.6f" (tan ?*pi3/4*)); 10.6.2.1 : -1.0 (format nil "%0.6f" (abs (tan ?*pi7*))) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (tan 1)) ; 10.6.2.1 : 1.557408 (tanh) ; 10.6.2.1 (tanh a) ; 10.6.2.1 (tanh 1 [b]) ; 10.6.2.1 (tanh 0) ; 10.6.2.1 : 0.0 (format nil "%0.6f" (tanh 1.0)) ; 10.6.2.1 : 0.761594 (format nil "%0.6f" (tanh -1.0)) ; 10.6.2.1 : -0.761594 (format nil "%0.6f" (tanh 0.5)) ; 10.6.2.1 : 0.462117 (deg-grad) ; 10.6.2.2 (deg-grad (create$)) ; 10.6.2.2 (deg-grad 0 0.0) ; 10.6.2.2 (deg-grad 360) ; 10.6.2.2 : 400.0 (deg-grad -90.0) ; 10.6.2.2 : -100.0 (deg-grad 540.0) ; 10.6.2.2 : 600.0 (deg-grad -720.0) ; 10.6.2.2 : -800.0 (deg-rad) ; 10.6.2.3 (deg-rad a) ; 10.6.2.3 (deg-rad 360 9.3) ; 10.6.2.3 (deg-rad 0.0) ; 10.6.2.3 : 0.0 (format nil "%0.6f" (deg-rad 360)) ; 10.6.2.3 : 6.283185 (format nil "%0.6f" (deg-rad -90.0)) ; 10.6.2.3 : -1.570796 (format nil "%0.6f" (deg-rad 1800.0)) ; 10.6.2.3 : 31.415927 (grad-deg) ; 10.6.2.4 (grad-deg a) ; 10.6.2.4 (grad-deg 400 90) ; 10.6.2.4 (grad-deg 0) ; 10.6.2.4 : 0.0 (grad-deg 100) ; 10.6.2.4 : 90.0 (grad-deg -800.0) ; 10.6.2.4 : -720.0 (grad-deg 600.0) ; 10.6.2.4 : 540.0 (rad-deg) ; 10.6.2.5 (rad-deg a) ; 10.6.2.5 (rad-deg (pi) a)) ; 10.6.2.5 (rad-deg 0) ; 10.6.2.5 : 0.0 (rad-deg (pi)) ; 10.6.2.5 : 180.0 (format nil "%0.6f" (rad-deg ?*pi-9/2*)) ; 10.6.2.5 : -810.0 (rad-deg ?*pi7*) ; 10.6.2.5 : 1260.0 (format nil "%0.6f" (pi)) ; 10.6.2.6 : 3.141593 (pi 3.14) ; 10.6.2.6 (sqrt) ; 10.6.2.7 (sqrt a) ; 10.6.2.7 (sqrt 9 3) ; 10.6.2.7 (sqrt -9) ; 10.6.2.7 (format nil "%0.6f" (sqrt 2)) ; 10.6.2.7 : 1.414214 (sqrt 16) ; 10.6.2.7 : 4.0 (sqrt 9.0) ; 10.6.2.7 : 3.0 (sqrt 10.89) ; 10.6.2.7 : 3.3 (**) ; 10.6.2.8 (** 3) ; 10.6.2.8 (** 3 a) ; 10.6.2.8 (** 3 2 1) ; 10.6.2.8 (format nil "%0.6f" (** -3 -2)) ; 10.6.2.8 : 0.111111 (** 3 2) ; 10.6.2.8 : 9.0 (** 4.0 3) ; 10.6.2.8 : 64.0 (** 3 3.0) ; 10.6.2.8 : 27.0 (format nil "%0.6f" (** 27.0 (/ 1 3))); 10.6.2.8 : 3.0 (** -3 3) ; 10.6.2.8 : -27.0 (format nil "%0.6f" (** 10.89 -2.0)); 10.6.2.8 : 0.008432 (format nil "%0.6f" (** 10.89 0.5)); 10.6.2.8 : 3.3 (format nil "%0.6f" (** 2.1 3.2)) ; 10.6.2.8 : 10.742410 (exp) ; 10.6.2.9 (exp a) ; 10.6.2.9 (exp 20 3.5) ; 10.6.2.9 (format nil "%0.6f" (exp -3.3)) ; 10.6.2.9 : 0.036883 (exp 0) ; 10.6.2.9 : 1 (format nil "%0.6f" (exp 1)) ; 10.6.2.9 : 2.171828 (format nil "%0.6f" (exp 2.0)) ; 10.6.2.9 : 7.389056 (log) ; 10.6.2.10 (log a) ; 10.6.2.10 (log 20 3.5) ; 10.6.2.10 (log -5.3) ; 10.6.2.10 : Error (log 0) ; 10.6.2.10 : -Infinity (format nil "%0.6f" (log 2.71828)) ; 10.6.2.10 : 0.999999 (format nil "%0.6f" (log 2.0)) ; 10.6.2.10 : 0.693147 (format nil "%0.6f" (log 2)) ; 10.6.2.10 : 0.693147 (log10 a) ; 10.6.2.11 (log10 100 10) ; 10.6.2.11 (log10 -100) ; 10.6.2.11 : Error (log10 0) ; 10.6.2.11 : -Infinity (log10 0.01) ; 10.6.2.11 : -2.0 (log10 0.1) ; 10.6.2.11 : -1.0 (log10 1) ; 10.6.2.11 : 0.0 (log10 10) ; 10.6.2.11 : 1.0 (log10 100) ; 10.6.2.11 : 2.0 (format nil "%0.6f" (log10 2.0)) ; 10.6.2.11 : 0.301030 (round) ; 10.6.2.12 (round a) ; 10.6.2.12 (round 3.8 2) ; 10.6.2.12 (round 0) ; 10.6.2.12 : 0 (round 4) ; 10.6.2.12 : 4 (round -4) ; 10.6.2.12 : -4 (round 3.6) ; 10.6.2.12 : 4 (round 3.5) ; 10.6.2.12 : 3 (round 3.4) ; 10.6.2.12 : 3 (round -3.6) ; 10.6.2.12 : -4 (round -3.5) ; 10.6.2.12 : -4 (round -3.4) ; 10.6.2.12 : -3 (mod) ; 10.6.2.13 (mod 3) ; 10.6.2.13 (mod 3 a) ; 10.6.2.13 (mod 7 0) ; 10.6.2.13 (mod 5.0 0.0) ; 10.6.2.13 (mod 3 2 1) ; 10.6.2.13 (mod 5 2.0) ; 10.6.2.13 : 1.0 (mod 5.0 2) ; 10.6.2.13 : 1.0 (mod -5 2) ; 10.6.2.13 : -1 (mod 10.0 4.0) ; 10.6.2.13 : 2.0 (mod 5 2) ; 10.6.2.13 : 1 (format nil "%0.6f" (mod 3.7 1.2)) ; 10.6.2.13 : 0.1 (div -9223372036854775808 -1) ; Error (mod -9223372036854775808 -1) ; Error (/ -9223372036854775808 -1) ; Error in 6.3 (clear)