Rule for converting trig identities into hyperbolic identities
There is a simple rule of thumb for converting between (circular) trig identities and hyperbolic trig identities known as Osborn's rule: stick an h on the end of trig functions and flip signs wherever two sinh functions are multiplied together.
ExamplesFor example, the circular identity
sin( + ) = sin() cos() + cos() sin()
becomes the hyperbolic identity
sinh( + ) = sinh() cosh() + cosh() sinh()
but the identity
2 sin() sin() = cos( - ) - cos( + )
becomes
2 sinh() sinh() = cosh( + ) - cosh( - )
because there are two sinh terms.
DerivationOsborn's rule isn't deep. It's a straight-forward application of Euler's theorem:
exp(i) = cos() + i sin().
More specifically, Osborn's rule follows from two corollaries of Euler's theorem:
sin(i) = i sinh()
cos(i) = cosh()
The advantage of Osborn's rule is that it saves time, and perhaps more importantly, it reduces the likelihood of making a mistake.
You could always derive any identity you need on the spot. All trig identities-circular or hyperbolic-are direct consequences of Euler's theorem. But it saves time to work at a higher level of abstraction. And as I've often said in the context of more efficient computer usage, the advantage of doing things faster is not so much the time directly saved but the decreased probability of losing your train of thought.
CaveatsOsborn's rule included implicit expressions of sinh, such as in tanh = sinh / cosh. So, for example, the circular identity
tan(2) = 2 tan() / (1 - tan^2())
becomes
tanh(2) = 2 tanh() / (1 + tanh^2())
because the tanh^2 term implicitly contains two sinh terms.
Original noteOsborn's original note [1] from 1902 is so short that I include the entire text below:
Related posts[1] G. Osborn. Mnemonic for Hyperbolic Formulae. The Mathematical Gazette, Vol. 2, No. 34 (Jul., 1902), p. 189
The post Rule for converting trig identities into hyperbolic identities first appeared on John D. Cook.