template< class T >
complex<T> acosh( const complex<T>& z );
Computes complex arc hyperbolic cosine of a complex value z with branch cut at values less than 1 along the real axis.
[edit] Parameters [edit] Return valueIf no errors occur, the complex arc hyperbolic cosine of z is returned, in the range of a half-strip of nonnegative values along the real axis and in the interval [âiÏ; +iÏ] along the imaginary axis.
[edit] Error handling and special valuesErrors are reported consistent with math_errhandling.
If the implementation supports IEEE floating-point arithmetic,
(±0,+0)
, the result is (+0,Ï/2)
.(x,+â)
(for any finite x), the result is (+â,Ï/2)
.(x,NaN)
(for any[1] finite x), the result is (NaN,NaN)
and FE_INVALID may be raised.(-â,y)
(for any positive finite y), the result is (+â,Ï)
.(+â,y)
(for any positive finite y), the result is (+â,+0)
.(-â,+â)
, the result is (+â,3Ï/4)
.(屉,NaN)
, the result is (+â,NaN)
.(NaN,y)
(for any finite y), the result is (NaN,NaN)
and FE_INVALID may be raised.(NaN,+â)
, the result is (+â,NaN)
.(NaN,NaN)
, the result is (NaN,NaN)
.(0,NaN)
, the result should be (NaN,Ï/2)
.Although the C++ standard names this function "complex arc hyperbolic cosine", the inverse functions of the hyperbolic functions are the area functions. Their argument is the area of a hyperbolic sector, not an arc. The correct name is "complex inverse hyperbolic cosine", and, less common, "complex area hyperbolic cosine".
Inverse hyperbolic cosine is a multivalued function and requires a branch cut on the complex plane. The branch cut is conventionally placed at the line segment (-â,+1) of the real axis.
The mathematical definition of the principal value of the inverse hyperbolic cosine is acosh z = ln(z + âz+1 âz-1).
For any
z,
acosh(z) = acos(z), or simply
i acos(z)in the upper half of the complex plane.
[edit] ExampleOutput:
acosh(0.500000,0.000000) = (0.000000,-1.047198) acosh(0.500000,-0.000000) (the other side of the cut) = (0.000000,1.047198) acosh(1.000000,1.000000) = (1.061275,0.904557) i*acos(1.000000,1.000000) = (1.061275,0.904557)[edit] See also computes arc cosine of a complex number (\({\small\arccos{z}}\)arccos(z))
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4