Inverse of the sinh function #
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.sinhEquiv
,Real.sinhOrderIso
,Real.sinhHomeomorph
:Real.sinh
as anEquiv
,OrderIso
, 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.contDiff_arsinh
:Real.arsinh
is continuous, differentiable, and continuously differentiable; we also provide dot notation convenience lemmas likeFilter.Tendsto.arsinh
andContDiffAt.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.sinhEquiv = { toFun := Real.sinh, invFun := Real.arsinh, left_inv := Real.arsinh_sinh, right_inv := Real.sinh_arsinh }
Instances For
Equations
- Real.sinhOrderIso = { toEquiv := Real.sinhEquiv, map_rel_iff' := @Real.sinh_le_sinh }
Instances For
Real.sinh
as a Homeomorph
.
Equations
- Real.sinhHomeomorph = Real.sinhOrderIso.toHomeomorph
Instances For
Alias of the reverse direction of Real.arsinh_le_arsinh
.