Numeric Math Functions Oracle PLSQL

SQL> -- 
SQL>
SQL> --LN(x):Returns the natural logarithm of x.
SQL>
SQL> select LN(2.71828183) from dual;
LN(2.71828183)
--------------
             1
SQL>