Exponential, trigonometric and hyperbolic trigonometric functions
This file contains the definitions of the real and complex exponential, sine, cosine, tangent, hyperbolic sine, hypebolic cosine, and hyperbolic tangent functions.
The Cauchy sequence consisting of partial sums of the Taylor series of the complex exponential function
The complex exponential function, defined via its Taylor series
Equations
- complex.exp z = (complex.exp' z).lim
The complex sine function, defined via exp
Equations
- complex.sin z = (complex.exp (-z * complex.I) - complex.exp (z * complex.I)) * complex.I / 2
The complex cosine function, defined via exp
Equations
- complex.cos z = (complex.exp (z * complex.I) + complex.exp (-z * complex.I)) / 2
The complex tangent function, defined as sin z / cos z
Equations
- complex.tan z = complex.sin z / complex.cos z
The complex hyperbolic sine function, defined via exp
Equations
- complex.sinh z = (complex.exp z - complex.exp (-z)) / 2
The complex hyperbolic cosine function, defined via exp
Equations
- complex.cosh z = (complex.exp z + complex.exp (-z)) / 2
The complex hyperbolic tangent function, defined as sinh z / cosh z
Equations
- complex.tanh z = complex.sinh z / complex.cosh z
The real hypebolic sine function, defined as the real part of the complex hyperbolic sine
Equations
- real.sinh x = (complex.sinh ↑x).re
The real hypebolic cosine function, defined as the real part of the complex hyperbolic cosine
Equations
- real.cosh x = (complex.cosh ↑x).re
The real hypebolic tangent function, defined as the real part of the complex hyperbolic tangent
Equations
- real.tanh x = (complex.tanh ↑x).re