Overview
Grammar | EXP(number) | Returns the nth power of e. The constant e is based on the natural logarithm (2.71828182845904). |
Parameter | number | Any real number as the power applied to the constant e. |
Notes
The function supports only one numerical parameter and returns illegal if more than one numerical parameters are set.
To return the exponentiation result of other bases, you can use the exponentiation operator (^). For example, 4 is the base and 2 is the power in 4^2. The EXP function is opposite to the LN function.
Example
Formula | Result | Notes |
---|---|---|
EXP(0) | 1 | |
EXP(3) | 20.08553692 | |
EXP(LN(2)) | 2 |