Function reference · Trigonometry
acot
Computes the principal inverse cotangent.
For real inputs, Nerdamer uses the principal range from 0 to pi and handles zero and infinities explicitly.
Examples
These examples use Nerdamer Notation.
Use an exact inverse-cotangent value.
acot(1) // → (1/4)*pi
Interfaces
The same operation is available through the interfaces below.
Nerdamer Notation
Use this form inside input passed to nerdamer(...).
acot(arg1)
nerdamer.acot
Call the operation through the default nerdamer import.
nerdamer.acot(x: ExpressionInput): Expression
Parameters
| Name | Type | Description |
|---|---|---|
x | ExpressionInput | The input expression. |
Returns
Expression — The arccotangent of `x` in radians.
