Purpose

Return value

Syntax

=COTH(number)
  • number - The hyperbolic angle.

Using the COTH function

The Excel COTH function returns the hyperbolic cotangent of a hyperbolic angle . Given 1.00 as input, the function returns 1.313035285 as output.

=COTH(1) // returns 1.313035285

Explanation

The hyperbolic cotangent is the reciprocal of the TANH function.

=1/TANH(x) // equivalent to COTH(x)

The plot below shows the COTH function’s output in Excel.

Hyperbolic cotangent plot. - 1

Notes:

  • Returns a #DIV/0! error when given zero as input.

Purpose

Return value

Syntax

=CSC(number)
  • number - The angle provided in radians.

Using the CSC function

The CSC function returns the cosecant of an angle provided in radians. In geometric terms, the cosecant of an angle is equal to the ratio of a right triangle’s hypotenuse divided by its opposite side. For example, the cosecant of PI()/6 or 30° returns the ratio 2.0.

=CSC(PI()/6) // Returns 2.0

Using Degrees

The CSC function expects radians. To supply an angle to CSC in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radians. For example, to get the CSC of 60 degrees, you can use either formula below:

=CSC(60*PI()/180)
=CSC(RADIANS(60))

Explanation

Graph of Cosecant Function - 2

The graph of cosecant, shown above, visualizes the output of the function for angles from 0 to a full rotation. The function has vertical asymptotes within the range [0, 2π] at the points 0, π and 2π where the output diverges to infinity. CSC is the inverse of SIN and can be equivalently defined in the formula below:

=CSC(angle)=1/SIN(angle)

The relationship between cosecant and sine is visualized by the graph of the two functions shown below:

Graph of Cosecant and Sine Function - 3

Graphs courtesy of wumbo.net .