Skip to content

Commit 247f082

Browse files
authored
Add complex number support to acos (#517)
1 parent f32ec6b commit 247f082

File tree

1 file changed

+43
-5
lines changed

1 file changed

+43
-5
lines changed

spec/API_specification/array_api/elementwise_functions.py

+43-5
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,65 @@ def abs(x: array, /) -> array:
2727
"""
2828

2929
def acos(x: array, /) -> array:
30-
"""
31-
Calculates an implementation-dependent approximation of the principal value of the inverse cosine, having domain ``[-1, +1]`` and codomain ``[+0, +π]``, for each element ``x_i`` of the input array ``x``. Each element-wise result is expressed in radians.
30+
r"""
31+
Calculates an implementation-dependent approximation of the principal value of the inverse cosine for each element ``x_i`` of the input array ``x``.
32+
33+
Each element-wise result is expressed in radians.
3234
3335
**Special cases**
3436
35-
For floating-point operands,
37+
For real-valued floating-point operands,
3638
3739
- If ``x_i`` is ``NaN``, the result is ``NaN``.
3840
- If ``x_i`` is greater than ``1``, the result is ``NaN``.
3941
- If ``x_i`` is less than ``-1``, the result is ``NaN``.
4042
- If ``x_i`` is ``1``, the result is ``+0``.
4143
44+
For complex floating-point operands, let ``a = real(x_i)``, ``b = imag(x_i)``, and
45+
46+
- If ``a`` is either ``+0`` or ``-0`` and ``b`` is ``+0``, the result is ``π/2 - 0j``.
47+
- If ``a`` is either ``+0`` or ``-0`` and ``b`` is ``NaN``, the result is ``π/2 + NaN j``.
48+
- If ``a`` is a finite number and ``b`` is ``+infinity``, the result is ``π/2 - infinity j``.
49+
- If ``a`` is a nonzero finite number and ``b`` is ``NaN``, the result is ``NaN + NaN j``.
50+
- If ``a`` is ``-infinity`` and ``b`` is a positive (i.e., greater than ``0``) finite number, the result is ``π - infinity j``.
51+
- If ``a`` is ``+infinity`` and ``b`` is a positive (i.e., greater than ``0``) finite number, the result is ``+0 - infinity j``.
52+
- If ``a`` is ``-infinity`` and ``b`` is ``+infinity``, the result is ``3π/4 - infinity j``.
53+
- If ``a`` is ``+infinity`` and ``b`` is ``+infinity``, the result is ``π/4 - infinity j``.
54+
- If ``a`` is either ``+infinity`` or ``-infinity`` and ``b`` is ``NaN``, the result is ``NaN ± infinity j`` (sign of the imaginary component is unspecified).
55+
- If ``a`` is ``NaN`` and ``b`` is a finite number, the result is ``NaN + NaN j``.
56+
- If ``a`` is ``NaN`` and ``b`` is ``+infinity``, the result is ``NaN - infinity j``.
57+
- If ``a`` is ``NaN`` and ``b`` is ``NaN``, the result is ``NaN + NaN j``.
58+
59+
.. note::
60+
The principal value of the arc cosine of a complex number :math:`z` is
61+
62+
.. math::
63+
\operatorname{acos}(z) = \frac{1}{2}\pi + j\ \ln(zj + \sqrt{1-z^2})
64+
65+
For any :math:`z`,
66+
67+
.. math::
68+
\operatorname{acos}(z) = \pi - \operatorname{acos}(-z)
69+
70+
.. note::
71+
For complex floating-point operands, ``acos(conj(x))`` must equal ``conj(acos(x))``.
72+
73+
.. note::
74+
The inverse cosine (or arc cosine) is a multi-valued function and requires a branch cut on the complex plane. By convention, a branch cut is placed at the line segments :math:`(-\infty, -1)` and :math:`(1, \infty)` of the real axis.
75+
76+
Accordingly, for complex arguments, the function returns the inverse cosine in the range of a strip unbounded along the imaginary axis and in the interval :math:`[0, \pi]` along the real axis.
77+
78+
*Note: branch cuts have provisional status* (see :ref:`branch-cuts`).
79+
4280
Parameters
4381
----------
4482
x: array
45-
input array. Should have a real-valued floating-point data type.
83+
input array. Should have a floating-point data type.
4684
4785
Returns
4886
-------
4987
out: array
50-
an array containing the inverse cosine of each element in ``x``. The returned array must have a real-valued floating-point data type determined by :ref:`type-promotion`.
88+
an array containing the inverse cosine of each element in ``x``. The returned array must have a floating-point data type determined by :ref:`type-promotion`.
5189
"""
5290

5391
def acosh(x: array, /) -> array:

0 commit comments

Comments
 (0)