sin^2(x) = .5(1+cos2x) code example
Example 1: sinh(x)
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2
Example 2: sinh(x)
sinh(x):=(e^x-e^{-x})/2
const sinh = (x) => (Math.exp(x) - Math.exp(-x))/2
sinh(x):=(e^x-e^{-x})/2