Skip to content

Commit

Permalink
feat(analysis/special_functions/exp): add real.exp_half (#14729)
Browse files Browse the repository at this point in the history
  • Loading branch information
urkud committed Jun 14, 2022
1 parent da5a737 commit 1c8f995
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/analysis/special_functions/exp.lean
Expand Up @@ -131,6 +131,9 @@ namespace real

variables {x y z : ℝ}

lemma exp_half (x : ℝ) : exp (x / 2) = sqrt (exp x) :=
by rw [eq_comm, sqrt_eq_iff_sq_eq, sq, ← exp_add, add_halves]; exact (exp_pos _).le

/-- The real exponential function tends to `+∞` at `+∞`. -/
lemma tendsto_exp_at_top : tendsto exp at_top at_top :=
begin
Expand Down

0 comments on commit 1c8f995

Please sign in to comment.