Trigonometric and hyperbolic trigonometric functions #
This file contains the definitions of the sine, cosine, tangent, hyperbolic sine, hyperbolic cosine, and hyperbolic tangent functions.
The complex sine function, defined via exp
Equations
- Complex.sin z = (Complex.exp (-z * Complex.I) - Complex.exp (z * Complex.I)) * Complex.I / 2
Instances For
The complex cosine function, defined via exp
Equations
- Complex.cos z = (Complex.exp (z * Complex.I) + Complex.exp (-z * Complex.I)) / 2
Instances For
The complex tangent function, defined as sin z / cos z
Equations
- Complex.tan z = Complex.sin z / Complex.cos z
Instances For
The complex cotangent function, defined as cos z / sin z
Equations
- z.cot = Complex.cos z / Complex.sin z
Instances For
The complex hyperbolic sine function, defined via exp
Equations
- Complex.sinh z = (Complex.exp z - Complex.exp (-z)) / 2
Instances For
The complex hyperbolic cosine function, defined via exp
Equations
- Complex.cosh z = (Complex.exp z + Complex.exp (-z)) / 2
Instances For
The complex hyperbolic tangent function, defined as sinh z / cosh z
Equations
- Complex.tanh z = Complex.sinh z / Complex.cosh z
Instances For
Extension for the positivity
tactic: Real.cosh
is always positive.
Instances For
@[deprecated Complex.norm_exp_ofReal_mul_I (since := "2025-02-16")]
Alias of Complex.norm_exp_ofReal_mul_I
.
@[deprecated Complex.norm_exp (since := "2025-02-16")]
Alias of Complex.norm_exp
.