Acosh returns the inverse hyperbolic cosine of x.
package main import ( "fmt" "math" ) func main() { fmt.Printf("%.2f", math.Acosh(1)) }