Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Hyperbolic Functions

sinh Hyperbolic sine


Syntax:
sinh(x)
Example:
sinh(10)

asinh Inverse hyperbolic sine


Syntax:
asinh(x)
Example:
asinh(4)

cosh Hyperbolic cosine


Syntax:
cosh(x)
Example:
cosh(-5)

acosh Inverse hyperbolic cosine


Syntax:
acosh(x)
Example:
acosh(22)

tanh Hyperbolic tangent


Syntax:
tanh(x)
Example:
tanh(76)

atanh Inverse hyperbolic tangent


Syntax:
atanh(x)
Example:
atanh(45)

csch Hyperbolic cosecant


csch(x)
Example:
csch(3)

acsch Inverse hyperbolic cosecant


acsch(x)
Example:
acsch(17)

sech Hyperbolic secant


Syntax:
sech(x)
Example:
sech(23)

asech Inverse hyperbolic secant


Syntax:
asech(x)
Example:
asech(17)

coth Hyperbolic cotangent


Syntax:
coth(x)
Example:
coth(88)

acoth Inverse hyperbolic cotangent


Syntax:
coth(x)
Example:
coth(32)

Exponents and Logarithms

exp Exponential
Syntax:
exp(x)
Example:
exp(1)

log Natural logarithm(base e)


Syntax:
log(x)
Example:
log(10)

log10 Common logarithm (base 10)


Syntax:
log10(x)
Example:
log10(1000)

Display the value of b


a=4
b=(exp(2*a) - 1)/(exp(2*a) + 1)
Display the value of d
c=8
d=1 - tanh(c)^2

Display the value of f


e=42
f=e*acosh(e) - (e - 1)^(1/2)*(e + 1)^(1/2)

Display the value of g


h= -2
g= atanh(h +1/6)

Display the value of j


i= 0.5:0.5:5
j=log10(j)

Display the value of l


k=-2:0.5:10
l= exp(k/2)

You might also like