`math` is Go’s standard library package for basic mathematical constants and functions (mostly for `float64`).
r := 2.0 area := math.Pi * r * r // circle area root := math.Sqrt(9) // 3