Exponential Function #
This file contains the definitions of the real and complex exponential function.
Main definitions #
Complex.exp: The complex exponential function, defined via its Taylor seriesReal.exp: The real exponential function, defined as the real part of the complex exponential
@[irreducible]
The complex exponential function, defined via its Taylor series
Equations
- Complex.exp z = (Complex.exp' z).lim
Instances For
scoped notation for the complex exponential function
Equations
- Complex.termCexp = Lean.ParserDescr.node `Complex.termCexp 1024 (Lean.ParserDescr.symbol "cexp")
Instances For
scoped notation for the real exponential function
Equations
- Real.termRexp = Lean.ParserDescr.node `Real.termRexp 1024 (Lean.ParserDescr.symbol "rexp")
Instances For
the exponential function as a monoid hom from Multiplicative ℂ to ℂ
Equations
- Complex.expMonoidHom = { toFun := fun (z : Multiplicative ℂ) => Complex.exp (Multiplicative.toAdd z), map_one' := Complex.expMonoidHom._proof_1, map_mul' := Complex.expMonoidHom._proof_2 }
Instances For
@[simp]
the exponential function as a monoid hom from Multiplicative ℝ to ℝ
Equations
- Real.expMonoidHom = { toFun := fun (x : Multiplicative ℝ) => Real.exp (Multiplicative.toAdd x), map_one' := Real.expMonoidHom._proof_1, map_mul' := Real.expMonoidHom._proof_2 }
Instances For
@[simp]
theorem
Complex.sum_div_factorial_le
{α : Type u_1}
[Field α]
[LinearOrder α]
[IsStrictOrderedRing α]
(n j : ℕ)
(hn : 0 < n)
:
Extension for the positivity tactic: Real.exp is always positive.
Equations
- One or more equations did not get rendered due to their size.