Sech
Syntax:¶
SECH(number)
- number: The angle in radians for which you want to calculate the hyperbolic secant. This must be a numeric value.
Description:¶
The SECH function returns the hyperbolic secant of a given number. The hyperbolic secant is defined as:
SECH(number) = 2 / (e^number + e^(-number))
Where e is the base of natural logarithms (approximately 2.718).
Examples:¶
-
=SECH(0)would return1because the exponential functions cancel each other out, resulting in SECH(0) = 2 / (1 + 1) = 1. -
=SECH(1)would return approximately0.648because SECH(1) = 2 / (e + e^(-1)). -
=SECH(-1)would also return approximately0.648since the hyperbolic secant is symmetric around 0. -
=SECH(2)would return approximately0.265because SECH(2) = 2 / (e^2 + e^(-2)).
Notes:¶
- The
SECHfunction expects the input to be in radians. If the value is in degrees, convert it to radians using theRADIANSfunction before usingSECH. - If the input number is very large (positive or negative), the
SECHfunction will approach zero.