]> code.delx.au - gnu-emacs/blob - doc/lispref/numbers.texi
Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[gnu-emacs] / doc / lispref / numbers.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001,
4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
5 @c Free Software Foundation, Inc.
6 @c See the file elisp.texi for copying conditions.
7 @setfilename ../../info/numbers
8 @node Numbers, Strings and Characters, Lisp Data Types, Top
9 @chapter Numbers
10 @cindex integers
11 @cindex numbers
12
13 GNU Emacs supports two numeric data types: @dfn{integers} and
14 @dfn{floating point numbers}. Integers are whole numbers such as
15 @minus{}3, 0, 7, 13, and 511. Their values are exact. Floating point
16 numbers are numbers with fractional parts, such as @minus{}4.5, 0.0, or
17 2.71828. They can also be expressed in exponential notation: 1.5e2
18 equals 150; in this example, @samp{e2} stands for ten to the second
19 power, and that is multiplied by 1.5. Floating point values are not
20 exact; they have a fixed, limited amount of precision.
21
22 @menu
23 * Integer Basics:: Representation and range of integers.
24 * Float Basics:: Representation and range of floating point.
25 * Predicates on Numbers:: Testing for numbers.
26 * Comparison of Numbers:: Equality and inequality predicates.
27 * Numeric Conversions:: Converting float to integer and vice versa.
28 * Arithmetic Operations:: How to add, subtract, multiply and divide.
29 * Rounding Operations:: Explicitly rounding floating point numbers.
30 * Bitwise Operations:: Logical and, or, not, shifting.
31 * Math Functions:: Trig, exponential and logarithmic functions.
32 * Random Numbers:: Obtaining random integers, predictable or not.
33 @end menu
34
35 @node Integer Basics
36 @comment node-name, next, previous, up
37 @section Integer Basics
38
39 The range of values for an integer depends on the machine. The
40 minimum range is @minus{}536870912 to 536870911 (30 bits; i.e.,
41 @ifnottex
42 -2**29
43 @end ifnottex
44 @tex
45 @math{-2^{29}}
46 @end tex
47 to
48 @ifnottex
49 2**29 - 1),
50 @end ifnottex
51 @tex
52 @math{2^{29}-1}),
53 @end tex
54 but some machines may provide a wider range. Many examples in this
55 chapter assume an integer has 30 bits.
56 @cindex overflow
57
58 The Lisp reader reads an integer as a sequence of digits with optional
59 initial sign and optional final period.
60
61 @example
62 1 ; @r{The integer 1.}
63 1. ; @r{The integer 1.}
64 +1 ; @r{Also the integer 1.}
65 -1 ; @r{The integer @minus{}1.}
66 1073741825 ; @r{Also the integer 1, due to overflow.}
67 0 ; @r{The integer 0.}
68 -0 ; @r{The integer 0.}
69 @end example
70
71 @cindex integers in specific radix
72 @cindex radix for reading an integer
73 @cindex base for reading an integer
74 @cindex hex numbers
75 @cindex octal numbers
76 @cindex reading numbers in hex, octal, and binary
77 The syntax for integers in bases other than 10 uses @samp{#}
78 followed by a letter that specifies the radix: @samp{b} for binary,
79 @samp{o} for octal, @samp{x} for hex, or @samp{@var{radix}r} to
80 specify radix @var{radix}. Case is not significant for the letter
81 that specifies the radix. Thus, @samp{#b@var{integer}} reads
82 @var{integer} in binary, and @samp{#@var{radix}r@var{integer}} reads
83 @var{integer} in radix @var{radix}. Allowed values of @var{radix} run
84 from 2 to 36. For example:
85
86 @example
87 #b101100 @result{} 44
88 #o54 @result{} 44
89 #x2c @result{} 44
90 #24r1k @result{} 44
91 @end example
92
93 To understand how various functions work on integers, especially the
94 bitwise operators (@pxref{Bitwise Operations}), it is often helpful to
95 view the numbers in their binary form.
96
97 In 30-bit binary, the decimal integer 5 looks like this:
98
99 @example
100 00 0000 0000 0000 0000 0000 0000 0101
101 @end example
102
103 @noindent
104 (We have inserted spaces between groups of 4 bits, and two spaces
105 between groups of 8 bits, to make the binary integer easier to read.)
106
107 The integer @minus{}1 looks like this:
108
109 @example
110 11 1111 1111 1111 1111 1111 1111 1111
111 @end example
112
113 @noindent
114 @cindex two's complement
115 @minus{}1 is represented as 30 ones. (This is called @dfn{two's
116 complement} notation.)
117
118 The negative integer, @minus{}5, is creating by subtracting 4 from
119 @minus{}1. In binary, the decimal integer 4 is 100. Consequently,
120 @minus{}5 looks like this:
121
122 @example
123 11 1111 1111 1111 1111 1111 1111 1011
124 @end example
125
126 In this implementation, the largest 30-bit binary integer value is
127 536,870,911 in decimal. In binary, it looks like this:
128
129 @example
130 01 1111 1111 1111 1111 1111 1111 1111
131 @end example
132
133 Since the arithmetic functions do not check whether integers go
134 outside their range, when you add 1 to 536,870,911, the value is the
135 negative integer @minus{}536,870,912:
136
137 @example
138 (+ 1 536870911)
139 @result{} -536870912
140 @result{} 10 0000 0000 0000 0000 0000 0000 0000
141 @end example
142
143 Many of the functions described in this chapter accept markers for
144 arguments in place of numbers. (@xref{Markers}.) Since the actual
145 arguments to such functions may be either numbers or markers, we often
146 give these arguments the name @var{number-or-marker}. When the argument
147 value is a marker, its position value is used and its buffer is ignored.
148
149 @defvar most-positive-fixnum
150 The value of this variable is the largest integer that Emacs Lisp
151 can handle.
152 @end defvar
153
154 @defvar most-negative-fixnum
155 The value of this variable is the smallest integer that Emacs Lisp can
156 handle. It is negative.
157 @end defvar
158
159 @xref{Character Codes, max-char}, for the maximum value of a valid
160 character codepoint.
161
162 @node Float Basics
163 @section Floating Point Basics
164
165 Floating point numbers are useful for representing numbers that are
166 not integral. The precise range of floating point numbers is
167 machine-specific; it is the same as the range of the C data type
168 @code{double} on the machine you are using.
169
170 The read-syntax for floating point numbers requires either a decimal
171 point (with at least one digit following), an exponent, or both. For
172 example, @samp{1500.0}, @samp{15e2}, @samp{15.0e2}, @samp{1.5e3}, and
173 @samp{.15e4} are five ways of writing a floating point number whose
174 value is 1500. They are all equivalent. You can also use a minus sign
175 to write negative floating point numbers, as in @samp{-1.0}.
176
177 @cindex @acronym{IEEE} floating point
178 @cindex positive infinity
179 @cindex negative infinity
180 @cindex infinity
181 @cindex NaN
182 Most modern computers support the @acronym{IEEE} floating point standard,
183 which provides for positive infinity and negative infinity as floating point
184 values. It also provides for a class of values called NaN or
185 ``not-a-number''; numerical functions return such values in cases where
186 there is no correct answer. For example, @code{(/ 0.0 0.0)} returns a
187 NaN. For practical purposes, there's no significant difference between
188 different NaN values in Emacs Lisp, and there's no rule for precisely
189 which NaN value should be used in a particular case, so Emacs Lisp
190 doesn't try to distinguish them (but it does report the sign, if you
191 print it). Here are the read syntaxes for these special floating
192 point values:
193
194 @table @asis
195 @item positive infinity
196 @samp{1.0e+INF}
197 @item negative infinity
198 @samp{-1.0e+INF}
199 @item Not-a-number
200 @samp{0.0e+NaN} or @samp{-0.0e+NaN}.
201 @end table
202
203 To test whether a floating point value is a NaN, compare it with
204 itself using @code{=}. That returns @code{nil} for a NaN, and
205 @code{t} for any other floating point value.
206
207 The value @code{-0.0} is distinguishable from ordinary zero in
208 @acronym{IEEE} floating point, but Emacs Lisp @code{equal} and
209 @code{=} consider them equal values.
210
211 You can use @code{logb} to extract the binary exponent of a floating
212 point number (or estimate the logarithm of an integer):
213
214 @defun logb number
215 This function returns the binary exponent of @var{number}. More
216 precisely, the value is the logarithm of @var{number} base 2, rounded
217 down to an integer.
218
219 @example
220 (logb 10)
221 @result{} 3
222 (logb 10.0e20)
223 @result{} 69
224 @end example
225 @end defun
226
227 @defvar float-e
228 The mathematical constant @math{e} (2.71828@dots{}).
229 @end defvar
230
231 @defvar float-pi
232 The mathematical constant @math{pi} (3.14159@dots{}).
233 @end defvar
234
235 @node Predicates on Numbers
236 @section Type Predicates for Numbers
237 @cindex predicates for numbers
238
239 The functions in this section test for numbers, or for a specific
240 type of number. The functions @code{integerp} and @code{floatp} can
241 take any type of Lisp object as argument (they would not be of much
242 use otherwise), but the @code{zerop} predicate requires a number as
243 its argument. See also @code{integer-or-marker-p} and
244 @code{number-or-marker-p}, in @ref{Predicates on Markers}.
245
246 @defun floatp object
247 This predicate tests whether its argument is a floating point
248 number and returns @code{t} if so, @code{nil} otherwise.
249
250 @code{floatp} does not exist in Emacs versions 18 and earlier.
251 @end defun
252
253 @defun integerp object
254 This predicate tests whether its argument is an integer, and returns
255 @code{t} if so, @code{nil} otherwise.
256 @end defun
257
258 @defun numberp object
259 This predicate tests whether its argument is a number (either integer or
260 floating point), and returns @code{t} if so, @code{nil} otherwise.
261 @end defun
262
263 @defun wholenump object
264 @cindex natural numbers
265 The @code{wholenump} predicate (whose name comes from the phrase
266 ``whole-number-p'') tests to see whether its argument is a nonnegative
267 integer, and returns @code{t} if so, @code{nil} otherwise. 0 is
268 considered non-negative.
269
270 @findex natnump
271 @code{natnump} is an obsolete synonym for @code{wholenump}.
272 @end defun
273
274 @defun zerop number
275 This predicate tests whether its argument is zero, and returns @code{t}
276 if so, @code{nil} otherwise. The argument must be a number.
277
278 @code{(zerop x)} is equivalent to @code{(= x 0)}.
279 @end defun
280
281 @node Comparison of Numbers
282 @section Comparison of Numbers
283 @cindex number comparison
284 @cindex comparing numbers
285
286 To test numbers for numerical equality, you should normally use
287 @code{=}, not @code{eq}. There can be many distinct floating point
288 number objects with the same numeric value. If you use @code{eq} to
289 compare them, then you test whether two values are the same
290 @emph{object}. By contrast, @code{=} compares only the numeric values
291 of the objects.
292
293 At present, each integer value has a unique Lisp object in Emacs Lisp.
294 Therefore, @code{eq} is equivalent to @code{=} where integers are
295 concerned. It is sometimes convenient to use @code{eq} for comparing an
296 unknown value with an integer, because @code{eq} does not report an
297 error if the unknown value is not a number---it accepts arguments of any
298 type. By contrast, @code{=} signals an error if the arguments are not
299 numbers or markers. However, it is a good idea to use @code{=} if you
300 can, even for comparing integers, just in case we change the
301 representation of integers in a future Emacs version.
302
303 Sometimes it is useful to compare numbers with @code{equal}; it
304 treats two numbers as equal if they have the same data type (both
305 integers, or both floating point) and the same value. By contrast,
306 @code{=} can treat an integer and a floating point number as equal.
307 @xref{Equality Predicates}.
308
309 There is another wrinkle: because floating point arithmetic is not
310 exact, it is often a bad idea to check for equality of two floating
311 point values. Usually it is better to test for approximate equality.
312 Here's a function to do this:
313
314 @example
315 (defvar fuzz-factor 1.0e-6)
316 (defun approx-equal (x y)
317 (or (and (= x 0) (= y 0))
318 (< (/ (abs (- x y))
319 (max (abs x) (abs y)))
320 fuzz-factor)))
321 @end example
322
323 @cindex CL note---integers vrs @code{eq}
324 @quotation
325 @b{Common Lisp note:} Comparing numbers in Common Lisp always requires
326 @code{=} because Common Lisp implements multi-word integers, and two
327 distinct integer objects can have the same numeric value. Emacs Lisp
328 can have just one integer object for any given value because it has a
329 limited range of integer values.
330 @end quotation
331
332 @defun = number-or-marker1 number-or-marker2
333 This function tests whether its arguments are numerically equal, and
334 returns @code{t} if so, @code{nil} otherwise.
335 @end defun
336
337 @defun eql value1 value2
338 This function acts like @code{eq} except when both arguments are
339 numbers. It compares numbers by type and numeric value, so that
340 @code{(eql 1.0 1)} returns @code{nil}, but @code{(eql 1.0 1.0)} and
341 @code{(eql 1 1)} both return @code{t}.
342 @end defun
343
344 @defun /= number-or-marker1 number-or-marker2
345 This function tests whether its arguments are numerically equal, and
346 returns @code{t} if they are not, and @code{nil} if they are.
347 @end defun
348
349 @defun < number-or-marker1 number-or-marker2
350 This function tests whether its first argument is strictly less than
351 its second argument. It returns @code{t} if so, @code{nil} otherwise.
352 @end defun
353
354 @defun <= number-or-marker1 number-or-marker2
355 This function tests whether its first argument is less than or equal
356 to its second argument. It returns @code{t} if so, @code{nil}
357 otherwise.
358 @end defun
359
360 @defun > number-or-marker1 number-or-marker2
361 This function tests whether its first argument is strictly greater
362 than its second argument. It returns @code{t} if so, @code{nil}
363 otherwise.
364 @end defun
365
366 @defun >= number-or-marker1 number-or-marker2
367 This function tests whether its first argument is greater than or
368 equal to its second argument. It returns @code{t} if so, @code{nil}
369 otherwise.
370 @end defun
371
372 @defun max number-or-marker &rest numbers-or-markers
373 This function returns the largest of its arguments.
374 If any of the arguments is floating-point, the value is returned
375 as floating point, even if it was given as an integer.
376
377 @example
378 (max 20)
379 @result{} 20
380 (max 1 2.5)
381 @result{} 2.5
382 (max 1 3 2.5)
383 @result{} 3.0
384 @end example
385 @end defun
386
387 @defun min number-or-marker &rest numbers-or-markers
388 This function returns the smallest of its arguments.
389 If any of the arguments is floating-point, the value is returned
390 as floating point, even if it was given as an integer.
391
392 @example
393 (min -4 1)
394 @result{} -4
395 @end example
396 @end defun
397
398 @defun abs number
399 This function returns the absolute value of @var{number}.
400 @end defun
401
402 @node Numeric Conversions
403 @section Numeric Conversions
404 @cindex rounding in conversions
405 @cindex number conversions
406 @cindex converting numbers
407
408 To convert an integer to floating point, use the function @code{float}.
409
410 @defun float number
411 This returns @var{number} converted to floating point.
412 If @var{number} is already a floating point number, @code{float} returns
413 it unchanged.
414 @end defun
415
416 There are four functions to convert floating point numbers to integers;
417 they differ in how they round. All accept an argument @var{number}
418 and an optional argument @var{divisor}. Both arguments may be
419 integers or floating point numbers. @var{divisor} may also be
420 @code{nil}. If @var{divisor} is @code{nil} or omitted, these
421 functions convert @var{number} to an integer, or return it unchanged
422 if it already is an integer. If @var{divisor} is non-@code{nil}, they
423 divide @var{number} by @var{divisor} and convert the result to an
424 integer. An @code{arith-error} results if @var{divisor} is 0.
425
426 @defun truncate number &optional divisor
427 This returns @var{number}, converted to an integer by rounding towards
428 zero.
429
430 @example
431 (truncate 1.2)
432 @result{} 1
433 (truncate 1.7)
434 @result{} 1
435 (truncate -1.2)
436 @result{} -1
437 (truncate -1.7)
438 @result{} -1
439 @end example
440 @end defun
441
442 @defun floor number &optional divisor
443 This returns @var{number}, converted to an integer by rounding downward
444 (towards negative infinity).
445
446 If @var{divisor} is specified, this uses the kind of division
447 operation that corresponds to @code{mod}, rounding downward.
448
449 @example
450 (floor 1.2)
451 @result{} 1
452 (floor 1.7)
453 @result{} 1
454 (floor -1.2)
455 @result{} -2
456 (floor -1.7)
457 @result{} -2
458 (floor 5.99 3)
459 @result{} 1
460 @end example
461 @end defun
462
463 @defun ceiling number &optional divisor
464 This returns @var{number}, converted to an integer by rounding upward
465 (towards positive infinity).
466
467 @example
468 (ceiling 1.2)
469 @result{} 2
470 (ceiling 1.7)
471 @result{} 2
472 (ceiling -1.2)
473 @result{} -1
474 (ceiling -1.7)
475 @result{} -1
476 @end example
477 @end defun
478
479 @defun round number &optional divisor
480 This returns @var{number}, converted to an integer by rounding towards the
481 nearest integer. Rounding a value equidistant between two integers
482 may choose the integer closer to zero, or it may prefer an even integer,
483 depending on your machine.
484
485 @example
486 (round 1.2)
487 @result{} 1
488 (round 1.7)
489 @result{} 2
490 (round -1.2)
491 @result{} -1
492 (round -1.7)
493 @result{} -2
494 @end example
495 @end defun
496
497 @node Arithmetic Operations
498 @section Arithmetic Operations
499 @cindex arithmetic operations
500
501 Emacs Lisp provides the traditional four arithmetic operations:
502 addition, subtraction, multiplication, and division. Remainder and modulus
503 functions supplement the division functions. The functions to
504 add or subtract 1 are provided because they are traditional in Lisp and
505 commonly used.
506
507 All of these functions except @code{%} return a floating point value
508 if any argument is floating.
509
510 It is important to note that in Emacs Lisp, arithmetic functions
511 do not check for overflow. Thus @code{(1+ 268435455)} may evaluate to
512 @minus{}268435456, depending on your hardware.
513
514 @defun 1+ number-or-marker
515 This function returns @var{number-or-marker} plus 1.
516 For example,
517
518 @example
519 (setq foo 4)
520 @result{} 4
521 (1+ foo)
522 @result{} 5
523 @end example
524
525 This function is not analogous to the C operator @code{++}---it does not
526 increment a variable. It just computes a sum. Thus, if we continue,
527
528 @example
529 foo
530 @result{} 4
531 @end example
532
533 If you want to increment the variable, you must use @code{setq},
534 like this:
535
536 @example
537 (setq foo (1+ foo))
538 @result{} 5
539 @end example
540 @end defun
541
542 @defun 1- number-or-marker
543 This function returns @var{number-or-marker} minus 1.
544 @end defun
545
546 @defun + &rest numbers-or-markers
547 This function adds its arguments together. When given no arguments,
548 @code{+} returns 0.
549
550 @example
551 (+)
552 @result{} 0
553 (+ 1)
554 @result{} 1
555 (+ 1 2 3 4)
556 @result{} 10
557 @end example
558 @end defun
559
560 @defun - &optional number-or-marker &rest more-numbers-or-markers
561 The @code{-} function serves two purposes: negation and subtraction.
562 When @code{-} has a single argument, the value is the negative of the
563 argument. When there are multiple arguments, @code{-} subtracts each of
564 the @var{more-numbers-or-markers} from @var{number-or-marker},
565 cumulatively. If there are no arguments, the result is 0.
566
567 @example
568 (- 10 1 2 3 4)
569 @result{} 0
570 (- 10)
571 @result{} -10
572 (-)
573 @result{} 0
574 @end example
575 @end defun
576
577 @defun * &rest numbers-or-markers
578 This function multiplies its arguments together, and returns the
579 product. When given no arguments, @code{*} returns 1.
580
581 @example
582 (*)
583 @result{} 1
584 (* 1)
585 @result{} 1
586 (* 1 2 3 4)
587 @result{} 24
588 @end example
589 @end defun
590
591 @defun / dividend divisor &rest divisors
592 This function divides @var{dividend} by @var{divisor} and returns the
593 quotient. If there are additional arguments @var{divisors}, then it
594 divides @var{dividend} by each divisor in turn. Each argument may be a
595 number or a marker.
596
597 If all the arguments are integers, then the result is an integer too.
598 This means the result has to be rounded. On most machines, the result
599 is rounded towards zero after each division, but some machines may round
600 differently with negative arguments. This is because the Lisp function
601 @code{/} is implemented using the C division operator, which also
602 permits machine-dependent rounding. As a practical matter, all known
603 machines round in the standard fashion.
604
605 @cindex @code{arith-error} in division
606 If you divide an integer by 0, an @code{arith-error} error is signaled.
607 (@xref{Errors}.) Floating point division by zero returns either
608 infinity or a NaN if your machine supports @acronym{IEEE} floating point;
609 otherwise, it signals an @code{arith-error} error.
610
611 @example
612 @group
613 (/ 6 2)
614 @result{} 3
615 @end group
616 (/ 5 2)
617 @result{} 2
618 (/ 5.0 2)
619 @result{} 2.5
620 (/ 5 2.0)
621 @result{} 2.5
622 (/ 5.0 2.0)
623 @result{} 2.5
624 (/ 25 3 2)
625 @result{} 4
626 @group
627 (/ -17 6)
628 @result{} -2 @r{(could in theory be @minus{}3 on some machines)}
629 @end group
630 @end example
631 @end defun
632
633 @defun % dividend divisor
634 @cindex remainder
635 This function returns the integer remainder after division of @var{dividend}
636 by @var{divisor}. The arguments must be integers or markers.
637
638 For negative arguments, the remainder is in principle machine-dependent
639 since the quotient is; but in practice, all known machines behave alike.
640
641 An @code{arith-error} results if @var{divisor} is 0.
642
643 @example
644 (% 9 4)
645 @result{} 1
646 (% -9 4)
647 @result{} -1
648 (% 9 -4)
649 @result{} 1
650 (% -9 -4)
651 @result{} -1
652 @end example
653
654 For any two integers @var{dividend} and @var{divisor},
655
656 @example
657 @group
658 (+ (% @var{dividend} @var{divisor})
659 (* (/ @var{dividend} @var{divisor}) @var{divisor}))
660 @end group
661 @end example
662
663 @noindent
664 always equals @var{dividend}.
665 @end defun
666
667 @defun mod dividend divisor
668 @cindex modulus
669 This function returns the value of @var{dividend} modulo @var{divisor};
670 in other words, the remainder after division of @var{dividend}
671 by @var{divisor}, but with the same sign as @var{divisor}.
672 The arguments must be numbers or markers.
673
674 Unlike @code{%}, @code{mod} returns a well-defined result for negative
675 arguments. It also permits floating point arguments; it rounds the
676 quotient downward (towards minus infinity) to an integer, and uses that
677 quotient to compute the remainder.
678
679 An @code{arith-error} results if @var{divisor} is 0.
680
681 @example
682 @group
683 (mod 9 4)
684 @result{} 1
685 @end group
686 @group
687 (mod -9 4)
688 @result{} 3
689 @end group
690 @group
691 (mod 9 -4)
692 @result{} -3
693 @end group
694 @group
695 (mod -9 -4)
696 @result{} -1
697 @end group
698 @group
699 (mod 5.5 2.5)
700 @result{} .5
701 @end group
702 @end example
703
704 For any two numbers @var{dividend} and @var{divisor},
705
706 @example
707 @group
708 (+ (mod @var{dividend} @var{divisor})
709 (* (floor @var{dividend} @var{divisor}) @var{divisor}))
710 @end group
711 @end example
712
713 @noindent
714 always equals @var{dividend}, subject to rounding error if either
715 argument is floating point. For @code{floor}, see @ref{Numeric
716 Conversions}.
717 @end defun
718
719 @node Rounding Operations
720 @section Rounding Operations
721 @cindex rounding without conversion
722
723 The functions @code{ffloor}, @code{fceiling}, @code{fround}, and
724 @code{ftruncate} take a floating point argument and return a floating
725 point result whose value is a nearby integer. @code{ffloor} returns the
726 nearest integer below; @code{fceiling}, the nearest integer above;
727 @code{ftruncate}, the nearest integer in the direction towards zero;
728 @code{fround}, the nearest integer.
729
730 @defun ffloor float
731 This function rounds @var{float} to the next lower integral value, and
732 returns that value as a floating point number.
733 @end defun
734
735 @defun fceiling float
736 This function rounds @var{float} to the next higher integral value, and
737 returns that value as a floating point number.
738 @end defun
739
740 @defun ftruncate float
741 This function rounds @var{float} towards zero to an integral value, and
742 returns that value as a floating point number.
743 @end defun
744
745 @defun fround float
746 This function rounds @var{float} to the nearest integral value,
747 and returns that value as a floating point number.
748 @end defun
749
750 @node Bitwise Operations
751 @section Bitwise Operations on Integers
752 @cindex bitwise arithmetic
753 @cindex logical arithmetic
754
755 In a computer, an integer is represented as a binary number, a
756 sequence of @dfn{bits} (digits which are either zero or one). A bitwise
757 operation acts on the individual bits of such a sequence. For example,
758 @dfn{shifting} moves the whole sequence left or right one or more places,
759 reproducing the same pattern ``moved over.''
760
761 The bitwise operations in Emacs Lisp apply only to integers.
762
763 @defun lsh integer1 count
764 @cindex logical shift
765 @code{lsh}, which is an abbreviation for @dfn{logical shift}, shifts the
766 bits in @var{integer1} to the left @var{count} places, or to the right
767 if @var{count} is negative, bringing zeros into the vacated bits. If
768 @var{count} is negative, @code{lsh} shifts zeros into the leftmost
769 (most-significant) bit, producing a positive result even if
770 @var{integer1} is negative. Contrast this with @code{ash}, below.
771
772 Here are two examples of @code{lsh}, shifting a pattern of bits one
773 place to the left. We show only the low-order eight bits of the binary
774 pattern; the rest are all zero.
775
776 @example
777 @group
778 (lsh 5 1)
779 @result{} 10
780 ;; @r{Decimal 5 becomes decimal 10.}
781 00000101 @result{} 00001010
782
783 (lsh 7 1)
784 @result{} 14
785 ;; @r{Decimal 7 becomes decimal 14.}
786 00000111 @result{} 00001110
787 @end group
788 @end example
789
790 @noindent
791 As the examples illustrate, shifting the pattern of bits one place to
792 the left produces a number that is twice the value of the previous
793 number.
794
795 Shifting a pattern of bits two places to the left produces results
796 like this (with 8-bit binary numbers):
797
798 @example
799 @group
800 (lsh 3 2)
801 @result{} 12
802 ;; @r{Decimal 3 becomes decimal 12.}
803 00000011 @result{} 00001100
804 @end group
805 @end example
806
807 On the other hand, shifting one place to the right looks like this:
808
809 @example
810 @group
811 (lsh 6 -1)
812 @result{} 3
813 ;; @r{Decimal 6 becomes decimal 3.}
814 00000110 @result{} 00000011
815 @end group
816
817 @group
818 (lsh 5 -1)
819 @result{} 2
820 ;; @r{Decimal 5 becomes decimal 2.}
821 00000101 @result{} 00000010
822 @end group
823 @end example
824
825 @noindent
826 As the example illustrates, shifting one place to the right divides the
827 value of a positive integer by two, rounding downward.
828
829 The function @code{lsh}, like all Emacs Lisp arithmetic functions, does
830 not check for overflow, so shifting left can discard significant bits
831 and change the sign of the number. For example, left shifting
832 536,870,911 produces @minus{}2 on a 30-bit machine:
833
834 @example
835 (lsh 536870911 1) ; @r{left shift}
836 @result{} -2
837 @end example
838
839 In binary, in the 30-bit implementation, the argument looks like this:
840
841 @example
842 @group
843 ;; @r{Decimal 536,870,911}
844 01 1111 1111 1111 1111 1111 1111 1111
845 @end group
846 @end example
847
848 @noindent
849 which becomes the following when left shifted:
850
851 @example
852 @group
853 ;; @r{Decimal @minus{}2}
854 11 1111 1111 1111 1111 1111 1111 1110
855 @end group
856 @end example
857 @end defun
858
859 @defun ash integer1 count
860 @cindex arithmetic shift
861 @code{ash} (@dfn{arithmetic shift}) shifts the bits in @var{integer1}
862 to the left @var{count} places, or to the right if @var{count}
863 is negative.
864
865 @code{ash} gives the same results as @code{lsh} except when
866 @var{integer1} and @var{count} are both negative. In that case,
867 @code{ash} puts ones in the empty bit positions on the left, while
868 @code{lsh} puts zeros in those bit positions.
869
870 Thus, with @code{ash}, shifting the pattern of bits one place to the right
871 looks like this:
872
873 @example
874 @group
875 (ash -6 -1) @result{} -3
876 ;; @r{Decimal @minus{}6 becomes decimal @minus{}3.}
877 11 1111 1111 1111 1111 1111 1111 1010
878 @result{}
879 11 1111 1111 1111 1111 1111 1111 1101
880 @end group
881 @end example
882
883 In contrast, shifting the pattern of bits one place to the right with
884 @code{lsh} looks like this:
885
886 @example
887 @group
888 (lsh -6 -1) @result{} 536870909
889 ;; @r{Decimal @minus{}6 becomes decimal 536,870,909.}
890 11 1111 1111 1111 1111 1111 1111 1010
891 @result{}
892 01 1111 1111 1111 1111 1111 1111 1101
893 @end group
894 @end example
895
896 Here are other examples:
897
898 @c !!! Check if lined up in smallbook format! XDVI shows problem
899 @c with smallbook but not with regular book! --rjc 16mar92
900 @smallexample
901 @group
902 ; @r{ 30-bit binary values}
903
904 (lsh 5 2) ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
905 @result{} 20 ; = @r{00 0000 0000 0000 0000 0000 0001 0100}
906 @end group
907 @group
908 (ash 5 2)
909 @result{} 20
910 (lsh -5 2) ; -5 = @r{11 1111 1111 1111 1111 1111 1111 1011}
911 @result{} -20 ; = @r{11 1111 1111 1111 1111 1111 1110 1100}
912 (ash -5 2)
913 @result{} -20
914 @end group
915 @group
916 (lsh 5 -2) ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
917 @result{} 1 ; = @r{00 0000 0000 0000 0000 0000 0000 0001}
918 @end group
919 @group
920 (ash 5 -2)
921 @result{} 1
922 @end group
923 @group
924 (lsh -5 -2) ; -5 = @r{11 1111 1111 1111 1111 1111 1111 1011}
925 @result{} 268435454 ; = @r{00 0111 1111 1111 1111 1111 1111 1110}
926 @end group
927 @group
928 (ash -5 -2) ; -5 = @r{11 1111 1111 1111 1111 1111 1111 1011}
929 @result{} -2 ; = @r{11 1111 1111 1111 1111 1111 1111 1110}
930 @end group
931 @end smallexample
932 @end defun
933
934 @defun logand &rest ints-or-markers
935 This function returns the ``logical and'' of the arguments: the
936 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
937 set in all the arguments. (``Set'' means that the value of the bit is 1
938 rather than 0.)
939
940 For example, using 4-bit binary numbers, the ``logical and'' of 13 and
941 12 is 12: 1101 combined with 1100 produces 1100.
942 In both the binary numbers, the leftmost two bits are set (i.e., they
943 are 1's), so the leftmost two bits of the returned value are set.
944 However, for the rightmost two bits, each is zero in at least one of
945 the arguments, so the rightmost two bits of the returned value are 0's.
946
947 @noindent
948 Therefore,
949
950 @example
951 @group
952 (logand 13 12)
953 @result{} 12
954 @end group
955 @end example
956
957 If @code{logand} is not passed any argument, it returns a value of
958 @minus{}1. This number is an identity element for @code{logand}
959 because its binary representation consists entirely of ones. If
960 @code{logand} is passed just one argument, it returns that argument.
961
962 @smallexample
963 @group
964 ; @r{ 30-bit binary values}
965
966 (logand 14 13) ; 14 = @r{00 0000 0000 0000 0000 0000 0000 1110}
967 ; 13 = @r{00 0000 0000 0000 0000 0000 0000 1101}
968 @result{} 12 ; 12 = @r{00 0000 0000 0000 0000 0000 0000 1100}
969 @end group
970
971 @group
972 (logand 14 13 4) ; 14 = @r{00 0000 0000 0000 0000 0000 0000 1110}
973 ; 13 = @r{00 0000 0000 0000 0000 0000 0000 1101}
974 ; 4 = @r{00 0000 0000 0000 0000 0000 0000 0100}
975 @result{} 4 ; 4 = @r{00 0000 0000 0000 0000 0000 0000 0100}
976 @end group
977
978 @group
979 (logand)
980 @result{} -1 ; -1 = @r{11 1111 1111 1111 1111 1111 1111 1111}
981 @end group
982 @end smallexample
983 @end defun
984
985 @defun logior &rest ints-or-markers
986 This function returns the ``inclusive or'' of its arguments: the @var{n}th bit
987 is set in the result if, and only if, the @var{n}th bit is set in at least
988 one of the arguments. If there are no arguments, the result is zero,
989 which is an identity element for this operation. If @code{logior} is
990 passed just one argument, it returns that argument.
991
992 @smallexample
993 @group
994 ; @r{ 30-bit binary values}
995
996 (logior 12 5) ; 12 = @r{00 0000 0000 0000 0000 0000 0000 1100}
997 ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
998 @result{} 13 ; 13 = @r{00 0000 0000 0000 0000 0000 0000 1101}
999 @end group
1000
1001 @group
1002 (logior 12 5 7) ; 12 = @r{00 0000 0000 0000 0000 0000 0000 1100}
1003 ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
1004 ; 7 = @r{00 0000 0000 0000 0000 0000 0000 0111}
1005 @result{} 15 ; 15 = @r{00 0000 0000 0000 0000 0000 0000 1111}
1006 @end group
1007 @end smallexample
1008 @end defun
1009
1010 @defun logxor &rest ints-or-markers
1011 This function returns the ``exclusive or'' of its arguments: the
1012 @var{n}th bit is set in the result if, and only if, the @var{n}th bit is
1013 set in an odd number of the arguments. If there are no arguments, the
1014 result is 0, which is an identity element for this operation. If
1015 @code{logxor} is passed just one argument, it returns that argument.
1016
1017 @smallexample
1018 @group
1019 ; @r{ 30-bit binary values}
1020
1021 (logxor 12 5) ; 12 = @r{00 0000 0000 0000 0000 0000 0000 1100}
1022 ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
1023 @result{} 9 ; 9 = @r{00 0000 0000 0000 0000 0000 0000 1001}
1024 @end group
1025
1026 @group
1027 (logxor 12 5 7) ; 12 = @r{00 0000 0000 0000 0000 0000 0000 1100}
1028 ; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
1029 ; 7 = @r{00 0000 0000 0000 0000 0000 0000 0111}
1030 @result{} 14 ; 14 = @r{00 0000 0000 0000 0000 0000 0000 1110}
1031 @end group
1032 @end smallexample
1033 @end defun
1034
1035 @defun lognot integer
1036 This function returns the logical complement of its argument: the @var{n}th
1037 bit is one in the result if, and only if, the @var{n}th bit is zero in
1038 @var{integer}, and vice-versa.
1039
1040 @example
1041 (lognot 5)
1042 @result{} -6
1043 ;; 5 = @r{00 0000 0000 0000 0000 0000 0000 0101}
1044 ;; @r{becomes}
1045 ;; -6 = @r{11 1111 1111 1111 1111 1111 1111 1010}
1046 @end example
1047 @end defun
1048
1049 @node Math Functions
1050 @section Standard Mathematical Functions
1051 @cindex transcendental functions
1052 @cindex mathematical functions
1053 @cindex floating-point functions
1054
1055 These mathematical functions allow integers as well as floating point
1056 numbers as arguments.
1057
1058 @defun sin arg
1059 @defunx cos arg
1060 @defunx tan arg
1061 These are the ordinary trigonometric functions, with argument measured
1062 in radians.
1063 @end defun
1064
1065 @defun asin arg
1066 The value of @code{(asin @var{arg})} is a number between
1067 @ifnottex
1068 @minus{}pi/2
1069 @end ifnottex
1070 @tex
1071 @math{-\pi/2}
1072 @end tex
1073 and
1074 @ifnottex
1075 pi/2
1076 @end ifnottex
1077 @tex
1078 @math{\pi/2}
1079 @end tex
1080 (inclusive) whose sine is @var{arg}; if, however, @var{arg} is out of
1081 range (outside [@minus{}1, 1]), it signals a @code{domain-error} error.
1082 @end defun
1083
1084 @defun acos arg
1085 The value of @code{(acos @var{arg})} is a number between 0 and
1086 @ifnottex
1087 pi
1088 @end ifnottex
1089 @tex
1090 @math{\pi}
1091 @end tex
1092 (inclusive) whose cosine is @var{arg}; if, however, @var{arg} is out
1093 of range (outside [@minus{}1, 1]), it signals a @code{domain-error} error.
1094 @end defun
1095
1096 @defun atan y &optional x
1097 The value of @code{(atan @var{y})} is a number between
1098 @ifnottex
1099 @minus{}pi/2
1100 @end ifnottex
1101 @tex
1102 @math{-\pi/2}
1103 @end tex
1104 and
1105 @ifnottex
1106 pi/2
1107 @end ifnottex
1108 @tex
1109 @math{\pi/2}
1110 @end tex
1111 (exclusive) whose tangent is @var{y}. If the optional second
1112 argument @var{x} is given, the value of @code{(atan y x)} is the
1113 angle in radians between the vector @code{[@var{x}, @var{y}]} and the
1114 @code{X} axis.
1115 @end defun
1116
1117 @defun exp arg
1118 This is the exponential function; it returns
1119 @tex
1120 @math{e}
1121 @end tex
1122 @ifnottex
1123 @i{e}
1124 @end ifnottex
1125 to the power @var{arg}.
1126 @tex
1127 @math{e}
1128 @end tex
1129 @ifnottex
1130 @i{e}
1131 @end ifnottex
1132 is a fundamental mathematical constant also called the base of natural
1133 logarithms.
1134 @end defun
1135
1136 @defun log arg &optional base
1137 This function returns the logarithm of @var{arg}, with base @var{base}.
1138 If you don't specify @var{base}, the base
1139 @tex
1140 @math{e}
1141 @end tex
1142 @ifnottex
1143 @i{e}
1144 @end ifnottex
1145 is used. If @var{arg} is negative, it signals a @code{domain-error}
1146 error.
1147 @end defun
1148
1149 @ignore
1150 @defun expm1 arg
1151 This function returns @code{(1- (exp @var{arg}))}, but it is more
1152 accurate than that when @var{arg} is negative and @code{(exp @var{arg})}
1153 is close to 1.
1154 @end defun
1155
1156 @defun log1p arg
1157 This function returns @code{(log (1+ @var{arg}))}, but it is more
1158 accurate than that when @var{arg} is so small that adding 1 to it would
1159 lose accuracy.
1160 @end defun
1161 @end ignore
1162
1163 @defun log10 arg
1164 This function returns the logarithm of @var{arg}, with base 10. If
1165 @var{arg} is negative, it signals a @code{domain-error} error.
1166 @code{(log10 @var{x})} @equiv{} @code{(log @var{x} 10)}, at least
1167 approximately.
1168 @end defun
1169
1170 @defun expt x y
1171 This function returns @var{x} raised to power @var{y}. If both
1172 arguments are integers and @var{y} is positive, the result is an
1173 integer; in this case, overflow causes truncation, so watch out.
1174 @end defun
1175
1176 @defun sqrt arg
1177 This returns the square root of @var{arg}. If @var{arg} is negative,
1178 it signals a @code{domain-error} error.
1179 @end defun
1180
1181 @node Random Numbers
1182 @section Random Numbers
1183 @cindex random numbers
1184
1185 A deterministic computer program cannot generate true random numbers.
1186 For most purposes, @dfn{pseudo-random numbers} suffice. A series of
1187 pseudo-random numbers is generated in a deterministic fashion. The
1188 numbers are not truly random, but they have certain properties that
1189 mimic a random series. For example, all possible values occur equally
1190 often in a pseudo-random series.
1191
1192 In Emacs, pseudo-random numbers are generated from a ``seed'' number.
1193 Starting from any given seed, the @code{random} function always
1194 generates the same sequence of numbers. Emacs always starts with the
1195 same seed value, so the sequence of values of @code{random} is actually
1196 the same in each Emacs run! For example, in one operating system, the
1197 first call to @code{(random)} after you start Emacs always returns
1198 @minus{}1457731, and the second one always returns @minus{}7692030. This
1199 repeatability is helpful for debugging.
1200
1201 If you want random numbers that don't always come out the same, execute
1202 @code{(random t)}. This chooses a new seed based on the current time of
1203 day and on Emacs's process @acronym{ID} number.
1204
1205 @defun random &optional limit
1206 This function returns a pseudo-random integer. Repeated calls return a
1207 series of pseudo-random integers.
1208
1209 If @var{limit} is a positive integer, the value is chosen to be
1210 nonnegative and less than @var{limit}.
1211
1212 If @var{limit} is @code{t}, it means to choose a new seed based on the
1213 current time of day and on Emacs's process @acronym{ID} number.
1214 @c "Emacs'" is incorrect usage!
1215
1216 On some machines, any integer representable in Lisp may be the result
1217 of @code{random}. On other machines, the result can never be larger
1218 than a certain maximum or less than a certain (negative) minimum.
1219 @end defun
1220
1221 @ignore
1222 arch-tag: 574e8dd2-d513-4616-9844-c9a27869782e
1223 @end ignore