Numeric Math Functions Oracle PLSQL

SQL>
SQL> --ACOS(x): Returns the arccosine of x.
SQL>
SQL> select ACOS(-1) from dual;
  ACOS(-1)
----------
3.14159265
SQL>