HELP EXP                                            A. Sloman March 1987

    exp(<number>) -> <exponential>

EXP returns the exponential of <number>. To raise a number to a different
power use the operation **, e.g.

    10 ** 2 =>
    ** 100

    100 ** 0.5 =>
    ** 10.0

(Note: the second result is approximate only).

See REF * NUMBERS for details of number types and arithmetical operations
available in POP-11.

See also HELP
    *MATH - for a summary of mathematical operations in POP-11
