math

Functions
cbrt number
cube z
cube-root z
hypot x y
hypot3 x y z
square z
square-root rs-math::z
cbrt  number  [Function]
Return the cube root of NUMBER.

If NUMBER is a real number, value is the real cube root of NUMBER.
hypot  x y  [Function]
Return the distance between a point and the origin
in a two-dimensional Cartesian coordinate system.

Arguments X and Y have to be real numbers.
hypot3  x y z  [Function]
Return the distance between a point and the origin
in a three-dimensional Cartesian coordinate system.

Arguments X, Y, and Z have to be real numbers.
square  z  [Function]
Return Z squared, that is Z raised to the power two.

Argument Z has to be a number.
square-root  rs-math::z  [Function]
Return the square root of Z.

Argument Z has to be a number.

The `square-root' function attempts to propagate the type
of the argument Z to its value.
cube  z  [Function]
Return Z cubed, that is Z raised to the power three.

Argument Z has to be a number.
cube-root  z  [Function]
Return the cube root of Z.

Argument Z has to be a number.

If argument Z is zero, value is zero.  If argument Z is
a real number, value is the real cube root of Z.

The `cube-root' function attempts to propagate the type
of the argument Z to its value.