RealBox
Hyperbolic
hyperbolic functions for RealBox objects
sinh
compute the hyperbolic sine of a RealBox
cosh
compute the hyperbolic cosine of a RealBox
tanh
compute the hyperbolic tangent of a RealBox
sech
compute the hyperbolic secant of a RealBox
csch
compute the hyperbolic cosecant of a RealBox
coth
compute the hyperbolic cotangent of a RealBox
arcsinh
compute the inverse hyperbolic sine of a RealBox
arccosh
compute the inverse hyperbolic cosine of a RealBox
arctanh
compute the inverse hyperbolic tangent of a RealBox
arcsech
compute the inverse hyperbolic secant of a RealBox
arccsch
compute the inverse hyperbolic cosecant of a RealBox
arccoth
compute the inverse hyperbolic cotangent of a RealBox
sinhcosh
compute simultaneously the hyperbolic sine and cosine of a RealBox
Calling Sequence
Parameters
Description
Examples
Compatibility
sinh( b )
cosh( b )
tanh( b )
sech( b )
csch( b )
coth( b )
arcsinh( b )
arccosh( b )
arctanh( b )
arcsech( b )
arccsch( b )
arccoth( b )
sinhcosh( b )
b
-
RealBox object
precopt
(optional) equation of the form precision = n, where n is a positive integer
The hyperbolic functions and their important inverses are defined as methods for RealBox objects.
Apart from sinhcosh, which returns an expression sequence of two RealBox objects, each of these computes a RealBox representing the value of the named function on the values in the RealBox input.
Use the 'precision' = n option to control the precision used in these methods. For more details on precision, see BoxPrecision.
a≔RealBox⁡0.34
a≔⟨RealBox: 0.34±2.91038ⅇ-11⟩
b≔RealBox⁡2.3
b≔⟨RealBox: 2.3±2.32831ⅇ-10⟩
sinh⁡b
⟨RealBox: 4.93696±1.66822ⅇ-09⟩
cosh⁡b
⟨RealBox: 5.03722±1.66822ⅇ-09⟩
tanh⁡b
⟨RealBox: 0.980096±6.79399ⅇ-11⟩
sech⁡b
⟨RealBox: 0.198522±6.40579ⅇ-11⟩
csch⁡b
⟨RealBox: 0.202554±6.43682ⅇ-11⟩
coth⁡b
⟨RealBox: 1.02031±1.26273ⅇ-10⟩
arcsinh⁡b
⟨RealBox: 1.57028±2.16758ⅇ-10⟩
arccosh⁡b
⟨RealBox: 1.47504±2.33821ⅇ-10⟩
arctanh⁡a
⟨RealBox: 0.354093±6.73914ⅇ-11⟩
arcsech⁡a
⟨RealBox: 1.74172±3.01167ⅇ-10⟩
arccsch⁡a
⟨RealBox: 1.79968±2.78979ⅇ-10⟩
arccsch⁡b
⟨RealBox: 0.422133±9.88916ⅇ-11⟩
Unlike the other functions defined above, the sinhcosh( b ) command returns an expression sequence of two RealBox objects representing, respectively, the values sinh( b ) and cosh( b ) of the RealBox argument b.
sinhcosh⁡b
⟨RealBox: 4.93696±1.66822ⅇ-09⟩,⟨RealBox: 5.03722±1.66822ⅇ-09⟩
The RealBox:-sinh, RealBox:-cosh, RealBox:-tanh, RealBox:-sech, RealBox:-csch, RealBox:-coth, RealBox:-arcsinh, RealBox:-arccosh and RealBox:-arctanh commands were introduced in Maple 2022.
For more information on Maple 2022 changes, see Updates in Maple 2022.
The RealBox:-arcsech, RealBox:-arccsch and RealBox:-arccoth commands were introduced in Maple 2023.
For more information on Maple 2023 changes, see Updates in Maple 2023.
See Also
ComplexBox
ComplexBox[Hyperbolic]
RealBox[Circular]
Download Help Document