acosh function

double acosh(
  1. double x
)

Implementation

double acosh(double x) => math.log(x + math.sqrt(x * x - 1));