Inverse of the sinh function #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
In this file we prove that sinh is bijective and hence has an inverse, arsinh.
Main definitions #
-
real.arsinh
: The inverse function ofreal.sinh
. -
real.sinh_equiv
,real.sinh_order_iso
,real.sinh_homeomorph
:real.sinh
as anequiv
,order_iso
, andhomeomorph
, respectively.
Main Results #
-
real.sinh_surjective
,real.sinh_bijective
:real.sinh
is surjective and bijective; -
real.arsinh_injective
,real.arsinh_surjective
,real.arsinh_bijective
:real.arsinh
is injective, surjective, and bijective; -
real.continuous_arsinh
,real.differentiable_arsinh
,real.cont_diff_arsinh
:real.arsinh
is continuous, differentiable, and continuously differentiable; we also provide dot notation convenience lemmas likefilter.tendsto.arsinh
andcont_diff_at.arsinh
.
Tags #
arsinh, arcsinh, argsinh, asinh, sinh injective, sinh bijective, sinh surjective
arsinh
is the right inverse of sinh
.
sinh
is surjective, ∀ b, ∃ a, sinh a = b
. In this case, we use a = arsinh b
.
sinh
is bijective, both injective and surjective.
arsinh
is the left inverse of sinh
.
Equations
- real.sinh_equiv = {to_fun := real.sinh, inv_fun := real.arsinh, left_inv := real.arsinh_sinh, right_inv := real.sinh_arsinh}
Equations
real.sinh
as a homeomorph
.