Numeric Math Functions Oracle PLSQL

SQL>
SQL> --SINH(x): Returns the hyperbolic sine of x.
SQL> select SINH(1) from dual;
   SINH(1)
----------
1.17520119
SQL>