SINH Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel SINH function returns the hyperbolic sine of a number, defined as (e^x − e^−x) / 2. The argument is a plain number, not an angle in degrees.


Quick answer:
=SINH(0) hyperbolic sine of 0 = 0

Syntax

=SINH(number)
ArgumentDescription
numberRequiredAny real number. SINH grows rapidly for large magnitudes, so very large inputs can overflow to a #NUM! error.

How to use it

The hyperbolic sine is built from the exponential function: SINH(x) = (EXP(x) - EXP(-x)) / 2. Unlike the circular trig functions, there is no degree-vs-radian issue — you pass a plain number:

=SINH(0) // = 0
=SINH(1) // approx 1.1752
=SINH(-1) // approx -1.1752 (odd function)

SINH is an odd function: SINH(-x) = -SINH(x). Its inverse is ASINH, and it pairs with COSH and TANH for the other hyperbolic ratios.

Hyperbolic, not circular. These functions describe a hyperbola rather than a circle and appear in catenary curves, engineering, and statistics — not in angle geometry, so RADIANS is never needed here.

Try it: interactive demo

Live demo

Pick a SINH example to see the formula and its result.

Result:

Practice workbook

📊
Download the free SINH practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What is the hyperbolic sine?
It is defined as SINH(x) = (e^x - e^-x) / 2. It describes a hyperbola rather than a circle and shows up in catenary cables, physics, and statistics.
Does SINH use degrees or radians?
Neither — SINH takes a plain real number, not an angle. There is no degree-to-radian conversion for hyperbolic functions.
What is the inverse of SINH?
ASINH (inverse hyperbolic sine) returns the number whose hyperbolic sine is a given value.
Why does SINH return a #NUM! error for big inputs?
SINH grows exponentially, so a large argument (roughly above 710) overflows Excel's numeric limit and returns #NUM!.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: COSH · TANH · ASINH · SIN · EXP