# asech() Function & Examples

Use the asech() trigonometry function in Calcul.io. Review its syntax, edit working examples, understand the result, and explore related math functions.

## asech

#### asech(x)

Try it yourself:

```calculio
asech(0.5)
```

[acsch](https://calcul.io/function/acsch/index.md)

[acoth](https://calcul.io/function/acoth/index.md)

---

## asech(): The Inverse Hyperbolic Secant

**asech()** reverses [sech()](https://calcul.io/function/sech/index.md), the reciprocal of hyperbolic cosine. It occurs in symbolic formulas, profiles that decay away from a center, and models involving hyperbolic functions.

## Real input range

For real arithmetic, asech(x) accepts values from 0 through 1, with zero representing a limiting infinite result rather than an ordinary finite value. Values greater than 1 or negative values do not have real inverse-hyperbolic-secant results. Treat boundary data carefully.

asech(x) can be understood as acosh(1/x), linking it to [acosh()](https://calcul.io/function/acosh/index.md). The reciprocal reveals two caveats: zero cannot be divided into, and tiny positive inputs can yield large values. Validate measured data with [larger()](https://calcul.io/function/larger/index.md) and [smallerEq()](https://calcul.io/function/smallerEq/index.md) before evaluation.

## Useful companions

To check a finite result, compute sech(asech(x)). Related hyperbolic inverses are [asinh()](https://calcul.io/function/asinh/index.md) and [atanh()](https://calcul.io/function/atanh/index.md); each has its own domain. Do not confuse asech with asec, which belongs to circular trigonometry.

Writing asech directly communicates both the reciprocal form and the intended branch, making formulas easier to review than a manually expanded logarithmic expression.

[All functions](https://calcul.io/functions/index.md)
