Find the value of e raised to the power of a number
=EXP(number)
| Parameter | Description |
|---|---|
number |
The power that e is raised to. |
The EXP function finds the value of the constant e raised to a given number, so you can think of the EXP function as e^(number), where e ≈ 2.718. The
=EXP(0) // returns 1
=EXP(1) // returns 2.71828182846 (the value of e)
=EXP(2) // returns 7.38905609893