Numeric Math Functions Oracle PLSQL

SQL> --EXP(x):Returns the result of the number e raised to the power x, 
--where e is approximately 2.71828183.
SQL>
SQL> select EXP(1) from dual;
    EXP(1)
----------
2.71828183
SQL>