Mega Code Archive

 
Categories / MSSQL / Math Functions
 

ACOS is the inverse of COS

1> -- ACOS is the inverse of COS: 2> 3> SELECT COS(ACOS(0.5)) 4> GO ------------------------      0.49999999999999989 (1 rows affected) 1>