Skip to main content

ASINH

Calculates the hyperbolic arc sine (inverse hyperbolic sine) of a number, which is the value ( \theta ) in radians whose hyperbolic sine is the specified number.

See also:
[SELECT]


Syntax

SELECT ASINH(value) FROM <multipartIdentifier>;

Arguments

value
A numeric expression for which the hyperbolic arc sine is to be calculated.

Return Value(s)

Returns the hyperbolic arc sine of the specified value in radians.


Examples

Calculate the hyperbolic arc sine of 0.5

SELECT ASINH(0.5) AS hyperbolic_arc_sine_value;

This query returns approximately 0.4812, as the hyperbolic arc sine of 0.5 is about 0.4812 radians.

Calculate the hyperbolic arc sine of -1

SELECT ASINH(-1) AS hyperbolic_arc_sine_value;

This query calculates the hyperbolic arc sine of -1, resulting in approximately -0.8814, as this is the value in radians whose hyperbolic sine is -1.