Complex Number Inverse Trigonometric Functions

Implementation and Accuracy

asin

acos

atan

asinh

acosh

atanh

History

The following complex number algorithms are the inverses of trigonometric functions currently present in the C++ standard. Equivalents to these functions are part of the C99 standard, and will be part of the forthcoming Technical Report on C++ Standard Library Extensions.


Implementation and Accuracy

Although there are simple formulae available for all of these functions, a naive implementation that uses these formulae could fail for some input values. The Boost versions of these functions are implemented using the methodology described in "Implementing the Complex Arcsine and Arccosine Functions Using Exception Handling" by T. E. Hull Thomas F. Fairgrieve and Ping Tak Peter Tang, ACM Transactions on Mathematical Software, Vol. 23, No. 3, September 1997. This means that the functions are well defined over the entire complex number range, and produce accurate values even at the extremes of that range, whereas a naive formula could cause overflow or underflow to occur during the calculation, even though the result is actually a representable value. The maximum theoretical relative error for all of these functions is less than 9.5E for every machine-representable point in the complex plane. Please refer to comments in the header files themselves and to the above mentioned paper for more information on the implementation methodology.


asin

#include <boost/math/complex/asin.hpp>

Synopsis

template<class T> 
std::complex<T> asin(const std::complex<T>& z);

Return value :This function returns the inverse sine of the complex number z.

Formula:  asin


acos

#include <boost/math/complex/acos.hpp>

Synopsis

template<class T> 
std::complex<T> acos(const std::complex<T>& z);

Return value: This function returns the inverse cosine of the complex number z.

Formula:  acos


atan

#include <boost/math/complex/atan.hpp>

Synopsis

template<class T> 
std::complex<T> atan(const std::complex<T>& z);

Return value: This function returns the inverse tangent of the complex number z.

Formula:  atan


asinh

#include <boost/math/complex/asinh.hpp>

Synopsis

template<class T> 
std::complex<T> asinh(const std::complex<T>& z);

Return value: This function returns the inverse hyperbolic sine of the complex number z.

Formula:  asinh


acosh

#include <boost/math/complex/acosh.hpp>

Synopsis

template<class T> 
std::complex<T> acosh(const std::complex<T>& z);

Return value: This function returns the inverse hyperbolic cosine of the complex number z.

Formula:  acosh


atanh

#include <boost/math/complex/atanh.hpp>

Synopsis

template<class T> 
std::complex<T> atanh(const std::complex<T>& z);

Return value: This function returns the inverse hyperbolic tangent of the complex number z.

Formula:  atanh


Copyright © 2001 -2002 Daryle Walker, 2001-2003 Hubert Holin, 2005 John Maddock

Top