> Take the definitions
>
> cosh(x) = 1/2 ( exp(x) + exp(-x) )
>
> sinh(x) = 1/2 ( exp(x) - exp(-x) )
>
>
>
> For ever increasing x (positive), the term 1/2 exp(x) grows
>
> larger, while the term 1/2 exp(-x) gets closer to 0, so both
>
> their sum and difference get closer to 1/2 exp(x).
>
>
>
> For ever decreasing x (negative), the term 1/2 exp(-x) grows
>
> larger, while the term 1/2 exp(x) gets closer to 0, so their
>
> sum (cosh) gets closer to 1/2 exp(-x), whereas their difference
>
> (sinh) gets closer to -1/2 exp(-x).
>
>
>
> If you have a software where you draw curves, you can really
>
> "see" it. Try for instance
>
>
http://fooplot.com
>
> and have it show all the functions
>
> y = sinh(x)
>
> y = cosh(x)
>
> y = exp(x)/2
>
> y = exp(-x)/2
>
> y = - exp(-x)/2
>
>
>
> Have fun :-)
>
>
>
> Dirk Vdm