import math
# 쌍곡 사인 함수
def sinh(x):
return (math.exp(x) - math.exp(-x)) / 2
# 쌍곡 코사인 함수
def cosh(x):
return (math.exp(x) + math.exp(-x)) / 2
# 쌍곡 탄젠트 함수
def tanh(x):
return sinh(x) / cosh(x)
# 테스트
x = 2
print(f'sinh({x}) = {sinh(x)}')
print(f'cosh({x}) = {cosh(x)}')
print(f'tanh({x}) = {tanh(x)}')